videoio: fix lifetime management of data of input frames

This commit is contained in:
Alexander Alekhin 2018-05-21 12:07:02 +03:00
parent 59fc909d48
commit e21c01708a

View File

@ -223,7 +223,7 @@ public:
if (!ffmpegCapture ||
!icvRetrieveFrame_FFMPEG_p(ffmpegCapture, &data, &step, &width, &height, &cn))
return false;
frame.assign(cv::Mat(height, width, CV_MAKETYPE(CV_8U, cn), data, step));
cv::Mat(height, width, CV_MAKETYPE(CV_8U, cn), data, step).copyTo(frame);
return true;
}
virtual bool open( const cv::String& filename )