mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-05-21 18:20:41 +00:00
18 lines
472 B
Objective-C
18 lines
472 B
Objective-C
// Sources/SubcodecObjC/include/SCVideoToolboxDecoder.h
|
|
#import <Foundation/Foundation.h>
|
|
#import "SCDecoding.h"
|
|
#import "SCDecodedFrame.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCVideoToolboxDecoder : NSObject <SCDecoding>
|
|
|
|
+ (nullable SCVideoToolboxDecoder *)createDecoderWithError:(NSError **)error;
|
|
|
|
- (nullable NSArray<SCDecodedFrame *> *)decodeStream:(NSData *)data
|
|
error:(NSError **)error;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|