diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-06-13 11:10:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-06-13 11:10:55 +0000 |
commit | 329b1e755e9a0bfa9db0aed2b13457e3ca8d6ad8 (patch) | |
tree | d8a166772b064e452ea3a5873107d61bccf84ccf /libavformat | |
parent | bbf84ca1a4f617140b07ef85560e59bb05d97510 (diff) | |
download | ffmpeg-329b1e755e9a0bfa9db0aed2b13457e3ca8d6ad8.tar.gz |
fix probe of high bitrate mpeg2video
Originally committed as revision 5471 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 6f15dd2f42..8ddc831fab 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 |