Mercurial > libavcodec.hg
comparison ac3tab.c @ 12024:fdafbcef52f5 libavcodec
Fix grammar errors in documentation
| author | mru |
|---|---|
| date | Wed, 30 Jun 2010 15:38:06 +0000 |
| parents | 7dd2a45249a9 |
| children |
comparison
equal
deleted
inserted
replaced
| 12023:c7455450364d | 12024:fdafbcef52f5 |
|---|---|
| 71 { 1280, 1393, 1920 }, | 71 { 1280, 1393, 1920 }, |
| 72 { 1280, 1394, 1920 }, | 72 { 1280, 1394, 1920 }, |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 /** | 75 /** |
| 76 * Maps audio coding mode (acmod) to number of full-bandwidth channels. | 76 * Map audio coding mode (acmod) to number of full-bandwidth channels. |
| 77 * from ATSC A/52 Table 5.8 Audio Coding Mode | 77 * from ATSC A/52 Table 5.8 Audio Coding Mode |
| 78 */ | 78 */ |
| 79 const uint8_t ff_ac3_channels_tab[8] = { | 79 const uint8_t ff_ac3_channels_tab[8] = { |
| 80 2, 1, 2, 3, 3, 4, 4, 5 | 80 2, 1, 2, 3, 3, 4, 4, 5 |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 /** | 83 /** |
| 84 * Maps audio coding mode (acmod) to channel layout mask. | 84 * Map audio coding mode (acmod) to channel layout mask. |
| 85 */ | 85 */ |
| 86 const uint16_t ff_ac3_channel_layout_tab[8] = { | 86 const uint16_t ff_ac3_channel_layout_tab[8] = { |
| 87 CH_LAYOUT_STEREO, | 87 CH_LAYOUT_STEREO, |
| 88 CH_LAYOUT_MONO, | 88 CH_LAYOUT_MONO, |
| 89 CH_LAYOUT_STEREO, | 89 CH_LAYOUT_STEREO, |
