- 本篇文件介绍 音频PCM数据的单声道、双声道之间的转换
下面介绍函数参数:
一、StereoToMono函数。
双声道转单声道
参数1:资源buffer(双声道数据)
参数2:资源buffer大小(双声道数据大小)
参数3:转换后buffer(单声道数据)
static short g_sSrcAudioBuf[640];
static short g_sDstAudioBuf[640];
//pdata:char * pdata(原始双声道音频数据)
//dlen:pdata数据长度
//单字节1280长度的数据pdata 转换为640双字节数据g_sSrcAudioBuf
memcpy(g_sSrcAudioBuf,pdata,dlen);
StereoToMono(g_sSrcAudioBuf,640,g_sDstAudioBuf)
//本地保存测试
fwrite(g_sSrcAudioBuf,2,