HomeSort by relevance Sort by last modified time
    Searched full:_capturesession (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/video_capture/ios/
rtc_video_capture_ios_objc.mm 32 AVCaptureSession* _captureSession;
46 _captureSession = [[AVCaptureSession alloc] init];
50 _captureSession.usesApplicationAudioSession = NO;
56 if (!_captureSession || !_captureChangingCondition) {
72 if ([_captureSession canAddOutput:captureOutput]) {
73 [_captureSession addOutput:captureOutput];
90 object:_captureSession];
123 if (_captureSession) {
124 NSArray* currentInputs = [NSArray arrayWithArray:[_captureSession inputs]];
138 if (!_captureSession) {
    [all...]
  /external/webrtc/webrtc/base/objc/
RTCCameraPreviewView.m 23 @synthesize captureSession = _captureSession;
30 if (_captureSession == captureSession) {
33 _captureSession = captureSession;
  /external/webrtc/talk/app/webrtc/objc/
avfoundationvideocapturer.mm 76 @synthesize captureSession = _captureSession;
122 AVCaptureSession* session = _captureSession;
135 AVCaptureSession* session = _captureSession;
165 _captureSession = [[AVCaptureSession alloc] init];
169 _captureSession.usesApplicationAudioSession = NO;
172 if (![_captureSession canSetSessionPreset:kDefaultPreset]) {
176 _captureSession.sessionPreset = kDefaultPreset;
188 if (![_captureSession canAddOutput:_videoOutput]) {
192 [_captureSession addOutput:_videoOutput];
231 if (![_captureSession canAddInput:_frontDeviceInput] |
    [all...]
  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_objc.mm 36 if (_captureSession)
37 [_captureSession stopRunning];
47 [_captureSession release];
110 if (![_captureSession addInput:_captureVideoDeviceInput error:&error]) {
147 [_captureSession startRunning];
155 [_captureSession stopRunning];
175 _captureSession = [[QTCaptureSession alloc] init];
214 if (![_captureSession addOutput:_captureDecompressedVideoOutput error:&error])
video_capture_qtkit_objc.h 40 QTCaptureSession* _captureSession;

Completed in 447 milliseconds