Files
2026-04-07 09:58:54 +02:00

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