Correction to previous AVI recording commit: buffer doesn't need to be so large.
This commit is contained in:
parent
33d42152a8
commit
231795c2cb
|
@ -3142,8 +3142,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
else
|
||||
{
|
||||
_currentSoundProvider.SetSyncMode(SyncSoundMode.Sync);
|
||||
double msPerFrame = 1000.0 * Emulator.CoreComm.VsyncDen / Emulator.CoreComm.VsyncNum;
|
||||
_aviSoundInputAsync = new SyncToAsyncProvider(_currentSoundProvider, msPerFrame + 10.0);
|
||||
_aviSoundInputAsync = new SyncToAsyncProvider(_currentSoundProvider, 10.0);
|
||||
}
|
||||
}
|
||||
_dumpProxy = new SimpleSyncSoundProvider();
|
||||
|
|
Loading…
Reference in New Issue