mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
aacparse: strip uneeded static arrays slack
https://bugzilla.gnome.org/show_bug.cgi?id=769278
This commit is contained in:
parent
092465e94d
commit
991e46ce42
1 changed files with 2 additions and 2 deletions
|
@ -75,12 +75,12 @@ GST_DEBUG_CATEGORY_STATIC (aacparse_debug);
|
|||
|
||||
#define AAC_FRAME_DURATION(parse) (GST_SECOND/parse->frames_per_sec)
|
||||
|
||||
static const gint loas_sample_rate_table[32] = {
|
||||
static const gint loas_sample_rate_table[16] = {
|
||||
96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
|
||||
16000, 12000, 11025, 8000, 7350, 0, 0, 0
|
||||
};
|
||||
|
||||
static const gint loas_channels_table[32] = {
|
||||
static const gint loas_channels_table[16] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 8,
|
||||
0, 0, 0, 7, 8, 0, 8, 0
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue