HomeSort by relevance Sort by last modified time
    Searched refs:captureSession (Results 1 - 25 of 30) sorted by null

1 2

  /external/webrtc/webrtc/base/objc/
RTCCameraPreviewView.m 23 @synthesize captureSession = _captureSession;
29 - (void)setCaptureSession:(AVCaptureSession *)captureSession {
30 if (_captureSession == captureSession) {
33 _captureSession = captureSession;
37 previewLayer.session = captureSession;
RTCCameraPreviewView.h 26 @property(nonatomic, strong) AVCaptureSession *captureSession;
  /external/webrtc/talk/app/webrtc/objc/public/
RTCAVFoundationVideoSource.h 47 @property(nonatomic, readonly) AVCaptureSession* captureSession;
  /external/opencv3/modules/videoio/src/
cap_ios_abstract_camera.mm 72 @synthesize captureSession;
185 [self.captureSession stopRunning];
196 for (AVCaptureInput *input in self.captureSession.inputs) {
197 [self.captureSession removeInput:input];
200 for (AVCaptureOutput *output in self.captureSession.outputs) {
201 [self.captureSession removeOutput:output];
204 [self.captureSession stopRunning];
205 self.captureSession = nil;
266 self.captureSession = [[AVCaptureSession alloc] init];
267 if ([self.captureSession canSetSessionPreset:self.defaultAVCaptureSessionPreset])
    [all...]
cap_ios_photo_camera.mm 83 [self.captureSession stopRunning];
113 [self.captureSession startRunning];
137 [self.captureSession addOutput:self.stillImageOutput];
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
FrameServerImpl.java 80 * @param captureSession The underlying session to manage access to. Note
83 public FrameServerImpl(FrameServer.Session captureSession) {
84 mCaptureSession = captureSession;
TagDispatchCaptureSession.java 104 public TagDispatchCaptureSession(CameraCaptureSessionProxy captureSession, Handler
106 mCaptureSession = captureSession;
  /packages/apps/Camera2/src/com/android/camera/one/v2/errorhandling/
FastCameraReset.java 45 FastCameraReset(Logger.Factory logFactory, CameraCaptureSessionProxy captureSession,
49 mCaptureSession = captureSession;
RepeatFailureHandlerComponent.java 49 FatalErrorHandler fatalErrorHandler, CameraCaptureSessionProxy captureSession,
52 FastCameraReset fastCameraReset = new FastCameraReset(logFactory, captureSession,
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstController.java 21 import com.android.camera.session.CaptureSession;
37 * ImageStreamProperties, BurstResultsListener, CaptureSession)}. The returned
99 * @param captureSession the capture session associated with the burst.
106 CaptureSession captureSession);
BurstFacadeImpl.java 27 import com.android.camera.session.CaptureSession;
124 public void startBurst(CaptureSession.CaptureSessionCreator captureSessionCreator,
133 CaptureSession captureSession = captureSessionCreator.createAndStartEmpty();
134 mActiveStackSaver = captureSession.getStackSaver();
158 captureSession);
  /packages/apps/Camera2/src_pd/com/android/camera/burst/
BurstControllerImpl.java 26 import com.android.camera.session.CaptureSession;
47 CaptureSession captureSession) {
  /external/webrtc/talk/app/webrtc/objc/
RTCAVFoundationVideoSource.mm 56 - (AVCaptureSession*)captureSession {
avfoundationvideocapturer.mm 53 @property(nonatomic, readonly) AVCaptureSession* captureSession;
76 @synthesize captureSession = _captureSession;
353 return _capturer.captureSession;
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
PreviewStarter.java 89 CameraCaptureSessionProxy captureSession) throws Exception {
90 mSessionListener.onCameraCaptureSessionCreated(captureSession, surface);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageShadowTask.java 27 import com.android.camera.session.CaptureSession;
50 private final CaptureSession mCaptureSession;
62 * @param captureSession the capture session associated with this shadow
73 CaptureSession captureSession, Optional<Runnable> runnableWhenDone) {
75 mCaptureSession = captureSession;
96 public ProcessingResult process(Context context, CameraServices services, CaptureSession session) {
135 public CaptureSession getSession() {
TaskPreviewChainedJpeg.java 22 import com.android.camera.session.CaptureSession;
42 * @param captureSession Capture session that bound to this image
48 CaptureSession captureSession,
51 super(image, executor, imageTaskManager, ProcessingPriority.AVERAGE, captureSession,
TaskChainedCompressImageToJpeg.java 24 import com.android.camera.session.CaptureSession;
41 ImageTaskManager imageTaskManager, CaptureSession captureSession) {
42 super(image, executor, imageTaskManager, ProcessingPriority.SLOW, captureSession);
ImageConsumer.java 21 import com.android.camera.session.CaptureSession;
35 * now pass in the CaptureSession in order to properly update filmstrip and UI.
86 Set<ImageTaskFlags> processingFlags, CaptureSession captureSession,
103 Set<ImageTaskFlags> processingFlags, CaptureSession captureSession)
TaskImageContainer.java 23 import com.android.camera.session.CaptureSession;
154 final protected CaptureSession mSession;
179 * @param captureSession Session that handles image processing events
183 ProcessingPriority preferredLane, CaptureSession captureSession) {
189 mSession = captureSession;
TaskJpegEncode.java 28 import com.android.camera.session.CaptureSession;
62 * @param captureSession Session associated for UI handling
66 TaskImageContainer.ProcessingPriority preferredLane, CaptureSession captureSession) {
67 super(image, executor, imageTaskManager, preferredLane, captureSession);
  /frameworks/base/core/java/android/hardware/soundtrigger/
SoundTrigger.java 558 public final int captureSession;
574 int captureSession, int captureDelayMs, int capturePreambleMs,
579 this.captureSession = captureSession;
602 int captureSession = in.readInt();
618 return new RecognitionEvent(status, soundModelHandle, captureAvailable, captureSession,
632 dest.writeInt(captureSession);
654 result = prime * result + captureSession;
682 if (captureSession != other.captureSession)
    [all...]
  /external/opencv3/modules/videoio/include/opencv2/videoio/
cap_ios.h 44 AVCaptureSession* captureSession;
67 @property (nonatomic, retain) AVCaptureSession* captureSession;
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDVideoCallViewController.m 138 _videoCallView.localVideoView.captureSession = source.captureSession;
  /frameworks/base/media/java/android/media/soundtrigger/
SoundTriggerDetector.java 111 // Indicates if {@code captureSession} can be used to continue capturing more audio
122 AudioFormat audioFormat, int captureSession, byte[] data) {
125 mCaptureSession = captureSession;
300 event.captureFormat, event.captureSession, event.data))

Completed in 2496 milliseconds

1 2