cosmetics: indentation

Originally committed as revision 11416 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2008-01-05 15:23:39 +00:00
parent 95283c1701
commit 2816d32310
1 changed files with 1 additions and 1 deletions

View File

@ -1130,7 +1130,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
/* channel config */
s->out_channels = s->channels;
if (avctx->request_channels > 0 && avctx->request_channels <= 2 &&
avctx->request_channels < s->channels) {
avctx->request_channels < s->channels) {
s->out_channels = avctx->request_channels;
s->output_mode = avctx->request_channels == 1 ? AC3_CHMODE_MONO : AC3_CHMODE_STEREO;
}