mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-30 09:50:26 +00:00
git-subtree-dir: submodules/ffmpeg git-subtree-mainline:8f5a4f7dc1git-subtree-split:53fc3dcb60
20 lines
401 B
Objective-C
20 lines
401 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@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;
|
|
|
|
- (instancetype)init;
|
|
|
|
- (void *)impl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|