RCH264HWDecoder.h 317 B

123456789101112131415161718
  1. //
  2. // H264HWDecoder.h
  3. //
  4. #import <Foundation/Foundation.h>
  5. @interface RCH264HWDecoder : NSObject
  6. /**
  7. * @brief 直接传入源数据以及数据大小即可 版本1.2.5
  8. *
  9. */
  10. - (void *)decodeH264Frame:(uint8_t *)frame withSize:(uint32_t)frameSize;
  11. - (void)resetH264DecoderWithFrame;
  12. - (void)selfDealloc;
  13. @end