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
26 lines
563 B
//
|
|
// SCRecordingMetadata.h
|
|
// Snapchat
|
|
//
|
|
|
|
#import <SCBase/SCMacros.h>
|
|
|
|
#import <CoreMedia/CoreMedia.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCManagedCapturerSampleMetadata : NSObject
|
|
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
|
|
- (instancetype)initWithPresentationTimestamp:(CMTime)presentationTimestamp
|
|
fieldOfView:(float)fieldOfView NS_DESIGNATED_INITIALIZER;
|
|
|
|
@property (nonatomic, readonly) CMTime presentationTimestamp;
|
|
|
|
@property (nonatomic, readonly) float fieldOfView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|