CI130X SDK API手册  2.2.0
本手册用于描述CI130X SDK各个组件和驱动API
adpcmdec.h
浏览该文件的文档.
1 
10 #ifndef _ADPCMDEC_H_
11 #define _ADPCMDEC_H_
12 
13 
14 void de_codeadpcm_mono_to_stereo(char* src,unsigned int size,short* dst);
15 void de_codeadpcm_mono_to_mono(char* src,unsigned int size,short* dst);
16 
17 #endif /* _ADPCMDEC_H_ */
void de_codeadpcm_mono_to_mono(char *src, unsigned int size, short *dst)
adpcm解码算法
Definition: adpcmdec.c:53
void de_codeadpcm_mono_to_stereo(char *src, unsigned int size, short *dst)
adpcm解码算法
Definition: adpcmdec.c:24