Adding audio to opencv

This commit is contained in:
Nguyen Nguyen
2015-05-06 17:01:38 -04:00
parent 9682430a69
commit a5814871d9
3 changed files with 165 additions and 14 deletions

View File

@@ -40,6 +40,7 @@
{
AVCaptureSession* captureSession;
AVCaptureConnection* videoCaptureConnection;
AVCaptureConnection* audioCaptureConnection;
AVCaptureVideoPreviewLayer *captureVideoPreviewLayer;
UIDeviceOrientation currentDeviceOrientation;
@@ -63,6 +64,7 @@
@property (nonatomic, retain) AVCaptureSession* captureSession;
@property (nonatomic, retain) AVCaptureConnection* videoCaptureConnection;
@property (nonatomic, retain) AVCaptureConnection* audioCaptureConnection;
@property (nonatomic, readonly) BOOL running;
@property (nonatomic, readonly) BOOL captureSessionLoaded;