[FFmpeg-cvslog] r18761 - trunk/libavcodec/mlpdec.c
ramiro
subversion
Wed May 6 17:37:25 CEST 2009
Author: ramiro
Date: Wed May 6 17:37:25 2009
New Revision: 18761
Log:
mlpdec: Fix indentation that got mangled from copy&paste.
Modified:
trunk/libavcodec/mlpdec.c
Modified: trunk/libavcodec/mlpdec.c
==============================================================================
--- trunk/libavcodec/mlpdec.c Wed May 6 17:31:02 2009 (r18760)
+++ trunk/libavcodec/mlpdec.c Wed May 6 17:37:25 2009 (r18761)
@@ -620,10 +620,10 @@ static int read_channel_params(MLPDecode
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;
More information about the ffmpeg-cvslog
mailing list