/ src / Ryujinx.Audio.Backends.SDL2 / SDL2AudioBuffer.cs
SDL2AudioBuffer.cs
 1  namespace Ryujinx.Audio.Backends.SDL2
 2  {
 3      class SDL2AudioBuffer
 4      {
 5          public readonly ulong DriverIdentifier;
 6          public readonly ulong SampleCount;
 7          public ulong SamplePlayed;
 8  
 9          public SDL2AudioBuffer(ulong driverIdentifier, ulong sampleCount)
10          {
11              DriverIdentifier = driverIdentifier;
12              SampleCount = sampleCount;
13              SamplePlayed = 0;
14          }
15      }
16  }