1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Merge pull request #14874 from alalek:videoio_fix_gstreamer_plugin_build

This commit is contained in:
Alexander Alekhin
2019-06-24 12:37:52 +00:00
+1 -1
View File
@@ -1769,7 +1769,7 @@ CvResult CV_API_CALL cv_capture_open(const char* filename, int camera_index, CV_
cap = new GStreamerCapture();
bool res;
if (filename)
res = cap->open(string(filename));
res = cap->open(std::string(filename));
else
res = cap->open(camera_index);
if (res)