Merge pull request #5192 from D-Alex:master

pull/5194/head
Alexander Alekhin 10 years ago
commit 30e6725006
  1. 3
      modules/videoio/src/cap.cpp

@ -129,6 +129,9 @@ CV_IMPL CvCapture * cvCreateCameraCapture (int index)
// interpret preferred interface (0 = autodetect)
int pref = (index / 100) * 100;
// remove pref from index
index -= pref;
// local variable to memorize the captured device
CvCapture *capture = 0;

Loading…
Cancel
Save