comparison ac3dec_data.c @ 9978:fe394fdc45e3 libavcodec

cosmetics: small typo fixes
author diego
date Wed, 22 Jul 2009 22:43:43 +0000
parents 116836dbd25d
children ac31ff44d1a5
comparison
equal deleted inserted replaced
9977:fd3505e85d89 9978:fe394fdc45e3
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 /** 22 /**
23 * @file libavcodec/ac3dec_data.c 23 * @file libavcodec/ac3dec_data.c
24 * tables taken directly from the AC-3 spec. 24 * Tables taken directly from the AC-3 spec.
25 */ 25 */
26 26
27 #include "ac3dec_data.h" 27 #include "ac3dec_data.h"
28 #include "ac3.h" 28 #include "ac3.h"
29 29
30 /** 30 /**
31 * table used to ungroup 3 values stored in 5 bits. 31 * Table used to ungroup 3 values stored in 5 bits.
32 * used by bap=1 mantissas and GAQ. 32 * Used by bap=1 mantissas and GAQ.
33 * ff_ac3_ungroup_3_in_5_bits_tab[i] = { i/9, (i%9)/3, (i%9)%3 } 33 * ff_ac3_ungroup_3_in_5_bits_tab[i] = { i/9, (i%9)/3, (i%9)%3 }
34 */ 34 */
35 const uint8_t ff_ac3_ungroup_3_in_5_bits_tab[32][3] = { 35 const uint8_t ff_ac3_ungroup_3_in_5_bits_tab[32][3] = {
36 { 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 2 }, { 0, 1, 0 }, 36 { 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 2 }, { 0, 1, 0 },
37 { 0, 1, 1 }, { 0, 1, 2 }, { 0, 2, 0 }, { 0, 2, 1 }, 37 { 0, 1, 1 }, { 0, 1, 2 }, { 0, 2, 0 }, { 0, 2, 1 },