comparison ac3dec.c @ 8270:0fc2b35a1c14 libavcodec

cosmetics: vertical alignment
author jbr
date Sat, 06 Dec 2008 15:38:21 +0000
parents e7949e116f56
children 52af55b08c1d
comparison
equal deleted inserted replaced
8269:e7949e116f56 8270:0fc2b35a1c14
371 /** 371 /**
372 * Decode the grouped exponents according to exponent strategy. 372 * Decode the grouped exponents according to exponent strategy.
373 * reference: Section 7.1.3 Exponent Decoding 373 * reference: Section 7.1.3 Exponent Decoding
374 */ 374 */
375 static int decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps, 375 static int decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps,
376 uint8_t absexp, int8_t *dexps) 376 uint8_t absexp, int8_t *dexps)
377 { 377 {
378 int i, j, grp, group_size; 378 int i, j, grp, group_size;
379 int dexp[256]; 379 int dexp[256];
380 int expacc, prevexp; 380 int expacc, prevexp;
381 381