[SCM] libav/experimental: fix probe of high bitrate mpeg2video
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:48:03 UTC 2013
The following commit has been merged in the experimental branch:
commit 329b1e755e9a0bfa9db0aed2b13457e3ca8d6ad8
Author: Michael Niedermayer <michaelni at gmx.at>
Date: Tue Jun 13 11:10:55 2006 +0000
fix probe of high bitrate mpeg2video
Originally committed as revision 5471 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 6f15dd2..8ddc831 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
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list