Commit d8a50a54 authored by michael's avatar michael

1/0l fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3770 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2d6a8f1c
......@@ -1854,7 +1854,7 @@ int av_find_stream_info(AVFormatContext *ic)
int_fps= av_rescale(st->r_frame_rate, 1, st->r_frame_rate_base);
if(av_rescale(st->r_frame_rate, 1, int_fps) == st->r_frame_rate_base){
if(int_fps>0 && av_rescale(st->r_frame_rate, 1, int_fps) == st->r_frame_rate_base){
st->r_frame_rate= int_fps;
st->r_frame_rate_base= 1;
}
......
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