1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChatCamera/ManagedCapturer/SCManagedCapturerARSessionHandler.h
2018-08-08 02:27:52 +03:00

27 lines
750 B
Objective-C

//
// SCManagedCapturerARSessionHandler.h
// Snapchat
//
// Created by Xiaokang Liu on 16/03/2018.
//
// This class is used to handle the AVCaptureSession event when ARSession is enabled.
// The stopARSessionRunning will be blocked till the AVCaptureSessionDidStopRunningNotification event has been received
// successfully,
// after then we can restart AVCaptureSession gracefully.
#import <SCBase/SCMacros.h>
#import <Foundation/Foundation.h>
@class SCCaptureResource;
@interface SCManagedCapturerARSessionHandler : NSObject
SC_INIT_AND_NEW_UNAVAILABLE
- (instancetype)initWithCaptureResource:(SCCaptureResource *)captureResource NS_DESIGNATED_INITIALIZER;
- (void)stopObserving;
- (void)stopARSessionRunning NS_AVAILABLE_IOS(11_0);
@end