[FFmpeg-soc] [soc]: r3264 - mlp/mlpenc.c

ramiro subversion at mplayerhq.hu
Thu Aug 14 06:30:20 CEST 2008


Author: ramiro
Date: Thu Aug 14 06:30:19 2008
New Revision: 3264

Log:
Simplify some code that was apparently missed...

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	(original)
+++ mlp/mlpenc.c	Thu Aug 14 06:30:19 2008
@@ -330,7 +330,7 @@ static void code_filter_coeffs(MLPEncode
 
         if (coeff < min)
             min = coeff;
-        if (fp->coeff[order] > max)
+        if (coeff > max)
             max = coeff;
 
         or |= coeff;



More information about the FFmpeg-soc mailing list