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

ramiro subversion at mplayerhq.hu
Sun Aug 17 03:30:00 CEST 2008


Author: ramiro
Date: Sun Aug 17 03:30:00 2008
New Revision: 3366

Log:
Don't keep on comparing filters when order is 0.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	(original)
+++ mlp/mlpenc.c	Sun Aug 17 03:30:00 2008
@@ -953,6 +953,10 @@ static int compare_filter_params(FilterP
 
     if (prev->order != fp->order)
         return 1;
+
+    if (!prev->order)
+        return 0;
+
     if (prev->shift != fp->shift)
         return 1;
 



More information about the FFmpeg-soc mailing list