123456789101112131415161718 |
- //
- // H264HWDecoder.h
- //
- #import <Foundation/Foundation.h>
- @interface RCH264HWDecoder : NSObject
- /**
- * @brief 直接传入源数据以及数据大小即可 版本1.2.5
- *
- */
- - (void *)decodeH264Frame:(uint8_t *)frame withSize:(uint32_t)frameSize;
- - (void)resetH264DecoderWithFrame;
- - (void)selfDealloc;
- @end
|