diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-30 03:19:14 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-11-06 17:41:25 +0100 |
commit | 6f1403712d7ce4c3256481d6d9bd0853cb5f7d45 (patch) | |
tree | acea36efd2cfb2f60993e613032622a14ca2162a /libavcodec/vc1data.h | |
parent | 777a8c2d500c3423a3a55b57752b18e88e876a2f (diff) | |
download | ffmpeg-6f1403712d7ce4c3256481d6d9bd0853cb5f7d45.tar.gz |
avcodec/vc1data: Remove duplicate defines
The defines in vc1data.c are duplicates of the ones in vc1data.h;
they are also pointless, because they are not used anywhere.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vc1data.h')
-rw-r--r-- | libavcodec/vc1data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h index 3e45ef1e79..ee4ec83263 100644 --- a/libavcodec/vc1data.h +++ b/libavcodec/vc1data.h @@ -91,7 +91,8 @@ extern VLC ff_vc1_2ref_mvdata_vlc[8]; extern VLC ff_vc1_ac_coeff_table[8]; -#define VC1_IF_MBMODE_VLC_BITS 5 +#define VC1_IF_MBMODE_VLC_BITS 5 // as a placeholder for VC1_IF_MMV_MBMODE_VLC_BITS + // or VC1_IF_1MV_MBMODE_VLC_BITS since they are the same //@} #define B_FRACTION_DEN 256 |