diff mbox series

[FFmpeg-devel,09/19] avcodec/vc1data: Remove declarations of inexistent arrays

Message ID GV1P250MB073733E21FD5CDB640CD8C138F349@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 3179fe97e7b5c648a66b5c74da875a0543cfb448
Headers show
Series [FFmpeg-devel,01/19] avcodec/vc1: Don't check for AVCodecContext.codec | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Oct. 30, 2022, 11:56 p.m. UTC
ff_vc1_norm6_spec has been removed in commit
356be9307cbffa1226bed52b26aa2ac9c7af174f (and it seems that it
has never been used); the declarations of the 8x8_zz arrays meanwhile
have been added in f0c02e1cbc71043ffe8c1fa44f12330a63f9df10
without having ever been defined.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/vc1data.h | 4 ----
 1 file changed, 4 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h
index ee4ec83263..b73e0a5f0e 100644
--- a/libavcodec/vc1data.h
+++ b/libavcodec/vc1data.h
@@ -112,8 +112,6 @@  extern const uint8_t ff_vc1_norm2_codes[4];
 extern const uint8_t ff_vc1_norm2_bits[4];
 extern const uint16_t ff_vc1_norm6_codes[64];
 extern const uint8_t ff_vc1_norm6_bits[64];
-/* Normal-6 imode */
-extern const uint8_t ff_vc1_norm6_spec[64][5];
 
 /* 4MV Block pattern VLC tables */
 extern const uint8_t ff_vc1_4mv_block_pattern_codes[4][16];
@@ -187,8 +185,6 @@  extern const uint8_t ff_vc1_adv_interlaced_8x8_zz [64];
 extern const uint8_t ff_vc1_adv_interlaced_8x4_zz [32];
 extern const uint8_t ff_vc1_adv_interlaced_4x8_zz [32];
 extern const uint8_t ff_vc1_adv_interlaced_4x4_zz [16];
-extern const uint8_t ff_vc1_intra_horz_8x8_zz [64];
-extern const uint8_t ff_vc1_intra_vert_8x8_zz [64];
 
 /* DQScale as specified in 8.1.3.9 - almost identical to 0x40000/i */
 extern const int32_t ff_vc1_dqscale[63];