OSDN Git Service

mlpdec: Fix indentation that got mangled from copy&paste.
authorRamiro Polla <ramiro.polla@gmail.com>
Wed, 6 May 2009 15:37:25 +0000 (15:37 +0000)
committerRamiro Polla <ramiro.polla@gmail.com>
Wed, 6 May 2009 15:37:25 +0000 (15:37 +0000)
Originally committed as revision 18761 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mlpdec.c

index f5a11ac..491fb86 100644 (file)
@@ -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;