提交 d67e6f5c 编写于 作者: V Vadim Pisarevsky

Merge pull request #7029 from wolever:master

......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册