Fix crash on double-stop of CvVideoCamera

pull/7029/head
David Wolever 9 years ago
parent fc742da6e3
commit 3d19de2b58
No known key found for this signature in database
GPG Key ID: EACBB7914091712B
  1. 8
      modules/videoio/src/cap_ios_video_camera.mm

@ -100,6 +100,10 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
- (void)start;
{
if (self.running == YES) {
return;
}
recordingCountDown = 10;
[super start];
@ -118,6 +122,10 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
- (void)stop;
{
if (self.running == NO) {
return;
}
[super stop];
self.videoDataOutput = nil;

Loading…
Cancel
Save