Commit be074085 authored by michaelni's avatar michaelni

mpeg1 bad frame_rate_base fix by (Arthur van Hoff (javanator))


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2012 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 71b85d24
......@@ -618,7 +618,7 @@ int av_find_stream_info(AVFormatContext *ic)
&st->r_frame_rate,
&st->r_frame_rate_base,
(int64_t)st->codec.frame_rate * st->codec_info_nb_real_frames,
st->codec_info_nb_real_frames + (st->codec_info_nb_repeat_frames >> 1),
(st->codec_info_nb_real_frames + (st->codec_info_nb_repeat_frames >> 1)) * st->codec.frame_rate_base,
1<<30);
goto close_codec;
}
......
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