1
0
forked from MeloNX/MeloNX
MeloNX/src/LibRyujinx/Android/Audio/Oboe/OboeAudioBuffer.cs
2024-01-22 22:55:06 +00:00

19 lines
507 B
C#

namespace LibRyujinx.Shared.Audio.Oboe
{
internal class OboeAudioBuffer
{
public readonly ulong DriverIdentifier;
public readonly ulong SampleCount;
public readonly byte[] Data;
public ulong SamplePlayed;
public OboeAudioBuffer(ulong driverIdentifier, byte[] data, ulong sampleCount)
{
DriverIdentifier = driverIdentifier;
Data = data;
SampleCount = sampleCount;
SamplePlayed = 0;
}
}
}