]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/mpegaudiotab: Avoid unused entry in table
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 17 Nov 2020 14:16:01 +0000 (15:16 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 8 Dec 2020 16:51:47 +0000 (17:51 +0100)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/mpegaudiodec_template.c
libavcodec/mpegaudiodectab.h

index 53db13d0d495a1ca9a7e246c6a0fd1afa1ec9643..88679723fc16f79d0e4c2757f54f37be701bddaa 100644 (file)
@@ -100,7 +100,7 @@ typedef struct MPADecodeContext {
 /* vlc structure for decoding layer 3 huffman tables */
 static VLC huff_vlc[16];
 static VLC_TYPE huff_vlc_tables[
-    0 + 128 + 128 + 128 + 130 + 128 + 154 + 166 +
+  128 + 128 + 128 + 130 + 128 + 154 + 166 +
   142 + 204 + 190 + 170 + 542 + 460 + 662 + 414
   ][2];
 static VLC huff_quad_vlc[2];
@@ -286,7 +286,7 @@ static av_cold void decode_init_static(void)
 
     /* huffman decode tables */
     offset = 0;
-    for (i = 1; i < 16; i++) {
+    for (int i = 0; i < 15;) {
         const HuffTable *h = &mpa_huff_tables[i];
         int xsize, x, y;
         uint8_t  tmp_bits [512] = { 0 };
@@ -303,7 +303,7 @@ static av_cold void decode_init_static(void)
         }
 
         /* XXX: fail test */
-        huff_vlc[i].table = huff_vlc_tables+offset;
+        huff_vlc[++i].table         = huff_vlc_tables + offset;
         huff_vlc[i].table_allocated = FF_ARRAY_ELEMS(huff_vlc_tables) - offset;
         init_vlc(&huff_vlc[i], 7, 512,
                  tmp_bits, 1, 1, tmp_codes, 2, 2,
index accd12b8e2d8bda482725e39bcc08038079d70d5..e1468c5e896ae83640ce613cdc51cf7103c7936e 100644 (file)
@@ -502,8 +502,7 @@ static const uint8_t mpa_huffbits_24[256] = {
   7,  7,  7,  8,  8,  8,  8,  4,
 };
 
-static const HuffTable mpa_huff_tables[16] = {
-{ 1, NULL, NULL },
+static const HuffTable mpa_huff_tables[] = {
 { 2, mpa_huffbits_1, mpa_huffcodes_1 },
 { 3, mpa_huffbits_2, mpa_huffcodes_2 },
 { 3, mpa_huffbits_3, mpa_huffcodes_3 },