aboutsummaryrefslogtreecommitdiff
path: root/src/dsp/constants.h
diff options
context:
space:
mode:
authorBoyuan Yang <byang@debian.org>2022-07-14 15:56:59 -0400
committerBoyuan Yang <byang@debian.org>2022-07-14 15:56:59 -0400
commit1a2e17bd28a068714658551c8c355171ce15dfa0 (patch)
treedb9e739007016850ee355365874a20b07034ef2c /src/dsp/constants.h
parenta08da9600832caf817125edee2c3206fe24cd5cb (diff)
parentd4dbf19f6b0181ee78034bfe4caf189d1c016998 (diff)
downloadlibgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.tar.gz
libgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.tar.bz2
libgav1-1a2e17bd28a068714658551c8c355171ce15dfa0.zip
Update upstream source from tag 'upstream/0.18.0'
Update to upstream version '0.18.0' with Debian dir a69c1f7f3e7109393a3f9f5f1a2e7a5c3d3eda9f
Diffstat (limited to 'src/dsp/constants.h')
-rw-r--r--src/dsp/constants.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/dsp/constants.h b/src/dsp/constants.h
index 7c1b62c..dd0a4e0 100644
--- a/src/dsp/constants.h
+++ b/src/dsp/constants.h
@@ -27,25 +27,7 @@
namespace libgav1 {
enum {
- // Documentation variables.
- kBitdepth8 = 8,
- kBitdepth10 = 10,
- kBitdepth12 = 12,
- // Weights are quadratic from '1' to '1 / block_size', scaled by
- // 2^kSmoothWeightScale.
- kSmoothWeightScale = 8,
kCflLumaBufferStride = 32,
- // InterRound0, Section 7.11.3.2.
- kInterRoundBitsHorizontal = 3, // 8 & 10-bit.
- kInterRoundBitsHorizontal12bpp = 5,
- kInterRoundBitsCompoundVertical = 7, // 8, 10 & 12-bit compound prediction.
- kInterRoundBitsVertical = 11, // 8 & 10-bit, single prediction.
- kInterRoundBitsVertical12bpp = 9,
- // Offset applied to 10bpp and 12bpp predictors to allow storing them in
- // uint16_t. Removed before blending.
- kCompoundOffset = (1 << 14) + (1 << 13),
- kCdefSecondaryTap0 = 2,
- kCdefSecondaryTap1 = 1,
}; // anonymous enum
extern const int8_t kFilterIntraTaps[kNumFilterIntraPredictors][8][8];