RCH265HWDecoder.h 392 B

1234567891011121314151617181920212223
  1. //
  2. // H265HWDecoder.h
  3. // VclustersGemini
  4. //
  5. // Created by xd h on 2021/3/17.
  6. // Copyright © 2021 APPLE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RCH265HWDecoder : NSObject
  11. - (void *)decodeH265Frame:(uint8_t *)frame withSize:(uint32_t)frameSize;
  12. - (void)resetH265DecoderWithFrame;
  13. - (void)selfDealloc;
  14. @end
  15. NS_ASSUME_NONNULL_END