diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-07-14 23:57:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-14 23:57:41 -0300 |
| commit | 98c6ceede564eda4aed528e51219a9b0d6bea1c4 (patch) | |
| tree | 2fabe99e761098b6cafb49fb0ab4e90f6f9ef106 /Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs | |
| parent | be31f5b46d16f0f8730d9a9ec71f938eee97524a (diff) | |
Audio Renderer improvements (#210)
* 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
Diffstat (limited to 'Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs')
| -rw-r--r-- | Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs b/Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs new file mode 100644 index 00000000..91730333 --- /dev/null +++ b/Ryujinx.Audio/Adpcm/AdpcmDecoderContext.cs @@ -0,0 +1,10 @@ +namespace Ryujinx.Audio.Adpcm +{ + public class AdpcmDecoderContext + { + public short[] Coefficients; + + public short History0; + public short History1; + } +}
\ No newline at end of file |
