audio_decoder.h

来自「TI workshop 培训资料。 是关于如何创建DAVINCI平台下codec」· C头文件 代码 · 共 23 行

H
23
字号
/* * audio_decoder.h *//* Note: this file MUST be preceded by the following header file includes: *///#include <xdc/std.h>//#include <ti/sdo/ce/Engine.h>//#include <ti/sdo/ce/audio/auddec.h>/* Success and failure definitions for audio decoder functions */#define ADEC_SUCCESS 0#define ADEC_FAILURE -1/* Function prototypes */int audio_decoder_setup(Engine_Handle engineHandle, char *decoderName, 		      AUDDEC_Handle *decoderHandleByRef);int decode_audio(AUDDEC_Handle decoderHandle, char *inputBuffer,		      int inputSize, char *outputBuffer, int outputSize);int audio_decoder_cleanup(AUDDEC_Handle decoderHandle);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?