Cosmetics: indentation

Originally committed as revision 9729 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2007-07-18 06:27:37 +00:00
parent a1301f2934
commit 586e5bd902
1 changed files with 67 additions and 68 deletions

View File

@ -499,15 +499,16 @@ static int alac_decode_frame(AVCodecContext *avctx,
get_bits(&alac->gb, 12); /* unknown, skip 12 bits */ get_bits(&alac->gb, 12); /* unknown, skip 12 bits */
hassize = get_bits(&alac->gb, 1); /* the output sample size is stored soon */ /* the output sample size is stored soon */
hassize = get_bits(&alac->gb, 1);
wasted_bytes = get_bits(&alac->gb, 2); /* unknown ? */ wasted_bytes = get_bits(&alac->gb, 2); /* unknown ? */
isnotcompressed = get_bits(&alac->gb, 1); /* whether the frame is compressed */ /* whether the frame is compressed */
isnotcompressed = get_bits(&alac->gb, 1);
if (hassize) { if (hassize) {
/* now read the number of samples, /* now read the number of samples as a 32bit integer */
* as a 32bit integer */
outputsamples = get_bits(&alac->gb, 32); outputsamples = get_bits(&alac->gb, 32);
} else } else
outputsamples = alac->setinfo_max_samples_per_frame; outputsamples = alac->setinfo_max_samples_per_frame;
@ -522,7 +523,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
int prediction_type[channels]; int prediction_type[channels];
int prediction_quantitization[channels]; int prediction_quantitization[channels];
int ricemodifier[channels]; int ricemodifier[channels];
int i, chan; int i, chan;
interlacing_shift = get_bits(&alac->gb, 8); interlacing_shift = get_bits(&alac->gb, 8);
@ -638,7 +638,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
break; break;
} }
return input_buffer_size; return input_buffer_size;
} }