You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
391 B
18 lines
391 B
//
|
|
// SCExposureState.h
|
|
// Snapchat
|
|
//
|
|
// Created by Derek Peirce on 4/10/17.
|
|
// Copyright © 2017 Snapchat, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface SCExposureState : NSObject
|
|
|
|
- (instancetype)initWithDevice:(AVCaptureDevice *)device;
|
|
|
|
- (void)applyISOAndExposureDurationToDevice:(AVCaptureDevice *)device;
|
|
|
|
@end
|