Commit 6d9c8770 authored by ramiro's avatar ramiro

mlpdec: Fix indentation that got mangled from copy&paste.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18761 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2e0aec2c
...@@ -620,10 +620,10 @@ static int read_channel_params(MLPDecodeContext *m, unsigned int substr, ...@@ -620,10 +620,10 @@ static int read_channel_params(MLPDecodeContext *m, unsigned int substr,
return -1; return -1;
} }
/* The FIR and IIR filters must have the same precision. /* The FIR and IIR filters must have the same precision.
* To simplify the filtering code, only the precision of the * To simplify the filtering code, only the precision of the
* FIR filter is considered. If only the IIR filter is employed, * FIR filter is considered. If only the IIR filter is employed,
* the FIR filter precision is set to that of the IIR filter, so * the FIR filter precision is set to that of the IIR filter, so
* that the filtering code can use it. */ * that the filtering code can use it. */
if (!fir->order && iir->order) if (!fir->order && iir->order)
fir->shift = iir->shift; fir->shift = iir->shift;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment