mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-11-01 05:13:39 -04:00
19 lines
480 B
Objective-C
19 lines
480 B
Objective-C
#import "CAMCaptureConfiguration.h"
|
|
|
|
NS_CLASS_AVAILABLE_IOS(10_0)
|
|
@interface CAMCaptureGraphConfiguration : NSObject <NSCoding>
|
|
|
|
+ (instancetype)captureGraphConfigurationUsingConfiguration:(CAMCaptureConfiguration *)configuration;
|
|
|
|
- (NSInteger)flashMode;
|
|
- (NSInteger)torchMode;
|
|
- (NSInteger)HDRMode;
|
|
- (NSInteger)timerDuration;
|
|
- (NSInteger)irisMode;
|
|
- (NSInteger)photoModeEffectFilterType;
|
|
- (NSInteger)squareModeEffectFilterType;
|
|
- (NSInteger)mode;
|
|
- (NSInteger)device;
|
|
|
|
@end
|