aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs
blob: 95b0e4e5e4f5d8f6236f3f24d7e8303c2b0f5cae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Ryujinx.Audio.Common;
using Ryujinx.Memory;
using System;
using System.Threading;

namespace Ryujinx.Audio.Integration
{
    /// <summary>
    /// Represent an hardware device driver used in <see cref="Output.AudioOutputSystem"/>.
    /// </summary>
    public interface IHardwareDeviceDriver : IDisposable
    {
        public enum Direction
        {
            Input,
            Output,
        }

        float Volume { get; set; }

        IHardwareDeviceSession OpenDeviceSession(Direction direction, IVirtualMemoryManager memoryManager, SampleFormat sampleFormat, uint sampleRate, uint channelCount);

        ManualResetEvent GetUpdateRequiredEvent();
        ManualResetEvent GetPauseEvent();

        bool SupportsDirection(Direction direction);
        bool SupportsSampleRate(uint sampleRate);
        bool SupportsSampleFormat(SampleFormat sampleFormat);
        bool SupportsChannelCount(uint channelCount);

        static abstract bool IsSupported { get; }

        IHardwareDeviceDriver GetRealDeviceDriver()
        {
            return this;
        }
    }
}