comparison mlpdec.c @ 9612:de33a215fd84 libavcodec

mlpdec: Fix indentation that got mangled from copy&paste.
author ramiro
date Wed, 06 May 2009 15:37:25 +0000
parents 5e1d9508b62f
children 56f0a4054770
comparison
equal deleted inserted replaced
9611:8074df653392 9612:de33a215fd84
618 av_log(m->avctx, AV_LOG_ERROR, 618 av_log(m->avctx, AV_LOG_ERROR,
619 "FIR and IIR filters must use the same precision.\n"); 619 "FIR and IIR filters must use the same precision.\n");
620 return -1; 620 return -1;
621 } 621 }
622 /* The FIR and IIR filters must have the same precision. 622 /* The FIR and IIR filters must have the same precision.
623 * To simplify the filtering code, only the precision of the 623 * To simplify the filtering code, only the precision of the
624 * FIR filter is considered. If only the IIR filter is employed, 624 * FIR filter is considered. If only the IIR filter is employed,
625 * the FIR filter precision is set to that of the IIR filter, so 625 * the FIR filter precision is set to that of the IIR filter, so
626 * that the filtering code can use it. */ 626 * that the filtering code can use it. */
627 if (!fir->order && iir->order) 627 if (!fir->order && iir->order)
628 fir->shift = iir->shift; 628 fir->shift = iir->shift;
629 629
630 if (s->param_presence_flags & PARAM_HUFFOFFSET) 630 if (s->param_presence_flags & PARAM_HUFFOFFSET)
631 if (get_bits1(gbp)) 631 if (get_bits1(gbp))