diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-06 17:44:42 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-06 17:44:42 +0000 |
commit | 4c7981ba7c532928dbe60934a9fc951dbf8a34b5 (patch) | |
tree | 0a284d62e2808b3e8c45ace8e2562bbb2aa225a4 /libavformat | |
parent | d42a814ef18f6951d30b0005122c40f63cc74f55 (diff) | |
download | ffmpeg-4c7981ba7c532928dbe60934a9fc951dbf8a34b5.tar.gz |
do not reset duration_error for all streams, only reset current stream, fix wrong_fps.gxf
Originally committed as revision 12353 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 caf8df4ebd..d032baaf95 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1932,7 +1932,7 @@ int av_find_stream_info(AVFormatContext *ic) // if(st->codec->codec_type == CODEC_TYPE_VIDEO) // av_log(NULL, AV_LOG_ERROR, "%f\n", dur); if(duration_count[index] < 2) - memset(duration_error, 0, MAX_STREAMS * sizeof(*duration_error)); + memset(duration_error[index], 0, sizeof(*duration_error)); for(i=1; i<MAX_STD_TIMEBASES; i++){ int framerate= get_std_framerate(i); int ticks= lrintf(dur*framerate/(1001*12)); |