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
24 lines
461 B
//
|
|
// 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
|