mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-26 03:55:15 +00:00
10 lines
182 B
C#
10 lines
182 B
C#
|
namespace Ryujinx.Audio.Adpcm
|
||
|
{
|
||
|
public class AdpcmDecoderContext
|
||
|
{
|
||
|
public short[] Coefficients;
|
||
|
|
||
|
public short History0;
|
||
|
public short History1;
|
||
|
}
|
||
|
}
|