12345678910111213141516171819202122232425262728 |
- //
- // PCSSessionWrapper.h
- // sampleSDK
- //
- // Created by 王昭威 on 2023/1/15.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @class AVCaptureSession;
- @class AVCapturePhotoOutput;
- @class AVCaptureVideoDataOutput;
- @class AVCaptureMovieFileOutput;
- @class AVCaptureVideoPreviewLayer;
- @interface PCSSessionWrapper : NSObject
- @property (nonatomic, strong) AVCaptureSession* captureSession;
- @property (nonatomic, strong) AVCapturePhotoOutput* cameraPhotoOutput;
- @property (nonatomic, strong) AVCaptureVideoDataOutput* cameraVideoOutput;
- @property (nonatomic, strong) AVCaptureMovieFileOutput* movieFileOutput;
- @property (nonatomic, strong) AVCaptureVideoPreviewLayer* previewLayer;
- @end
- NS_ASSUME_NONNULL_END
|