mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
fixing demuxing for short files where the framerate detection failed
Originally committed as revision 3859 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b4aea108eb
commit
e19456e3ee
@ -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…
Reference in New Issue
Block a user