diff options
author | Måns Rullgård <mans@mansr.com> | 2006-06-20 19:46:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-06-20 19:46:09 +0000 |
commit | c10824ea67e7faa3fda6e790af8efa0d07b9270e (patch) | |
tree | fc097df3b6b21e976080ef812e05dda0573e7d9f | |
parent | 4726111362bc5a8e7ab973fbbe902c70cff93b32 (diff) | |
download | ffmpeg-c10824ea67e7faa3fda6e790af8efa0d07b9270e.tar.gz |
increase search limit in av_find_stream_info
Originally committed as revision 5505 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 375a878059..5a3af68e74 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1846,7 +1846,7 @@ static int try_decode_frame(AVStream *st, const uint8_t *data, int size) #define MAX_READ_SIZE 5000000 /* maximum duration until we stop analysing the stream */ -#define MAX_STREAM_DURATION ((int)(AV_TIME_BASE * 2.0)) +#define MAX_STREAM_DURATION ((int)(AV_TIME_BASE * 3.0)) /** * Read the beginning of a media file to get stream information. This |