1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChatCamera/ManagedCapturer/SCManagedCapturerSampleMetadata.m
2018-08-08 02:27:52 +03:00

25 lines
461 B
Objective-C

//
// SCRecordingMetadata.m
// Snapchat
//
#import "SCManagedCapturerSampleMetadata.h"
NS_ASSUME_NONNULL_BEGIN
@implementation SCManagedCapturerSampleMetadata
- (instancetype)initWithPresentationTimestamp:(CMTime)presentationTimestamp fieldOfView:(float)fieldOfView
{
self = [super init];
if (self) {
_presentationTimestamp = presentationTimestamp;
_fieldOfView = fieldOfView;
}
return self;
}
@end
NS_ASSUME_NONNULL_END