diff options
author | Fei Wang <fei.w.wang@intel.com> | 2021-10-12 16:23:57 +0800 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-10-16 19:00:44 -0300 |
commit | 75de7fe26218cb37fff9d5afa7b5b2b8bee4a9a8 (patch) | |
tree | d46b7695026666d45149f0f1ab89cd28fb2973cb /libavcodec/av1.h | |
parent | e7ff5722b1abae4284e79da707e71ff82b409699 (diff) | |
download | ffmpeg-75de7fe26218cb37fff9d5afa7b5b2b8bee4a9a8.tar.gz |
avcodec/av1: extend some definitions in spec section 3
Signed-off-by: Fei Wang <fei.w.wang@intel.com>
Diffstat (limited to 'libavcodec/av1.h')
-rw-r--r-- | libavcodec/av1.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/av1.h b/libavcodec/av1.h index 0f99ae4829..951a18ecb2 100644 --- a/libavcodec/av1.h +++ b/libavcodec/av1.h @@ -114,6 +114,13 @@ enum { AV1_WARP_MODEL_TRANSLATION = 1, AV1_WARP_MODEL_ROTZOOM = 2, AV1_WARP_MODEL_AFFINE = 3, + AV1_WARP_PARAM_REDUCE_BITS = 6, + + AV1_DIV_LUT_BITS = 8, + AV1_DIV_LUT_PREC_BITS = 14, + AV1_DIV_LUT_NUM = 257, + + AV1_MAX_LOOP_FILTER = 63, }; |