gpt4 book ai didi

c++ - ALSA 在中断前占用 1024 个缓冲区

转载 作者:行者123 更新时间:2023-11-28 04:59:58 29 4
gpt4 key购买 nike

我正在努力使我的 ALSA 接口(interface)以尽可能低的延迟工作。关于所有帧/周期/缓冲区的 ALSA 文档非常困惑,所以我在这里问。

下面的代码强制 ALSA 实际读取缓冲区大小的 1024 倍(我将缓冲区大小设置为 1024 字节)。 writeAudio 函数在变慢之前需要 1024 * 1024 字节。 我想保留这个框架吗?计数尽可能低,这样我就可以在我的应用程序本身中跟踪播放时间。如果我尝试使用 snd_pcm_hw_params_set_periods 将周期大小设置为 2(我猜它会在 2 * 1024 字节写入缓冲区后减慢读取速度。)但是代码中的这种更改不会不改变行为;在缓冲速度减慢到从扬声器播放音频的速率之前,播放器仍然缓冲 1024 * 1024 字节。

TLDR; 1024 * 1024 字节缓冲大小对我来说太多了,如何降低它?下面是我的代码。是的,我正在使用单声道输出播放无符号 8 位。

int32_t ALSAPlayer::initPlayer(ALSAConfig cfg)
{
std::cout << "=== INITIALIZING ALSA ===" << std::endl;

if(!cfg.channels || !cfg.rate)
{
std::cout << "ERROR: player config was bad" << std::endl;
return -1;
}

m_channels = cfg.channels;

m_rate = cfg.rate;

m_frames = 1024;

uint32_t tmp;
uint32_t buff_size;

int dir = 0;

/* Open the PCM device in playback mode */
if ((pcm = snd_pcm_open(&pcm_handle, PCM_DEVICE, SND_PCM_STREAM_PLAYBACK, 0)) < 0)
{
printf("ERROR: Can't open \"%s\" PCM device. %s\n", PCM_DEVICE, snd_strerror(pcm));
}
snd_pcm_hw_params_alloca(&params);

snd_pcm_hw_params_any(pcm_handle, params);

if ((pcm = snd_pcm_hw_params_set_access(pcm_handle, params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0)
{
printf("ERROR: Can't set interleaved mode. %s\n", snd_strerror(pcm));
}

if ((pcm = snd_pcm_hw_params_set_format(pcm_handle, params, SND_PCM_FORMAT_S8)) < 0)
{
printf("ERROR: Can't set format. %s\n", snd_strerror(pcm));
}

if ((pcm = snd_pcm_hw_params_set_channels(pcm_handle, params, m_channels)) < 0)
{
printf("ERROR: Can't set channels number. %s\n", snd_strerror(pcm));
}

if ((pcm = snd_pcm_hw_params_set_rate_near(pcm_handle, params, &m_rate, &dir)) < 0)
{
printf("ERROR: Can't set rate. %s\n", snd_strerror(pcm));
}

// force the ALSA interface to use exactly *m_frames* number of frames

snd_pcm_hw_params_set_period_size(pcm_handle, params, m_frames, dir);

/* Write parameters */
if ((pcm = snd_pcm_hw_params(pcm_handle, params)) < 0)
{
printf("ERROR: Can't set harware parameters. %s\n", snd_strerror(pcm));
}

std::cout << "ALSA output device name: " << snd_pcm_name(pcm_handle) << std::endl;
std::cout << "ALSA output device state: " << snd_pcm_state_name(snd_pcm_state(pcm_handle)) << std::endl;

snd_pcm_hw_params_get_channels(params, &tmp);
std::cout << "ALSA output device channels: " << tmp << std::endl;

snd_pcm_hw_params_get_rate(params, &tmp, 0);
std::cout << "ALSA output device rate: " << tmp << std::endl;

snd_pcm_hw_params_get_period_size(params, &m_frames, &dir);

buff_size = m_frames * m_channels;

std::cout << "ALSA output device frames size: " << m_frames << std::endl;

std::cout << "ALSA output device buffer size: " << buff_size << "(should be 1024)" << std::endl;

return 0;
}

int ALSAPlayer::writeAudio(byte* buffer, uint32_t buffSize)
{
int pcmRetVal;
if(buffSize == 0)
{
snd_pcm_drain(pcm_handle);
snd_pcm_close(pcm_handle);
return -1;
}

if((pcmRetVal = snd_pcm_writei(pcm_handle, buffer, m_frames)) == -EPIPE)
{
snd_pcm_prepare(pcm_handle);
}
else if(pcm < 0)
{
std::cout << "ERROR: could not write to audio interface" << std::endl;
}
return 0;
}

最佳答案

(一帧不一定是一个字节,请不要混淆)

此代码不设置缓冲区大小。

snd_pcm_hw_params_set_periods() 设置周期数。
snd_pcm_hw_params_set_period_size() 将设置周期大小。

要有一个 2048 帧的缓冲区,其中有两个周期,每个周期有 1024 帧,请将周期数设置为 2,并将周期大小设置为 1024。

您必须检查所有函数调用是否有错误,包括 snd_pcm_hw_params_set_period_size()

关于c++ - ALSA 在中断前占用 1024 个缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46308015/

29 4 0
文章推荐: javascript - 在数据表中搜索括号
文章推荐: C++ 使用 "ieee-be"machinefmt 读取二进制文件
文章推荐: c++ - Signal readyRead() 不执行槽
文章推荐: javascript - 如何在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com