From a12fb7f96c833e5f04f0a4e4727020b0ab4d93fa Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Thu, 15 Mar 2012 20:14:59 +0000 Subject: [PATCH] minor changes in wrapper 3 --- modules/highgui/src/cap_ffmpeg_impl.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/highgui/src/cap_ffmpeg_impl.hpp b/modules/highgui/src/cap_ffmpeg_impl.hpp index 7289df9..fe68e79 100644 --- a/modules/highgui/src/cap_ffmpeg_impl.hpp +++ b/modules/highgui/src/cap_ffmpeg_impl.hpp @@ -1187,7 +1187,7 @@ bool CvVideoWriter_FFMPEG::writeFrame( const unsigned char* data, int step, int #if LIBAVFORMAT_BUILD > 4628 AVCodecContext *c = video_st->codec; #else - AVCodecContext *c = &(video_st->codec); + AVCodecContext *c = &(video_st->codec); #endif #if LIBAVFORMAT_BUILD < 5231 @@ -1376,9 +1376,9 @@ bool CvVideoWriter_FFMPEG::open( const char * filename, int fourcc, close(); // check arguments - assert (filename); - assert (fps > 0); - assert (width > 0 && height > 0); + assert(filename); + assert(fps > 0); + assert(width > 0 && height > 0); // tell FFMPEG to register codecs av_register_all (); -- 2.7.4