gpt4 book ai didi

c# - CScore 输出大于一个字节的 PCM

转载 作者:行者123 更新时间:2023-11-30 16:05:09 25 4
gpt4 key购买 nike

我正在编写 C# 模拟器,并决定使用 CScore 输出 PCM。当样本大小(每个 channel )为一个字节时,声音输出正确,但当我将样本大小增加到 16 位时,声音非常嘈杂。

与该问题相关的一个问题是如何解释这 2 个字节(它们有符号吗?高字节在前?)

这大致就是我正在做的:

首先我这样生成样本

public void GenerateSamples(int sampleCount)
{
while(sampleCount > 0)
{
--sampleCount;

for(int c = 0; c < _numChannels; ++c)
{
_buffer[_sampleIndex++] = _outputValue;
}

// The amount of ticks in a sample
_tickCounter -= APU.MinimumTickThreshold;
if(_tickCounter < 0)
{
_tickCounter = _tickThreshold;
_up = !_up;
// Replicating signed behaviour
_outputValue = (short)(_up ? 32767 : -32768);
}
}
}

这将生成一个简单的方波,其频率由 _tickThreshold 确定。如果 _buffer 是一个字节数组,那么声音是正确的。我想用短裤输出它,因为它使我能够使用签名样本并简单地添加多个 channel 以混合它们。

这就是我输出声音的方式。

  for(int i = 0; i < sampleCount; ++i)
{
for(int c = 0; c < _numChannels; ++c)
{
short sample = _channel.Buffer[_channelSampleIndex++];
// Outputting the samples the other way around doesn't output
// sound for me
_buffer[_sampleIndex++] = (byte)sample;
_buffer[_sampleIndex++] = (byte)(sample >> 8);
}
}

我使用的 WaveFormat 是这样确定的:

  _waveFormat = new WaveFormat(_apu.SampleRate,      // 44000
_apu.SampleSize * 8, // 16
_apu.NumChannels); // 2

我很确定我遗漏了一些明显的东西,但我已经对此进行了一段时间的调试,但似乎没有查明问题出在哪里。

谢谢

最佳答案

耻辱走在这里。问题是我没有考虑到现在我需要生成一半的样本(CScore 要求的是字节数,而不是样本)。在我的示例中,我必须将 sampleCount 变量除以 sampleSize 才能生成正确的声音量。

噪音是因为我没有将额外的样本与来自 CScore 的下一个 Read 调用同步(我正在动态生成声音,而不是预先缓冲它。这样我就不会因为额外的样本而引入延迟).

我发现了这个问题:SampleToPcm16.cs

关于c# - CScore 输出大于一个字节的 PCM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34043392/

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