mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
26 lines
599 B
Objective-C
26 lines
599 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, FFMpegAVFrameColorRange) {
|
|
FFMpegAVFrameColorRangeRestricted,
|
|
FFMpegAVFrameColorRangeFull
|
|
};
|
|
|
|
@interface FFMpegAVFrame : NSObject
|
|
|
|
@property (nonatomic, readonly) int32_t width;
|
|
@property (nonatomic, readonly) int32_t height;
|
|
@property (nonatomic, readonly) uint8_t **data;
|
|
@property (nonatomic, readonly) int *lineSize;
|
|
@property (nonatomic, readonly) int64_t pts;
|
|
@property (nonatomic, readonly) FFMpegAVFrameColorRange colorRange;
|
|
|
|
- (instancetype)init;
|
|
|
|
- (void *)impl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|