[FFmpeg-soc] [soc]: r2602 - mlp/mlpdec.c
ramiro
subversion at mplayerhq.hu
Tue Jul 1 00:59:50 CEST 2008
Author: ramiro
Date: Tue Jul 1 00:59:49 2008
New Revision: 2602
Log:
Remove unneeded brackets.
Modified:
mlp/mlpdec.c
Modified: mlp/mlpdec.c
==============================================================================
--- mlp/mlpdec.c (original)
+++ mlp/mlpdec.c Tue Jul 1 00:59:49 2008
@@ -657,14 +657,13 @@ static int read_decoding_params(MLPDecod
}
if (m->param_presence_flags[substr] & PARAM_OUTSHIFT)
- if (get_bits1(gbp)) {
+ if (get_bits1(gbp))
for (ch = 0; ch <= m->max_matrix_channel[substr]; ch++) {
m->output_shift[substr][ch] = get_bits(gbp, 4);
dprintf(m->avctx, "output shift[%d] = %d\n",
ch, m->output_shift[substr][ch]);
/* TODO: validate */
}
- }
if (m->param_presence_flags[substr] & PARAM_QUANTSTEP)
if (get_bits1(gbp))
More information about the FFmpeg-soc
mailing list