Commit 2816d323 authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: indentation

Originally committed as revision 11416 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 95283c17
......@@ -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;
}
......
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