Author: ramiro
Date: Tue Aug 12 04:17:12 2008
New Revision: 3173

Log:
Remove unneeded filter info.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c        (original)
+++ mlp/mlpenc.c        Tue Aug 12 04:17:12 2008
@@ -580,19 +580,12 @@ static void set_filter_params(MLPEncodeC
     }
 
     if (filter == FIR) {
-        fp->order    =  4;
+        fp->order    =  1;
         fp->shift    =  0;
         fp->coeff[0] =  1;
-        fp->coeff[1] =  0;
-        fp->coeff[2] =  0;
-        fp->coeff[3] =  0;
     } else { /* IIR */
-        fp->order    =  4;
+        fp->order    =  0;
         fp->shift    =  0;
-        fp->coeff[0] =  0;
-        fp->coeff[1] =  0;
-        fp->coeff[2] =  0;
-        fp->coeff[3] =  0;
     }
 }
 
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to