Sound cleanup. In case you're curious, the "SilenceLeaveRoomForFrameCount" part ended up not mattering (and may have been slightly counterproductive) once SoundOutputProvider had the ability to be notified of underruns. It doesn't matter for BufferedAsync either.
This commit is contained in:
parent
f2e9ca2ac9
commit
36daa01ad6
|
@ -129,11 +129,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
int cursorDelta = CircularDistance(_lastWriteCursor, writeCursor, BufferSizeBytes);
|
||||
cursorDelta += BufferSizeBytes * (int)Math.Round((elapsedSeconds - (cursorDelta / (double)(Sound.SampleRate * Sound.BlockAlign))) / bufferSizeSeconds);
|
||||
_filledBufferSizeBytes -= cursorDelta;
|
||||
if (_filledBufferSizeBytes < 0)
|
||||
{
|
||||
_sound.OnUnderrun();
|
||||
detectedUnderrun = true;
|
||||
}
|
||||
detectedUnderrun = _filledBufferSizeBytes < 0;
|
||||
}
|
||||
if (isInitializing || detectedUnderrun)
|
||||
{
|
||||
|
|
|
@ -56,7 +56,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (_remainingSamples < 0)
|
||||
{
|
||||
_remainingSamples = 0;
|
||||
_sound.OnUnderrun();
|
||||
detectedUnderrun = true;
|
||||
}
|
||||
_lastWriteTime = currentWriteTime;
|
||||
|
|
|
@ -81,7 +81,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
bool detectedUnderrun = sourceState == ALSourceState.Stopped;
|
||||
if (detectedUnderrun)
|
||||
{
|
||||
_sound.OnUnderrun();
|
||||
// SampleOffset should reset to 0 when stopped; update the queued sample count to match
|
||||
UnqueueProcessedBuffers();
|
||||
currentSamplesPlayed = 0;
|
||||
|
|
|
@ -102,10 +102,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
bool isInitializing = _runningSamplesQueued == 0;
|
||||
bool detectedUnderrun = !isInitializing && _sourceVoice.State.BuffersQueued == 0;
|
||||
if (detectedUnderrun)
|
||||
{
|
||||
_sound.OnUnderrun();
|
||||
}
|
||||
long samplesAwaitingPlayback = _runningSamplesQueued - _sourceVoice.State.SamplesPlayed;
|
||||
int samplesNeeded = (int)Math.Max(BufferSizeSamples - samplesAwaitingPlayback, 0);
|
||||
if (isInitializing || detectedUnderrun)
|
||||
|
|
|
@ -109,40 +109,21 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public bool LogUnderruns { get; set; }
|
||||
|
||||
private bool InitializeBufferWithSilence
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
private bool RecoverFromUnderrunsWithSilence
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
private int SilenceLeaveRoomForFrameCount
|
||||
{
|
||||
get { return Global.Config.SoundThrottle ? 1 : 2; } // Why 2? I don't know, but it seems to work well with the clock throttle's behavior.
|
||||
}
|
||||
|
||||
internal void HandleInitializationOrUnderrun(bool isUnderrun, ref int samplesNeeded)
|
||||
{
|
||||
if ((!isUnderrun && InitializeBufferWithSilence) || (isUnderrun && RecoverFromUnderrunsWithSilence))
|
||||
// Fill device buffer with silence but leave enough room for one frame
|
||||
int samplesPerFrame = (int)Math.Round(SampleRate / Global.Emulator.CoreComm.VsyncRate);
|
||||
int silenceSamples = Math.Max(samplesNeeded - samplesPerFrame, 0);
|
||||
_outputDevice.WriteSamples(new short[silenceSamples * 2], silenceSamples);
|
||||
samplesNeeded -= silenceSamples;
|
||||
|
||||
if (isUnderrun)
|
||||
{
|
||||
int samplesPerFrame = (int)Math.Round(SampleRate / Global.Emulator.CoreComm.VsyncRate);
|
||||
int silenceSamples = Math.Max(samplesNeeded - (SilenceLeaveRoomForFrameCount * samplesPerFrame), 0);
|
||||
_outputDevice.WriteSamples(new short[silenceSamples * 2], silenceSamples);
|
||||
samplesNeeded -= silenceSamples;
|
||||
if (LogUnderruns) Console.WriteLine("Sound underrun detected!");
|
||||
_outputProvider.OnVolatility();
|
||||
}
|
||||
}
|
||||
|
||||
internal void OnUnderrun()
|
||||
{
|
||||
if (!IsStarted) return;
|
||||
|
||||
if (LogUnderruns) Console.WriteLine("Sound underrun detected!");
|
||||
_outputProvider.OnVolatility();
|
||||
}
|
||||
|
||||
public void UpdateSound(float atten)
|
||||
{
|
||||
if (!Global.Config.SoundEnabled || !IsStarted || _bufferedProvider == null || _disposed)
|
||||
|
|
Loading…
Reference in New Issue