Commit 4c7981ba authored by Baptiste Coudurier's avatar Baptiste Coudurier

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
parent d42a814e
...@@ -1932,7 +1932,7 @@ int av_find_stream_info(AVFormatContext *ic) ...@@ -1932,7 +1932,7 @@ int av_find_stream_info(AVFormatContext *ic)
// if(st->codec->codec_type == CODEC_TYPE_VIDEO) // if(st->codec->codec_type == CODEC_TYPE_VIDEO)
// av_log(NULL, AV_LOG_ERROR, "%f\n", dur); // av_log(NULL, AV_LOG_ERROR, "%f\n", dur);
if(duration_count[index] < 2) 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++){ for(i=1; i<MAX_STD_TIMEBASES; i++){
int framerate= get_std_framerate(i); int framerate= get_std_framerate(i);
int ticks= lrintf(dur*framerate/(1001*12)); int ticks= lrintf(dur*framerate/(1001*12));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment