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.
20 lines
454 B
20 lines
454 B
//
|
|
// SCCapturerDefines.h
|
|
// Snapchat
|
|
//
|
|
// Created by Chao Pang on 12/20/17.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, SCCapturerLightingConditionType) {
|
|
SCCapturerLightingConditionTypeNormal = 0,
|
|
SCCapturerLightingConditionTypeDark,
|
|
SCCapturerLightingConditionTypeExtremeDark,
|
|
};
|
|
|
|
typedef struct SampleBufferMetadata {
|
|
int isoSpeedRating;
|
|
float exposureTime;
|
|
float brightness;
|
|
} SampleBufferMetadata;
|