Commit 622d6332 authored by Benjamin Larsson's avatar Benjamin Larsson

Cosmetics, indentation.

Originally committed as revision 10145 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1cbe9d6a
......@@ -543,10 +543,10 @@ static int adpcm_encode_frame(AVCodecContext *avctx,
put_bits(&pb, 4, buf[1][i]);
}
} else {
for (i=1; i<avctx->frame_size; i++) {
put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]) & 0xF);
if (avctx->channels == 2)
put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]) & 0xF);
for (i=1; i<avctx->frame_size; i++) {
put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]) & 0xF);
if (avctx->channels == 2)
put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]) & 0xF);
}
}
flush_put_bits(&pb);
......
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