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;
 
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to