1234567891011121314151617181920212223 |
- //
- // H265HWDecoder.h
- // VclustersGemini
- //
- // Created by xd h on 2021/3/17.
- // Copyright © 2021 APPLE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RCH265HWDecoder : NSObject
- - (void *)decodeH265Frame:(uint8_t *)frame withSize:(uint32_t)frameSize;
- - (void)resetH265DecoderWithFrame;
- - (void)selfDealloc;
- @end
- NS_ASSUME_NONNULL_END
|