using Ryujinx.Audio.Integration; namespace Ryujinx.Audio.Common { /// /// Represent an audio buffer that will be used by an . /// public class AudioBuffer { /// /// Unique tag of this buffer. /// /// Unique per session public ulong BufferTag; /// /// Pointer to the user samples. /// public ulong DataPointer; /// /// Size of the user samples region. /// public ulong DataSize; /// /// The timestamp at which the buffer was played. /// /// Not used but useful for debugging public ulong PlayedTimestamp; /// /// The user samples. /// public byte[] Data; } }