Commit aa5ca60b authored by ramiro's avatar ramiro

mlp: cosmetics: remove {}s over one-lined if.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16027 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 20a575fd
......@@ -297,9 +297,8 @@ static int read_major_sync(MLPDecodeContext *m, GetBitContext *gb)
m->avctx->frame_size = mh.access_unit_size;
m->avctx->bits_per_raw_sample = mh.group1_bits;
if (mh.group1_bits > 16) {
if (mh.group1_bits > 16)
m->avctx->sample_fmt = SAMPLE_FMT_S32;
}
else
m->avctx->sample_fmt = SAMPLE_FMT_S16;
......
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