Commit fc001d6c authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: reindent

Originally committed as revision 24606 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 175a5711
...@@ -1157,11 +1157,11 @@ static void output_subframe_lpc(FlacEncodeContext *s, FlacSubframe *sub) ...@@ -1157,11 +1157,11 @@ static void output_subframe_lpc(FlacEncodeContext *s, FlacSubframe *sub)
/* LPC coefficients */ /* LPC coefficients */
if (sub->type == FLAC_SUBFRAME_LPC) { if (sub->type == FLAC_SUBFRAME_LPC) {
int cbits = s->options.lpc_coeff_precision; int cbits = s->options.lpc_coeff_precision;
put_bits( &s->pb, 4, cbits-1); put_bits( &s->pb, 4, cbits-1);
put_sbits(&s->pb, 5, sub->shift); put_sbits(&s->pb, 5, sub->shift);
for (i = 0; i < sub->order; i++) for (i = 0; i < sub->order; i++)
put_sbits(&s->pb, cbits, sub->coefs[i]); put_sbits(&s->pb, cbits, sub->coefs[i]);
} }
/* residual */ /* residual */
......
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