summaryrefslogtreecommitdiff
path: root/libavformat/av1.c
diff options
context:
space:
mode:
authorFei Wang <fei.w.wang@intel.com>2019-12-11 09:54:54 +0800
committerJames Almer <jamrial@gmail.com>2019-12-11 16:23:38 -0300
commit5fc3099cafc8b89fd4a9524ad1ff324b386bca67 (patch)
tree5d40e3a7a93d4063dc00709f97183972f0144aa6 /libavformat/av1.c
parent86e9747c634bc17ef8335d12191aa9e7a897fd64 (diff)
avcodec/cbs_av1: rename enable_intraintra_compound flag
rename enable_intraintra_compound to enable_interintra_compound, which keep same as AV1 sepc(v1.0.0-errata1). Signed-off-by: Fei Wang <fei.w.wang@intel.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/av1.c')
-rw-r--r--libavformat/av1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/av1.c b/libavformat/av1.c
index 132f4e987b..5ad9222900 100644
--- a/libavformat/av1.c
+++ b/libavformat/av1.c
@@ -257,7 +257,7 @@ static int parse_sequence_header(AV1SequenceParameters *seq_params, const uint8_
if (!reduced_still_picture_header) {
int enable_order_hint, seq_force_screen_content_tools;
- skip_bits(&gb, 4); // enable_intraintra_compound (1), enable_masked_compound (1)
+ skip_bits(&gb, 4); // enable_interintra_compound (1), enable_masked_compound (1)
// enable_warped_motion (1), enable_dual_filter (1)
enable_order_hint = get_bits1(&gb);