1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

thread-safe VideoWriter and VideoCapture

This commit is contained in:
Ilya Lavrenov
2012-11-19 16:44:23 +04:00
parent 6cd70c83fb
commit 4abf0b3193
5 changed files with 457 additions and 51 deletions
-1
View File
@@ -424,7 +424,6 @@ CV_IMPL CvVideoWriter* cvCreateVideoWriter( const char* filename, int fourcc,
CV_IMPL int cvWriteFrame( CvVideoWriter* writer, const IplImage* image )
{
return writer ? writer->writeFrame(image) : 0;
}