mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
16 lines
341 B
C#
16 lines
341 B
C#
|
namespace Ryujinx.Audio.Adpcm
|
||
|
{
|
||
|
public static class DspUtils
|
||
|
{
|
||
|
public static short Saturate(int Value)
|
||
|
{
|
||
|
if (Value > short.MaxValue)
|
||
|
Value = short.MaxValue;
|
||
|
|
||
|
if (Value < short.MinValue)
|
||
|
Value = short.MinValue;
|
||
|
|
||
|
return (short)Value;
|
||
|
}
|
||
|
}
|
||
|
}
|