Lines Matching refs:codec
32 extern void OnError(OH_AVCodec* codec, int32_t errorCode, void* userData);
33 extern void OnOutputFormatChanged(OH_AVCodec* codec, OH_AVFormat* format, void* userData);
34 extern void OnInputBufferAvailable(OH_AVCodec* codec, uint32_t index, OH_AVMemory* data, void* userData);
35 extern void OnOutputBufferAvailable(OH_AVCodec* codec, uint32_t index, OH_AVMemory* data,
72 OH_AVErrCode Destroy(OH_AVCodec* codec);
74 OH_AVErrCode SetCallback(OH_AVCodec* codec);
76 OH_AVErrCode Prepare(OH_AVCodec* codec);
78 OH_AVErrCode Start(OH_AVCodec* codec);
80 OH_AVErrCode Stop(OH_AVCodec* codec);
82 OH_AVErrCode Flush(OH_AVCodec* codec);
84 OH_AVErrCode Reset(OH_AVCodec* codec);
86 OH_AVFormat* GetOutputDescription(OH_AVCodec* codec);
88 OH_AVErrCode PushInputData(OH_AVCodec* codec, uint32_t index, int32_t size, int32_t offset);
90 OH_AVErrCode PushInputDataEOS(OH_AVCodec* codec, uint32_t index);
92 OH_AVErrCode FreeOutputData(OH_AVCodec* codec, uint32_t index);
94 OH_AVErrCode IsValid(OH_AVCodec* codec, bool* isValid);