尝试学习ALSA音频层,最终为Raspberry Pi平台编写ALSA设备驱动程序。从简单开始,我将来自ALSA项目站点和其他在线资源的各种样本粘在一起做最简单的事情:读取WAV文件并在默认声音设备上播放。我无法让这个简单的C样本工作。
我正在使用libsndfile来完成所有WAV文件读取/头部解码。我验证了我读入缓冲区的样本是正确的(验证了程序读取的第一个400K样本,对应于将样本值转储到文本文件的sndfile-to-text应用程序)。所以我知道我的缓冲区包含正确的数据,问题必须是我将其传递给ALSA API的方式。
运行时,它仅在正确的通道中产生声音,并且扭曲/泥泞 - 几乎无法识别。顺便说一句,“aplay”应用程序完美地播放相同的WAV文件并报告该文件是16位带符号LE,44100Hz,立体声,它与我的应用程序报告的内容相匹配。在Raspberry Pi上运行它。
我将C程序最小化到此处以节省空间,但我验证了所有API调用的正确返回码。为什么这个简单的ALSA应用程序没有产生正确的声音?
#include <alsa/asoundlib.h>
#include <stdio.h>
#include <sndfile.h>
#define PCM_DEVICE "default"
int main(int argc, char **argv) {
snd_pcm_t *pcm_handle;
snd_pcm_hw_params_t *params;
snd_pcm_uframes_t frames;
int dir, pcmrc;
char *infilename = "/home/pi/shortsample.wav";
int* buf = NULL;
int readcount;
SF_INFO sfinfo;
SNDFILE *infile = NULL;
infile = sf_open(infilename, SFM_READ, &sfinfo);
fprintf(stderr,"Channels: %d\n", sfinfo.channels);
fprintf(stderr,"Sample rate: %d\n", sfinfo.samplerate);
fprintf(stderr,"Sections: %d\n", sfinfo.sections);
fprintf(stderr,"Format: %d\n", sfinfo.format);
/* Open the PCM device in playback mode */
snd_pcm_open(&pcm_handle, PCM_DEVICE, SND_PCM_STREAM_PLAYBACK, 0);
/* Allocate parameters object and fill it with default values*/
snd_pcm_hw_params_alloca(¶ms);
snd_pcm_hw_params_any(pcm_handle, params);
/* Set parameters */
snd_pcm_hw_params_set_access(pcm_handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);
snd_pcm_hw_params_set_format(pcm_handle, params, SND_PCM_FORMAT_S16_LE);
snd_pcm_hw_params_set_channels(pcm_handle, params, sfinfo.channels);
snd_pcm_hw_params_set_rate(pcm_handle, params, sfinfo.samplerate, 0);
/* Write parameters */
snd_pcm_hw_params(pcm_handle, params);
/* Allocate buffer to hold single period */
snd_pcm_hw_params_get_period_size(params, &frames, &dir);
fprintf(stderr,"# frames in a period: %d\n", frames);
fprintf(stderr,"Starting read/write loop\n");
buf = malloc(frames * sfinfo.channels * sizeof(int));
while ((readcount = sf_readf_int(infile, buf, frames))>0) {
pcmrc = snd_pcm_writei(pcm_handle, buf, readcount);
if (pcmrc == -EPIPE) {
fprintf(stderr, "Underrun!\n");
snd_pcm_prepare(pcm_handle);
}
else if (pcmrc < 0) {
fprintf(stderr, "Error writing to PCM device: %s\n", snd_strerror(pcmrc));
}
else if (pcmrc != readcount) {
fprintf(stderr,"PCM write difffers from PCM read.\n");
}
}
fprintf(stderr,"End read/write loop\n");
snd_pcm_drain(pcm_handle);
snd_pcm_close(pcm_handle);
free(buf);
return 0;
}
答案 0 :(得分:4)
您必须检查可能失败的所有snd_
函数的返回值。
S16_LE
格式每个样本有两个字节,但int
有四个。
请改用short
和sf_readf_short
。