comparison ac3dec.c @ 7470:1a93d3bbe3ee libavcodec

cosmetics: make all references to AC-3 capitalized and hyphenated
author jbr
date Sun, 03 Aug 2008 16:42:32 +0000
parents 85ab7655ad4d
children 1788013cf23b
comparison
equal deleted inserted replaced
7469:856df346b536 7470:1a93d3bbe3ee
226 } 226 }
227 227
228 /** 228 /**
229 * Parse the 'sync info' and 'bit stream info' from the AC-3 bitstream. 229 * Parse the 'sync info' and 'bit stream info' from the AC-3 bitstream.
230 * GetBitContext within AC3DecodeContext must point to 230 * GetBitContext within AC3DecodeContext must point to
231 * start of the synchronized ac3 bitstream. 231 * the start of the synchronized AC-3 bitstream.
232 */ 232 */
233 static int ac3_parse_header(AC3DecodeContext *s) 233 static int ac3_parse_header(AC3DecodeContext *s)
234 { 234 {
235 GetBitContext *gbc = &s->gbc; 235 GetBitContext *gbc = &s->gbc;
236 int i; 236 int i;
266 266
267 return 0; 267 return 0;
268 } 268 }
269 269
270 /** 270 /**
271 * Common function to parse AC3 or E-AC3 frame header 271 * Common function to parse AC-3 or E-AC-3 frame header
272 */ 272 */
273 static int parse_frame_header(AC3DecodeContext *s) 273 static int parse_frame_header(AC3DecodeContext *s)
274 { 274 {
275 AC3HeaderInfo hdr; 275 AC3HeaderInfo hdr;
276 GetBitContext *gbc = &s->gbc; 276 GetBitContext *gbc = &s->gbc;