From 329b1e755e9a0bfa9db0aed2b13457e3ca8d6ad8 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Tue, 13 Jun 2006 11:10:55 +0000
Subject: [PATCH] fix probe of high bitrate mpeg2video

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

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 6f15dd2f42c..8ddc831fab9 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -515,7 +515,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
 
 /** Size of probe buffer, for guessing file type from file contents. */
 #define PROBE_BUF_MIN 2048
-#define PROBE_BUF_MAX 131072
+#define PROBE_BUF_MAX (1<<20)
 
 /**
  * Open a media file as input. The codec are not opened. Only the file
-- 
GitLab