From efac2613e71dd99446c858c987625b6a09864cf9 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sat, 4 Feb 2006 02:05:51 +0000
Subject: [PATCH] fix regression tests

Originally committed as revision 4932 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/raw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/raw.c b/libavformat/raw.c
index c29e5f3af69..aaff4e8407f 100644
--- a/libavformat/raw.c
+++ b/libavformat/raw.c
@@ -306,7 +306,7 @@ static int mpegvideo_probe(AVProbeData *p)
             }
         }
     }
-    if(seq && pic && slice && seq<pic && (ABS(pic-slice)-1)*10 < pic && !pspack)
+    if(seq && pic && slice && seq<pic && !pspack)
         return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg
     return 0;
 }
-- 
GitLab