mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-25 15:37:36 +00:00
git-subtree-dir: submodules/ffmpeg git-subtree-mainline:8f5a4f7dc1git-subtree-split:53fc3dcb60
16 lines
462 B
Objective-C
16 lines
462 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
#define FFMPEG_AVSEEK_SIZE 0x10000
|
|
|
|
@interface FFMpegAVIOContext : NSObject
|
|
|
|
- (instancetype _Nullable)initWithBufferSize:(int32_t)bufferSize opaqueContext:(void * const)opaqueContext readPacket:(int (*)(void * _Nullable opaque, uint8_t * _Nullable buf, int buf_size))readPacket seek:(int64_t (*)(void * _Nullable opaque, int64_t offset, int whence))seek;
|
|
|
|
- (void *)impl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|