ALSA应用程序在Raspberry Pi上读取和播放WAV文件

尝试学习ALSA音频层,最终为Raspberry Pi平台编写ALSA设备驱动程序。 简单起见,我将来自ALSA项目网站和其他在线资源的各种样本粘在一起做最简单的事情:读取WAV文件并在默认声音设备上播放它。 我无法得到这个简单的C样本工作。

我正在使用libsndfile来执行所有WAV文件读取/头文件解码。 我验证了我读入缓冲区的样本是正确的(首先验证了程序读入sndfile-to-text应用程序的第一个400K样本,将样本值转储到文本文件中)。 所以我知道我的缓冲区包含正确的数据,问题必须以我将它传递给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: %dn", sfinfo.channels);
    fprintf(stderr,"Sample rate: %dn", sfinfo.samplerate);
    fprintf(stderr,"Sections: %dn", sfinfo.sections);
    fprintf(stderr,"Format: %dn", 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(&params);
    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: %dn", frames);

    fprintf(stderr,"Starting read/write loopn");
    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: %sn", snd_strerror(pcmrc));
        }
        else if (pcmrc != readcount) {
            fprintf(stderr,"PCM write difffers from PCM read.n");
        }

    }
    fprintf(stderr,"End read/write loopn");

    snd_pcm_drain(pcm_handle);
    snd_pcm_close(pcm_handle);
    free(buf);

    return 0;
}

你必须检查所有可能失败的snd_函数的返回值。

S16_LE格式每个采样有两个字节,但int有四个。 使用short而不是sf_readf_short

链接地址: http://www.djcxy.com/p/83031.html

上一篇: ALSA application to read and play a WAV file on Raspberry Pi

下一篇: NSUserDefault change notification handling in watchppExtension