Commit 7b3ec537 authored by Alexander Shishkov's avatar Alexander Shishkov

minor changes in wrapper

parent b5382108
...@@ -1069,7 +1069,7 @@ static AVStream *icv_add_video_stream_FFMPEG(AVFormatContext *oc, ...@@ -1069,7 +1069,7 @@ static AVStream *icv_add_video_stream_FFMPEG(AVFormatContext *oc,
frame_rate=(int)(fps+0.5); frame_rate=(int)(fps+0.5);
frame_rate_base=1; frame_rate_base=1;
while (fabs((double)frame_rate/frame_rate_base) - fps > 0.001){ while (fabs((double)frame_rate/frame_rate_base) - fps > 0.001){
frame_rate_base*=10; frame_rate_base *= 10;
frame_rate=(int)(fps*frame_rate_base + 0.5); frame_rate=(int)(fps*frame_rate_base + 0.5);
} }
#if LIBAVFORMAT_BUILD > 4752 #if LIBAVFORMAT_BUILD > 4752
......
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