2014 snapchat source code
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

  1. //
  2. // SCCapturerDefines.h
  3. // Snapchat
  4. //
  5. // Created by Chao Pang on 12/20/17.
  6. //
  7. #import <Foundation/Foundation.h>
  8. typedef NS_ENUM(NSInteger, SCCapturerLightingConditionType) {
  9. SCCapturerLightingConditionTypeNormal = 0,
  10. SCCapturerLightingConditionTypeDark,
  11. SCCapturerLightingConditionTypeExtremeDark,
  12. };
  13. typedef struct SampleBufferMetadata {
  14. int isoSpeedRating;
  15. float exposureTime;
  16. float brightness;
  17. } SampleBufferMetadata;