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.

24 lines
461 B

  1. //
  2. // SCRecordingMetadata.m
  3. // Snapchat
  4. //
  5. #import "SCManagedCapturerSampleMetadata.h"
  6. NS_ASSUME_NONNULL_BEGIN
  7. @implementation SCManagedCapturerSampleMetadata
  8. - (instancetype)initWithPresentationTimestamp:(CMTime)presentationTimestamp fieldOfView:(float)fieldOfView
  9. {
  10. self = [super init];
  11. if (self) {
  12. _presentationTimestamp = presentationTimestamp;
  13. _fieldOfView = fieldOfView;
  14. }
  15. return self;
  16. }
  17. @end
  18. NS_ASSUME_NONNULL_END