Mercurial > libavcodec.hg
comparison ac3tab.c @ 7470:1a93d3bbe3ee libavcodec
cosmetics: make all references to AC-3 capitalized and hyphenated
author | jbr |
---|---|
date | Sun, 03 Aug 2008 16:42:32 +0000 |
parents | 2d0b86dfe5bb |
children | e9d9d946f213 |
comparison
equal
deleted
inserted
replaced
7469:856df346b536 | 7470:1a93d3bbe3ee |
---|---|
1 /* | 1 /* |
2 * AC3 tables | 2 * AC-3 tables |
3 * copyright (c) 2001 Fabrice Bellard | 3 * copyright (c) 2001 Fabrice Bellard |
4 * | 4 * |
5 * This file is part of FFmpeg. | 5 * This file is part of FFmpeg. |
6 * | 6 * |
7 * FFmpeg is free software; you can redistribute it and/or | 7 * FFmpeg is free software; you can redistribute it and/or |
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 ac3tab.c | 23 * @file ac3tab.c |
24 * tables taken directly from AC3 spec. | 24 * tables taken directly from the AC-3 spec. |
25 */ | 25 */ |
26 | 26 |
27 #include "ac3tab.h" | 27 #include "ac3tab.h" |
28 | 28 |
29 /** | 29 /** |
86 const uint16_t ff_ac3_bitrate_tab[19] = { | 86 const uint16_t ff_ac3_bitrate_tab[19] = { |
87 32, 40, 48, 56, 64, 80, 96, 112, 128, | 87 32, 40, 48, 56, 64, 80, 96, 112, 128, |
88 160, 192, 224, 256, 320, 384, 448, 512, 576, 640 | 88 160, 192, 224, 256, 320, 384, 448, 512, 576, 640 |
89 }; | 89 }; |
90 | 90 |
91 /* AC3 MDCT window */ | 91 /* AC-3 MDCT window */ |
92 | 92 |
93 /* MDCT window */ | 93 /* MDCT window */ |
94 const int16_t ff_ac3_window[256] = { | 94 const int16_t ff_ac3_window[256] = { |
95 4, 7, 12, 16, 21, 28, 34, 42, | 95 4, 7, 12, 16, 21, 28, 34, 42, |
96 51, 61, 72, 84, 97, 111, 127, 145, | 96 51, 61, 72, 84, 97, 111, 127, 145, |