Commit 2530ca68 authored by jbr's avatar jbr

cosmetics: indent after last commit. patch by matthieu castet <castet matthieu free fr>.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13121 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e399f0a3
...@@ -535,16 +535,16 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -535,16 +535,16 @@ static int alac_decode_frame(AVCodecContext *avctx,
} }
} else { } else {
/* not compressed, easy case */ /* not compressed, easy case */
int i, chan; int i, chan;
for (chan = 0; chan < channels; chan++) for (chan = 0; chan < channels; chan++)
for (i = 0; i < outputsamples; i++) { for (i = 0; i < outputsamples; i++) {
int32_t audiobits; int32_t audiobits;
audiobits = get_bits_long(&alac->gb, alac->setinfo_sample_size); audiobits = get_bits_long(&alac->gb, alac->setinfo_sample_size);
audiobits = extend_sign32(audiobits, alac->setinfo_sample_size); audiobits = extend_sign32(audiobits, alac->setinfo_sample_size);
alac->outputsamples_buffer[chan][i] = audiobits; alac->outputsamples_buffer[chan][i] = audiobits;
} }
/* wasted_bytes = 0; */ /* wasted_bytes = 0; */
interlacing_shift = 0; interlacing_shift = 0;
interlacing_leftweight = 0; interlacing_leftweight = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment