Commit 6c125331 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #7571 from panxiaochun:CvVideoCamera_stop

parents 811eb762 bec3479f
...@@ -203,11 +203,11 @@ ...@@ -203,11 +203,11 @@
} }
[self.captureSession stopRunning]; [self.captureSession stopRunning];
self.captureSession = nil; [captureSession release];
} }
self.captureVideoPreviewLayer = nil; [captureVideoPreviewLayer release];
self.videoCaptureConnection = nil; [videoCaptureConnection release];
captureSessionLoaded = NO; captureSessionLoaded = NO;
} }
......
...@@ -129,31 +129,33 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;} ...@@ -129,31 +129,33 @@ static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
- (void)stop; - (void)stop;
{ {
[super stop]; if (self.running == YES) {
[super stop];
self.videoDataOutput = nil; [videoDataOutput release];
if (videoDataOutputQueue) { if (videoDataOutputQueue) {
dispatch_release(videoDataOutputQueue); dispatch_release(videoDataOutputQueue);
} }
if (self.recordVideo == YES) { if (self.recordVideo == YES) {
if (self.recordAssetWriter) { if (self.recordAssetWriter) {
if (self.recordAssetWriter.status == AVAssetWriterStatusWriting) { if (self.recordAssetWriter.status == AVAssetWriterStatusWriting) {
[self.recordAssetWriter finishWriting]; [self.recordAssetWriter finishWriting];
NSLog(@"[Camera] recording stopped"); NSLog(@"[Camera] recording stopped");
} else { } else {
NSLog(@"[Camera] Recording Error: asset writer status is not writing"); NSLog(@"[Camera] Recording Error: asset writer status is not writing");
}
[recordAssetWriter release];
} }
self.recordAssetWriter = nil;
}
self.recordAssetWriterInput = nil; [recordAssetWriterInput release];
self.recordPixelBufferAdaptor = nil; [recordPixelBufferAdaptor release];
} }
if (self.customPreviewLayer) { if (self.customPreviewLayer) {
[self.customPreviewLayer removeFromSuperlayer]; [self.customPreviewLayer removeFromSuperlayer];
self.customPreviewLayer = nil; self.customPreviewLayer = nil;
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment