Browse Source

fixing demuxing for short files where the framerate detection failed

Originally committed as revision 3859 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 21 years ago
parent
commit
e19456e3ee
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavformat/utils.c

+ 5
- 0
libavformat/utils.c View File

@@ -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;i<ic->nb_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;


Loading…
Cancel
Save