aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs')
-rw-r--r--src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
new file mode 100644
index 00000000..845713a1
--- /dev/null
+++ b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
@@ -0,0 +1,67 @@
+using Ryujinx.Audio.Common;
+using Ryujinx.Audio.Integration;
+using Ryujinx.Memory;
+using System;
+
+namespace Ryujinx.Audio.Backends.Dummy
+{
+ class DummyHardwareDeviceSessionInput : IHardwareDeviceSession
+ {
+ private float _volume;
+ private IHardwareDeviceDriver _manager;
+ private IVirtualMemoryManager _memoryManager;
+
+ public DummyHardwareDeviceSessionInput(IHardwareDeviceDriver manager, IVirtualMemoryManager memoryManager, SampleFormat requestedSampleFormat, uint requestedSampleRate, uint requestedChannelCount)
+ {
+ _volume = 1.0f;
+ _manager = manager;
+ _memoryManager = memoryManager;
+ }
+
+ public void Dispose()
+ {
+ // Nothing to do.
+ }
+
+ public ulong GetPlayedSampleCount()
+ {
+ // Not implemented for input.
+ throw new NotSupportedException();
+ }
+
+ public float GetVolume()
+ {
+ return _volume;
+ }
+
+ public void PrepareToClose() { }
+
+ public void QueueBuffer(AudioBuffer buffer)
+ {
+ _memoryManager.Fill(buffer.DataPointer, buffer.DataSize, 0);
+
+ _manager.GetUpdateRequiredEvent().Set();
+ }
+
+ public bool RegisterBuffer(AudioBuffer buffer)
+ {
+ return buffer.DataPointer != 0;
+ }
+
+ public void SetVolume(float volume)
+ {
+ _volume = volume;
+ }
+
+ public void Start() { }
+
+ public void Stop() { }
+
+ public void UnregisterBuffer(AudioBuffer buffer) { }
+
+ public bool WasBufferFullyConsumed(AudioBuffer buffer)
+ {
+ return true;
+ }
+ }
+} \ No newline at end of file