Mercurial > libavcodec.hg
annotate ac3.h @ 4387:05ab6e897ffd libavcodec
10l, there is a corner case afterall...
| author | lu_zero |
|---|---|
| date | Tue, 23 Jan 2007 12:04:48 +0000 |
| parents | bbe0bc387a19 |
| children | 1e175640dad3 |
| rev | line source |
|---|---|
| 782 | 1 /* |
| 2 * Common code between AC3 encoder and decoder | |
| 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 | |
| 1106 | 22 /** |
| 23 * @file ac3.h | |
| 24 * Common code between AC3 encoder and decoder. | |
| 25 */ | |
| 26 | |
| 782 | 27 #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */ |
| 28 #define AC3_MAX_CHANNELS 6 /* including LFE channel */ | |
| 29 | |
| 30 #define NB_BLOCKS 6 /* number of PCM blocks inside an AC3 frame */ | |
| 31 #define AC3_FRAME_SIZE (NB_BLOCKS * 256) | |
| 32 | |
| 33 /* exponent encoding strategy */ | |
| 34 #define EXP_REUSE 0 | |
| 35 #define EXP_NEW 1 | |
| 36 | |
| 37 #define EXP_D15 1 | |
| 38 #define EXP_D25 2 | |
| 39 #define EXP_D45 3 | |
| 40 | |
| 41 typedef struct AC3BitAllocParameters { | |
| 42 int fscod; /* frequency */ | |
| 43 int halfratecod; | |
| 44 int sgain, sdecay, fdecay, dbknee, floor; | |
| 45 int cplfleak, cplsleak; | |
| 46 } AC3BitAllocParameters; | |
| 47 | |
|
2280
785b6b4682b5
* these vars could be either static or extern (compilation fix gcc-3.5)
kabi
parents:
1106
diff
changeset
|
48 #if 0 |
| 1064 | 49 extern const uint16_t ac3_freqs[3]; |
| 50 extern const uint16_t ac3_bitratetab[19]; | |
| 51 extern const int16_t ac3_window[256]; | |
| 52 extern const uint8_t sdecaytab[4]; | |
| 53 extern const uint8_t fdecaytab[4]; | |
| 54 extern const uint16_t sgaintab[4]; | |
| 55 extern const uint16_t dbkneetab[4]; | |
| 56 extern const uint16_t floortab[8]; | |
| 57 extern const uint16_t fgaintab[8]; | |
|
2280
785b6b4682b5
* these vars could be either static or extern (compilation fix gcc-3.5)
kabi
parents:
1106
diff
changeset
|
58 #endif |
| 782 | 59 |
| 4197 | 60 void ac3_common_init(void); |
| 61 void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap, | |
| 62 int8_t *exp, int start, int end, | |
| 63 int snroffset, int fgain, int is_lfe, | |
| 64 int deltbae,int deltnseg, | |
| 65 uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba); |
