Mercurial > libavcodec.hg
changeset 9612:de33a215fd84 libavcodec
mlpdec: Fix indentation that got mangled from copy&paste.
author | ramiro |
---|---|
date | Wed, 06 May 2009 15:37:25 +0000 |
parents | 8074df653392 |
children | 56f0a4054770 |
files | mlpdec.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mlpdec.c Wed May 06 06:49:04 2009 +0000 +++ b/mlpdec.c Wed May 06 15:37:25 2009 +0000 @@ -620,10 +620,10 @@ return -1; } /* The FIR and IIR filters must have the same precision. - * To simplify the filtering code, only the precision of the - * FIR filter is considered. If only the IIR filter is employed, - * the FIR filter precision is set to that of the IIR filter, so - * that the filtering code can use it. */ + * To simplify the filtering code, only the precision of the + * FIR filter is considered. If only the IIR filter is employed, + * the FIR filter precision is set to that of the IIR filter, so + * that the filtering code can use it. */ if (!fir->order && iir->order) fir->shift = iir->shift;