mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
Merge pull request #7029 from wolever:master
This commit is contained in:
commit
d67e6f5cc9
@ -100,6 +100,10 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
|
|||||||
|
|
||||||
- (void)start;
|
- (void)start;
|
||||||
{
|
{
|
||||||
|
if (self.running == YES) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
recordingCountDown = 10;
|
recordingCountDown = 10;
|
||||||
[super start];
|
[super start];
|
||||||
|
|
||||||
@ -118,6 +122,10 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
|
|||||||
|
|
||||||
- (void)stop;
|
- (void)stop;
|
||||||
{
|
{
|
||||||
|
if (self.running == NO) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
[super stop];
|
[super stop];
|
||||||
|
|
||||||
self.videoDataOutput = nil;
|
self.videoDataOutput = nil;
|
||||||
|
Loading…
Reference in New Issue
Block a user