Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-17 17:16:01 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-08 19:51:47 +0300
commit12ace68ab0f07b8049dd9807dd9ea302187bd44b (patch)
tree30dc5d5436968df0909e8341a589f9189905d908 /libavcodec/mpegaudiodectab.h
parent117575ae2622d3a42af43f76a1940239c8088292 (diff)
avcodec/mpegaudiotab: Avoid unused entry in table
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/mpegaudiodectab.h')
-rw-r--r--libavcodec/mpegaudiodectab.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegaudiodectab.h b/libavcodec/mpegaudiodectab.h
index accd12b8e2..e1468c5e89 100644
--- a/libavcodec/mpegaudiodectab.h
+++ b/libavcodec/mpegaudiodectab.h
@@ -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 },