diff --git a/BizHawk.Client.EmuHawk/AVOut/NutMuxer.cs b/BizHawk.Client.EmuHawk/AVOut/NutMuxer.cs index a055792803..d04ab43e29 100644 --- a/BizHawk.Client.EmuHawk/AVOut/NutMuxer.cs +++ b/BizHawk.Client.EmuHawk/AVOut/NutMuxer.cs @@ -20,24 +20,28 @@ namespace BizHawk.Client.EmuHawk public class ReusableBufferPool { private List _available = new List(); - private List _inuse = new List(); + private ICollection _inuse = new HashSet(); - private readonly int maxstored; + private readonly int _capacity; - public ReusableBufferPool(int maxstored) + /// + /// + /// + /// total number of buffers to keep around + public ReusableBufferPool(int capacity) { - this.maxstored = maxstored; + _capacity = capacity; } private T[] GetBufferInternal(int length, bool zerofill, Func criteria) { - if (_inuse.Count == maxstored) + if (_inuse.Count == _capacity) throw new InvalidOperationException(); T[] candidate = _available.FirstOrDefault(criteria); if (candidate == null) { - if (_available.Count + _inuse.Count == maxstored) + if (_available.Count + _inuse.Count == _capacity) { // out of space! should not happen often Console.WriteLine("Purging"); @@ -67,9 +71,8 @@ namespace BizHawk.Client.EmuHawk public void ReleaseBuffer(T[] buffer) { - if (!_inuse.Contains(buffer)) + if (!_inuse.Remove(buffer)) throw new ArgumentException(); - _inuse.Remove(buffer); _available.Add(buffer); } }