codec-utils: restore 7350 as a valid sampling frequency for AAC

This was lost during c77f88cac6.
This commit is contained in:
Debarshi Ray 2011-06-14 10:31:18 +05:30 committed by Tim-Philipp Müller
parent a93e0e4a35
commit 0f296315d0

View file

@ -72,7 +72,7 @@ guint
gst_codec_utils_aac_get_sample_rate_from_index (guint sr_idx)
{
static const guint aac_sample_rates[] = { 96000, 88200, 64000, 48000, 44100,
32000, 24000, 22050, 16000, 12000, 11025, 8000
32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350
};
if (G_LIKELY (sr_idx < G_N_ELEMENTS (aac_sample_rates)))