comparison aac.h @ 11836:f71c3558f3f5 libavcodec

Whitespace cosmetics
author alexc
date Sat, 05 Jun 2010 15:36:16 +0000
parents 758c052eb8a9
children 0159a19bfff7
comparison
equal deleted inserted replaced
11835:758c052eb8a9 11836:f71c3558f3f5
233 233
234 /** 234 /**
235 * main AAC context 235 * main AAC context
236 */ 236 */
237 typedef struct { 237 typedef struct {
238 AVCodecContext * avctx; 238 AVCodecContext *avctx;
239 239
240 MPEG4AudioConfig m4ac; 240 MPEG4AudioConfig m4ac;
241 241
242 int is_saved; ///< Set if elements have stored overlap from previous frame. 242 int is_saved; ///< Set if elements have stored overlap from previous frame.
243 DynamicRangeControl che_drc; 243 DynamicRangeControl che_drc;
247 * @{ 247 * @{
248 */ 248 */
249 enum ChannelPosition che_pos[4][MAX_ELEM_ID]; /**< channel element channel mapping with the 249 enum ChannelPosition che_pos[4][MAX_ELEM_ID]; /**< channel element channel mapping with the
250 * first index as the first 4 raw data block types 250 * first index as the first 4 raw data block types
251 */ 251 */
252 ChannelElement * che[4][MAX_ELEM_ID]; 252 ChannelElement *che[4][MAX_ELEM_ID];
253 ChannelElement * tag_che_map[4][MAX_ELEM_ID]; 253 ChannelElement *tag_che_map[4][MAX_ELEM_ID];
254 uint8_t tags_seen_this_frame[4][MAX_ELEM_ID]; 254 uint8_t tags_seen_this_frame[4][MAX_ELEM_ID];
255 int tags_mapped; 255 int tags_mapped;
256 /** @} */ 256 /** @} */
257 257
258 /** 258 /**