aboutsummaryrefslogtreecommitdiff
path: root/src/utils/constants.h
diff options
context:
space:
mode:
authorBoyuan Yang <byang@debian.org>2021-11-07 08:50:18 -0500
committerBoyuan Yang <byang@debian.org>2021-11-07 08:50:18 -0500
commit320ef65362608ee1148c299d8d5d7618af34e470 (patch)
treec47911c219d1e35b8b0771e9e0176eff0e0d08ec /src/utils/constants.h
parent2381d803c76105f44717d75f089ec37f51e5cfe4 (diff)
downloadlibgav1-320ef65362608ee1148c299d8d5d7618af34e470.tar.gz
libgav1-320ef65362608ee1148c299d8d5d7618af34e470.tar.bz2
libgav1-320ef65362608ee1148c299d8d5d7618af34e470.zip
New upstream version 0.17.0
Diffstat (limited to 'src/utils/constants.h')
-rw-r--r--src/utils/constants.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/constants.h b/src/utils/constants.h
index a2076c5..1126ad6 100644
--- a/src/utils/constants.h
+++ b/src/utils/constants.h
@@ -71,6 +71,7 @@ enum {
// but was increased to simplify the SIMD loads in
// ConvolveCompoundScale2D_NEON() and ConvolveScale2D_NEON().
kConvolveBorderRight = 8,
+ kConvolveScaleBorderRight = 15,
kConvolveBorderBottom = 4,
kSubPixelTaps = 8,
kWienerFilterBits = 7,
@@ -523,6 +524,10 @@ enum ObuType : int8_t {
kObuPadding = 15,
};
+constexpr BitMaskSet kPredictionModeSmoothMask(kPredictionModeSmooth,
+ kPredictionModeSmoothHorizontal,
+ kPredictionModeSmoothVertical);
+
//------------------------------------------------------------------------------
// ToString()
//