comparison ac3dec.h @ 7704:b928055716e5 libavcodec

add definitions and documentation for shared functions for E-AC-3 decoding
author jbr
date Wed, 27 Aug 2008 01:47:03 +0000
parents 3c531ec92268
children 6f4d3d307676
comparison
equal deleted inserted replaced
7703:3c531ec92268 7704:b928055716e5
166 DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE]); ///< temporary storage for output before windowing 166 DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE]); ///< temporary storage for output before windowing
167 DECLARE_ALIGNED_16(float, output[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< output after imdct transform and windowing 167 DECLARE_ALIGNED_16(float, output[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< output after imdct transform and windowing
168 ///@} 168 ///@}
169 } AC3DecodeContext; 169 } AC3DecodeContext;
170 170
171 /**
172 * Parse the E-AC-3 frame header.
173 * This parses both the bit stream info and audio frame header.
174 */
175 int ff_eac3_parse_header(AC3DecodeContext *s);
176
177 /**
178 * Decode mantissas in a single channel for the entire frame.
179 * This is used when AHT mode is enabled.
180 */
181 void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch);
182
171 #endif /* FFMPEG_AC3DEC_H */ 183 #endif /* FFMPEG_AC3DEC_H */