gpt4 book ai didi

c++ - QAudioOutput 代码是否存在内存泄漏?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:52:38 25 4
gpt4 key购买 nike

我正在像这样在 QThread 中播放音频流:

// Setup
QAudioFormat format;
format.setFrequency(44100);
format.setChannels(2);
format.setSampleSize(16);
format.setCodec("audio/pcm");
format.setByteOrder(QAudioFormat::LittleEndian);
format.setSampleType(QAudioFormat::SignedInt);
QAudioDeviceInfo info(QAudioDeviceInfo::defaultOutputDevice());
format = info.nearestFormat(format);
this->m_AudioOutput = new QAudioOutput(format, this);
DECLARE_ALIGNED(16,uint8_t,audio_buffer)[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2];

// Playback
QIODevice *iodevice = this->m_AudioOutput->start();
for(;;) {
// Routine that fetches audio data from network
// data_size is length of the buffer
fetch_packet(&audio_buffer, data_size);

qint64 dataRemaining = data_size;
const char *b2 = (const char *)audio_buffer;
while (dataRemaining) {
qint64 bytesWritten = iodevice->write((const char *)b2, dataRemaining);
dataRemaining -= bytesWritten;
b2 = b2 + bytesWritten ;
}

msleep(10);
}

音频播放得很好,但应用程序的内存消耗似乎随着时间的推移而增加(大约每分钟 2MB)。我想知道我是否做错了什么。我想 QAudioOutput 应该负责在读取并用于播放后删除 QIODevice 的缓冲区?

最佳答案

我不这么认为,文档说:

开始播放音频流只需使用 QIODevice 调用 start() 即可。 QAudioOutput 然后将从 io 设备获取它需要的数据。

它只是读取数据。 QIODevice 应该管理缓冲区。可以肯定的是,您可以使用 QIODevice::size() 检查缓冲区的大小,看看它是否在增长。

关于c++ - QAudioOutput 代码是否存在内存泄漏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13995869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com