From e19456e3ee263ae1c46b623c8394394710721ff4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 22 Jan 2005 02:30:45 +0000 Subject: [PATCH] fixing demuxing for short files where the framerate detection failed Originally committed as revision 3859 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index 44f5e76c11..a2d14fbb4b 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1783,6 +1783,11 @@ int av_find_stream_info(AVFormatContext *ic) if (ret < 0) { /* EOF or error */ ret = -1; /* we could not have all the codec parameters before EOF */ + for(i=0;inb_streams;i++) { + st = ic->streams[i]; + if (!has_codec_parameters(&st->codec)) + break; + } if ((ic->ctx_flags & AVFMTCTX_NOHEADER) && i == ic->nb_streams) ret = 0;