mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-25 07:27:44 +00:00
git-subtree-dir: submodules/ffmpeg git-subtree-mainline:8f5a4f7dc1git-subtree-split:53fc3dcb60
22 lines
521 B
Objective-C
22 lines
521 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class FFMpegAVCodecContext;
|
|
|
|
@interface FFMpegPacket : NSObject
|
|
|
|
@property (nonatomic, readonly) int64_t pts;
|
|
@property (nonatomic, readonly) int64_t dts;
|
|
@property (nonatomic, readonly) int64_t duration;
|
|
@property (nonatomic, readonly) int32_t streamIndex;
|
|
@property (nonatomic, readonly) int32_t size;
|
|
@property (nonatomic, readonly) uint8_t *data;
|
|
|
|
- (void *)impl;
|
|
- (int32_t)sendToDecoder:(FFMpegAVCodecContext *)codecContext;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|