hi_adec.h

来自「嵌入式linux系统下hi3510平台的osd开发源码」· C头文件 代码 · 共 105 行

H
105
字号
/******************************************************************************  Copyright (C), 2001-2011, Hisilicon Tech. Co., Ltd. ******************************************************************************  File Name       	: 	hi_adec.h  Version        		: 	Initial Draft  Author         		: 	Hisilicon multimedia software group  Created       		: 	2006/01/10  Last Modified		  :  Description  		  :   Function List 		:  History       		:  1.Date        		: 	2006/01/10    Author      		: 	F47391    Modification   	:	Created file******************************************************************************/#ifndef  __HI_ADEC_H__#define  __HI_ADEC_H__#include <hi_common.h>#include <hi_struct.h>#ifdef __cplusplus#if __cplusplusextern "C"{#endif#endif /* End of #ifdef __cplusplus *//* Set the attribute of audio output channel */HI_S32 HI_ADEC_SetAOAttr(AO_CHN ChanID, AUDIO_CH_ATTR_S *pAoAttr);/* Get the attribute of audio output channel */HI_S32 HI_ADEC_GetAOAttr(AO_CHN ChanID, AUDIO_CH_ATTR_S *pAoAttr);/* Set the attribute of audio decoder channel */HI_S32 HI_ADEC_SetCHAttr(ADEC_CHN ChanID, ADEC_CH_ATTR_S *pAdecattr);/* Get the attribute of audio decoder channel */HI_S32 HI_ADEC_GetCHAttr(ADEC_CHN ChanID, ADEC_CH_ATTR_S *pAdecattr);/* Open the audio decoder */HI_S32  HI_ADEC_Open(void);/* Close the audio decoder */HI_S32  HI_ADEC_Close(void);/* Create one audio decoder channel */HI_S32 HI_ADEC_CreateCH(AO_CHN ChanID,                         AUDIO_CODEC_FORMAT_E enType,                        HI_BOOL bFlag,                        ADEC_CHN *pAdecChn);/*** The exptend interface for audio decoder channel create.** More attribute can setted than HI_ADEC_CreateCH interface.*/HI_S32 HI_ADEC_CreateCHEx(AO_CHN ChanID, AUDIO_CODEC_FORMAT_E enType,                           HI_VOID *pConfig, ADEC_CHN *pAdecChn);/* Destroy the audio decoder channel */HI_S32 HI_ADEC_DestroyCH(ADEC_CHN ChanID, HI_BOOL bFlag);/* Start the audio decoder channel */HI_S32 HI_ADEC_StartCH (ADEC_CHN ChanID, HI_S32 s32Priority);/* Stop the audio decoder channel */HI_S32 HI_ADEC_StopCH (ADEC_CHN ChanID);/*** Send the audio stream into the decoder, and audio data will be played.** The stream has four bytes head*/HI_S32 HI_ADEC_SendStream(ADEC_CHN ChanID, AENC_STREAM_S *pAencStream);/*** Send the audio stream into the decoder, and audio data will be played.** The stream has no four bytes head*/HI_S32 HI_ADEC_SendStreamEx(ADEC_CHN ChanID, AENC_STREAM_S *pAencStream);/*** Get the decoded audio data.** Attention: The buffer need the user application to prepare.*/HI_S32 HI_ADEC_GetStream(ADEC_CHN ChanID, AUDIO_RAWDATA_S *pRawData);/* Play the audio raw data. */HI_S32 HI_ADEC_SendRawData(AO_CHN ChanID, AUDIO_RAWDATA_S *pRawData);/* Get the length of one AMR frame */HI_S32 HI_ADEC_AmrGetFrameLength(AMR_PACKAGE_TYPE_E enType, HI_U8 byte);#ifdef __cplusplus#if __cplusplus}#endif#endif /* End of #ifdef __cplusplus */#endif/* End of #ifndef __HI_ADEC_H__*/

⌨️ 快捷键说明

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