diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-05-06 15:37:25 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-05-06 15:37:25 +0000 |
commit | aff42ee0ff50d307c5eb0cc768645452194dea98 (patch) | |
tree | eabe198bee119daed6a8d7effc6df990a13f21de /libavcodec/mlpdec.c | |
parent | 4fa61d1e982ea96f5376959c2abcab4eafddf98a (diff) | |
download | ffmpeg-aff42ee0ff50d307c5eb0cc768645452194dea98.tar.gz |
mlpdec: Fix indentation that got mangled from copy&paste.
Originally committed as revision 18761 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index f5a11acf8c..491fb864c0 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -620,10 +620,10 @@ static int read_channel_params(MLPDecodeContext *m, unsigned int substr, 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; |