Files
99_7018_lmx/cpu/br28/audio_effect_develop.h

46 lines
1.8 KiB
C
Raw Normal View History

2025-10-29 13:10:02 +08:00
/*************************************************************************************************/
/*!
* \file audio_effect_develop.h
*
* \brief
*
* Copyright (c) 2011-2023 ZhuHai Jieli Technology Co.,Ltd.
*
*/
/*************************************************************************************************/
#ifndef _AUDIO_EFFECT_DEVELOP_H_
#define _AUDIO_EFFECT_DEVELOP_H_
/*********************************************************************** 
 *  
 * Input    :  sample_rate  -  
               nch -  
bit_width - (16bit)
 * Output   :  
 * Notes    : 
 * History  : 
 *=====================================================================*/  
void *audio_effect_develop_open(int sample_rate, u8 nch, u8 bit_width);
/*********************************************************************** 
 *  
 * Input    :  priv -  
 * Output   :  
 * Notes    :  
 * History  : 
 *=====================================================================*/  
void audio_effect_develop_close(void *priv);
/*********************************************************************** 
 *  
 * Input    :  priv -  
               data - pcm数据 
               len  - pcm数据的byte长度 
 * Output   :   
 * Notes    : 
 * History  : 
 *=====================================================================*/  
int audio_effect_develop_data_handler(void *priv, void *data, int len);
#endif