annotate libfaad2/syntax.h @ 12443:ae4ae7ab636c

ENCA support (http://trific.ath.cx/software/enca/)
author henry
date Sat, 08 May 2004 17:52:25 +0000
parents 3185f64f6350
children 4a370c80fe5c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1 /*
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3 ** Copyright (C) 2003 M. Bakker, Ahead Software AG, http://www.nero.com
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
5 ** This program is free software; you can redistribute it and/or modify
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
6 ** it under the terms of the GNU General Public License as published by
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
7 ** the Free Software Foundation; either version 2 of the License, or
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
8 ** (at your option) any later version.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
10 ** This program is distributed in the hope that it will be useful,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
13 ** GNU General Public License for more details.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
14 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
15 ** You should have received a copy of the GNU General Public License
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
16 ** along with this program; if not, write to the Free Software
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
18 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
19 ** Any non-GPL usage of this software or parts of this software is strictly
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
20 ** forbidden.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
21 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
22 ** Commercial non-GPL licensing of this software is possible.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
24 **
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
25 ** $Id: syntax.h,v 1.37 2003/09/24 19:55:34 menno Exp $
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
26 **/
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
27
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
28 #ifndef __SYNTAX_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
29 #define __SYNTAX_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
30
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
31 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
32 extern "C" {
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
33 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
34
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
35 #include "decoder.h"
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
36 #include "drc.h"
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
37 #include "bits.h"
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
38
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
39 #define MAIN 1
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
40 #define LC 2
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
41 #define SSR 3
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
42 #define LTP 4
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
43 #define HE_AAC 5
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
44 #define LD 23
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
45 #define ER_LC 17
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
46 #define ER_LTP 19
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
47 #define DRM_ER_LC 27 /* special object type for DRM */
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
48
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
49 /* header types */
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
50 #define RAW 0
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
51 #define ADIF 1
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
52 #define ADTS 2
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
53
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
54 /* SBR signalling */
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
55 #define NO_SBR 0
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
56 #define SBR_UPSAMPLED 1
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
57 #define SBR_DOWNSAMPLED 2
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
58 #define NO_SBR_UPSAMPLED 3
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
59
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
60 /* DRM channel definitions */
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
61 #define DRMCH_MONO 1
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
62 #define DRMCH_STEREO 2
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
63 #define DRMCH_SBR_MONO 3
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
64 #define DRMCH_SBR_LC_STEREO 4
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
65 #define DRMCH_SBR_STEREO 5
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
66
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
67
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
68 /* First object type that has ER */
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
69 #define ER_OBJECT_START 17
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
70
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
71
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
72 /* Bitstream */
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
73 #define LEN_SE_ID 3
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
74 #define LEN_TAG 4
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
75 #define LEN_BYTE 8
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
76
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
77 #define EXT_FIL 0
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
78 #define EXT_FILL_DATA 1
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
79 #define EXT_DATA_ELEMENT 2
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
80 #define EXT_DYNAMIC_RANGE 11
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
81 #define ANC_DATA 0
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
82
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
83 /* Syntax elements */
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
84 #define ID_SCE 0x0
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
85 #define ID_CPE 0x1
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
86 #define ID_CCE 0x2
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
87 #define ID_LFE 0x3
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
88 #define ID_DSE 0x4
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
89 #define ID_PCE 0x5
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
90 #define ID_FIL 0x6
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
91 #define ID_END 0x7
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
92
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
93 #define ONLY_LONG_SEQUENCE 0x0
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
94 #define LONG_START_SEQUENCE 0x1
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
95 #define EIGHT_SHORT_SEQUENCE 0x2
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
96 #define LONG_STOP_SEQUENCE 0x3
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
97
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
98 #define ZERO_HCB 0
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
99 #define FIRST_PAIR_HCB 5
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
100 #define ESC_HCB 11
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
101 #define QUAD_LEN 4
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
102 #define PAIR_LEN 2
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
103 #define NOISE_HCB 13
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
104 #define INTENSITY_HCB2 14
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
105 #define INTENSITY_HCB 15
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
106
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
107 int8_t GASpecificConfig(bitfile *ld, mp4AudioSpecificConfig *mp4ASC,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
108 program_config *pce);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
109
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
110 uint8_t adts_frame(adts_header *adts, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
111 void get_adif_header(adif_header *adif, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
112
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
113
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
114 /* static functions */
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
115 static uint8_t single_lfe_channel_element(faacDecHandle hDecoder,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
116 element *sce, bitfile *ld,
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
117 real_t *spec_coef);
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
118 static uint8_t channel_pair_element(faacDecHandle hDecoder, element *cpe,
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
119 bitfile *ld,
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
120 real_t *spec_coef1, real_t *spec_coef2);
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
121 static uint8_t coupling_channel_element(faacDecHandle hDecoder, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
122 static uint16_t data_stream_element(faacDecHandle hDecoder, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
123 static uint8_t program_config_element(program_config *pce, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
124 static uint8_t fill_element(faacDecHandle hDecoder, bitfile *ld, drc_info *drc
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
125 #ifdef SBR_DEC
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
126 ,uint8_t sbr_ele
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
127 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
128 );
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
129 static uint8_t individual_channel_stream(faacDecHandle hDecoder, element *ele,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
130 bitfile *ld, ic_stream *ics, uint8_t scal_flag,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
131 int16_t *spec_data);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
132 static uint8_t ics_info(faacDecHandle hDecoder, ic_stream *ics, bitfile *ld,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
133 uint8_t common_window);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
134 static uint8_t section_data(faacDecHandle hDecoder, ic_stream *ics, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
135 static uint8_t scale_factor_data(faacDecHandle hDecoder, ic_stream *ics, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
136 static void gain_control_data(bitfile *ld, ic_stream *ics);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
137 static uint8_t spectral_data(faacDecHandle hDecoder, ic_stream *ics, bitfile *ld,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
138 int16_t *spectral_data);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
139 static uint16_t extension_payload(bitfile *ld, drc_info *drc, uint16_t count);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
140 #ifdef ERROR_RESILIENCE
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
141 uint8_t reordered_spectral_data(faacDecHandle hDecoder, ic_stream *ics,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
142 bitfile *ld, int16_t *spectral_data);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
143 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
144 static uint8_t pulse_data(ic_stream *ics, pulse_info *pul, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
145 static void tns_data(ic_stream *ics, tns_info *tns, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
146 static void ltp_data(faacDecHandle hDecoder, ic_stream *ics, ltp_info *ltp, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
147 static uint8_t adts_fixed_header(adts_header *adts, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
148 static void adts_variable_header(adts_header *adts, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
149 static void adts_error_check(adts_header *adts, bitfile *ld);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
150 static uint8_t dynamic_range_info(bitfile *ld, drc_info *drc);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
151 static uint8_t excluded_channels(bitfile *ld, drc_info *drc);
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
152
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
153
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
154 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
155 }
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
156 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
157 #endif