98c6ceede5
* Partial voice implementation on audio renderer * Implemented audren resampler (based on original impl) * Fix BiquadFilter struct * Pause audio playback on last stream buffer * Split audren/audout files into separate folders, some minor cleanup * Use AudioRendererParameter on GetWorkBufferSize aswell * Bump audren version to REV4, name a few things, increase sample buffer size * Remove useless new lines
10 lines
No EOL
182 B
C#
10 lines
No EOL
182 B
C#
namespace Ryujinx.Audio.Adpcm
|
|
{
|
|
public class AdpcmDecoderContext
|
|
{
|
|
public short[] Coefficients;
|
|
|
|
public short History0;
|
|
public short History1;
|
|
}
|
|
} |