From bf4df828f7c5c24cbd1abfae4a100870395d02f5 Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Thu, 15 Mar 2012 15:30:01 +0000 Subject: [PATCH] minor changes in wrapper --- modules/highgui/src/cap_ffmpeg_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/highgui/src/cap_ffmpeg_impl.hpp b/modules/highgui/src/cap_ffmpeg_impl.hpp index 16e0ca4b5f..2ef91d303c 100644 --- a/modules/highgui/src/cap_ffmpeg_impl.hpp +++ b/modules/highgui/src/cap_ffmpeg_impl.hpp @@ -1066,8 +1066,8 @@ static AVStream *icv_add_video_stream_FFMPEG(AVFormatContext *oc, of which frame timestamps are represented. for fixed-fps content, timebase should be 1/framerate and timestamp increments should be identically 1. */ - frame_rate=(int)(fps+0.5); - frame_rate_base=1; + frame_rate = static_cast(fps+0.5); + frame_rate_base = 1; while (fabs((double)frame_rate/frame_rate_base) - fps > 0.001){ frame_rate_base *= 10; frame_rate=(int)(fps*frame_rate_base + 0.5);