mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
Solved a problem with VideoWriter in the new wrapper
This commit is contained in:
parent
ab0fc84781
commit
958d5a0caa
@ -1486,7 +1486,7 @@ bool CvVideoWriter_FFMPEG::open( const char * filename, int fourcc,
|
||||
#if LIBAVFORMAT_BUILD < CALC_FFMPEG_VERSION(53, 2, 0)
|
||||
if (url_fopen(&oc->pb, filename, URL_WRONLY) < 0)
|
||||
#else
|
||||
if (avio_open(&oc->pb, filename, 1) < 0)
|
||||
if (avio_open(&oc->pb, filename, AVIO_FLAG_WRITE) < 0)
|
||||
#endif
|
||||
{
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user