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.

26 lines
563 B

  1. //
  2. // SCRecordingMetadata.h
  3. // Snapchat
  4. //
  5. #import <SCBase/SCMacros.h>
  6. #import <CoreMedia/CoreMedia.h>
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SCManagedCapturerSampleMetadata : NSObject
  10. SC_INIT_AND_NEW_UNAVAILABLE
  11. - (instancetype)initWithPresentationTimestamp:(CMTime)presentationTimestamp
  12. fieldOfView:(float)fieldOfView NS_DESIGNATED_INITIALIZER;
  13. @property (nonatomic, readonly) CMTime presentationTimestamp;
  14. @property (nonatomic, readonly) float fieldOfView;
  15. @end
  16. NS_ASSUME_NONNULL_END