VirtualBox

source: vbox/trunk/src/libs/ffmpeg-20060710/libavcodec/ac3.h@ 10184

最後變更 在這個檔案從10184是 5776,由 vboxsync 提交於 17 年 前

ffmpeg: exported to OSE

檔案大小: 2.1 KB
 
1/*
2 * Common code between AC3 encoder and decoder
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20/**
21 * @file ac3.h
22 * Common code between AC3 encoder and decoder.
23 */
24
25#define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
26#define AC3_MAX_CHANNELS 6 /* including LFE channel */
27
28#define NB_BLOCKS 6 /* number of PCM blocks inside an AC3 frame */
29#define AC3_FRAME_SIZE (NB_BLOCKS * 256)
30
31/* exponent encoding strategy */
32#define EXP_REUSE 0
33#define EXP_NEW 1
34
35#define EXP_D15 1
36#define EXP_D25 2
37#define EXP_D45 3
38
39typedef struct AC3BitAllocParameters {
40 int fscod; /* frequency */
41 int halfratecod;
42 int sgain, sdecay, fdecay, dbknee, floor;
43 int cplfleak, cplsleak;
44} AC3BitAllocParameters;
45
46#if 0
47extern const uint16_t ac3_freqs[3];
48extern const uint16_t ac3_bitratetab[19];
49extern const int16_t ac3_window[256];
50extern const uint8_t sdecaytab[4];
51extern const uint8_t fdecaytab[4];
52extern const uint16_t sgaintab[4];
53extern const uint16_t dbkneetab[4];
54extern const uint16_t floortab[8];
55extern const uint16_t fgaintab[8];
56#endif
57
58void ac3_common_init(void);
59void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
60 int8_t *exp, int start, int end,
61 int snroffset, int fgain, int is_lfe,
62 int deltbae,int deltnseg,
63 uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba);
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette