[fix] kAdtsNumChannelsTable: Standard specifies 3 channels (#226)

CHANNEL_LAYOUT_SURROUND = Front L + Front R + Front C
This commit is contained in:
Zajcev Evgeny 2017-04-11 21:23:32 +04:00 committed by Kongqun Yang
parent a3b5e7d01a
commit a24444cc1b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const size_t kAdtsFrequencyTableSize = arraysize(kAdtsFrequencyTable);
// The following conversion table is extracted from ISO 14496 Part 3 -
// Table 1.17 - Channel Configuration.
const int kAdtsNumChannelsTable[] = {
0, 1, 2, 2, 4, 5, 6, 8 };
0, 1, 2, 3, 4, 5, 6, 8 };
const size_t kAdtsNumChannelsTableSize = arraysize(kAdtsNumChannelsTable);
} // namespace media