Mercurial > libavcodec.hg
annotate ac3tab.h @ 5349:6a4286208743 libavcodec
remove useless #ifdef CONFIG_ZLIB from zmbv decoder
author | mru |
---|---|
date | Mon, 16 Jul 2007 21:05:16 +0000 |
parents | 5e714485a55c |
children | 1d83e9c34641 |
rev | line source |
---|---|
782 | 1 /* |
4879 | 2 * AC3 tables |
782 | 3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
782 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
782 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
782 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
782 | 20 */ |
21 | |
4879 | 22 #ifndef AC3TAB_H |
23 #define AC3TAB_H | |
782 | 24 |
4879 | 25 #include "common.h" |
4648 | 26 |
4679 | 27 extern const uint16_t ff_ac3_frame_sizes[38][3]; |
4880 | 28 extern const uint8_t ff_ac3_channels[8]; |
4643
1e175640dad3
Remove common code from AC-3 encoder and utilize ac3.c.
jbr
parents:
4197
diff
changeset
|
29 extern const uint16_t ff_ac3_freqs[3]; |
1e175640dad3
Remove common code from AC-3 encoder and utilize ac3.c.
jbr
parents:
4197
diff
changeset
|
30 extern const uint16_t ff_ac3_bitratetab[19]; |
4880 | 31 extern const int16_t ff_ac3_window[256]; |
4879 | 32 extern const uint8_t ff_ac3_latab[260]; |
33 extern const uint16_t ff_ac3_hth[50][3]; | |
34 extern const uint8_t ff_ac3_baptab[64]; | |
4880 | 35 extern const uint8_t ff_sdecaytab[4]; |
36 extern const uint8_t ff_fdecaytab[4]; | |
4643
1e175640dad3
Remove common code from AC-3 encoder and utilize ac3.c.
jbr
parents:
4197
diff
changeset
|
37 extern const uint16_t ff_sgaintab[4]; |
1e175640dad3
Remove common code from AC-3 encoder and utilize ac3.c.
jbr
parents:
4197
diff
changeset
|
38 extern const uint16_t ff_dbkneetab[4]; |
4880 | 39 extern const int16_t ff_floortab[8]; |
4643
1e175640dad3
Remove common code from AC-3 encoder and utilize ac3.c.
jbr
parents:
4197
diff
changeset
|
40 extern const uint16_t ff_fgaintab[8]; |
4879 | 41 extern const uint8_t ff_ac3_bndsz[50]; |
4684
6ec0afffc572
split ac3_parametric_bit_allocation into 3 separate functions
jbr
parents:
4679
diff
changeset
|
42 |
4879 | 43 #endif /* AC3TAB_H */ |