aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Renderer/Dsp
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Audio.Renderer/Dsp')
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/AdpcmHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/AudioProcessor.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/AuxiliaryBufferCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/BiquadFilterCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/CircularBufferSinkCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/ClearMixBufferCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/CommandList.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/CommandType.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/CopyMixBufferCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DataSourceVersion2Command.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DelayCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DepopForMixBuffersCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DepopPrepareCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DeviceSinkCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/ICommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/MixCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/MixRampCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/MixRampGroupedCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/PerformanceCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/Reverb3dCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/ReverbCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/UpsampleCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/VolumeCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Command/VolumeRampCommand.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/DataSourceHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Effect/DecayDelay.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Effect/DelayLine.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Effect/DelayLineReverb3d.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/Effect/IDelayLine.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/FixedPointHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/FloatingPointHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/PcmHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/ResamplerHelper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/AdpcmLoopContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/AuxiliaryBufferHeader.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/BiquadFilterState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/DelayState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/Reverb3dState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Dsp/State/ReverbState.cs2
43 files changed, 43 insertions, 43 deletions
diff --git a/Ryujinx.Audio.Renderer/Dsp/AdpcmHelper.cs b/Ryujinx.Audio.Renderer/Dsp/AdpcmHelper.cs
index e49c74d3..f9f0811d 100644
--- a/Ryujinx.Audio.Renderer/Dsp/AdpcmHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/AdpcmHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/AudioProcessor.cs b/Ryujinx.Audio.Renderer/Dsp/AudioProcessor.cs
index 674f20f9..d6cb497a 100644
--- a/Ryujinx.Audio.Renderer/Dsp/AudioProcessor.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/AudioProcessor.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs b/Ryujinx.Audio.Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
index df9ef086..daf75208 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/AuxiliaryBufferCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
index 46aff27e..5ff3a6b4 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/BiquadFilterCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/BiquadFilterCommand.cs
index d00d3371..580eb732 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/BiquadFilterCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/BiquadFilterCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/CircularBufferSinkCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/CircularBufferSinkCommand.cs
index 63719a75..509aff27 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/CircularBufferSinkCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/CircularBufferSinkCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/ClearMixBufferCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/ClearMixBufferCommand.cs
index 3ec725d1..ba9a0357 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/ClearMixBufferCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/ClearMixBufferCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/CommandList.cs b/Ryujinx.Audio.Renderer/Dsp/Command/CommandList.cs
index 4b80c93b..bcc2cd11 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/CommandList.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/CommandList.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/CommandType.cs b/Ryujinx.Audio.Renderer/Dsp/Command/CommandType.cs
index 6532cd15..8ff1c581 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/CommandType.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/CommandType.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/CopyMixBufferCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/CopyMixBufferCommand.cs
index 62b95215..2dc6f04b 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/CopyMixBufferCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/CopyMixBufferCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DataSourceVersion2Command.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DataSourceVersion2Command.cs
index e60a126f..469f6ca5 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DataSourceVersion2Command.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DataSourceVersion2Command.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DelayCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DelayCommand.cs
index 1bf844d8..54234a93 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DelayCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DelayCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DepopForMixBuffersCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
index 5a9806b6..c6feacfb 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DepopPrepareCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DepopPrepareCommand.cs
index 21ded53a..d09c380e 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DepopPrepareCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DepopPrepareCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DeviceSinkCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DeviceSinkCommand.cs
index 111d2a4c..621e0269 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DeviceSinkCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DeviceSinkCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
index 7b790cdf..96138db2 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/ICommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/ICommand.cs
index 85a01123..e2f00ef6 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/ICommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/ICommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/MixCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/MixCommand.cs
index 87b296f6..566fea92 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/MixCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/MixCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/MixRampCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/MixRampCommand.cs
index 0397dee2..f34e50e4 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/MixRampCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/MixRampCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/MixRampGroupedCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/MixRampGroupedCommand.cs
index 700b906c..d45da1e3 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/MixRampGroupedCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/MixRampGroupedCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs b/Ryujinx.Audio.Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
index 49e6253d..d50c61fd 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs b/Ryujinx.Audio.Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
index 56f85a90..9decd431 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/PerformanceCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/PerformanceCommand.cs
index 199667e0..0cc35712 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/PerformanceCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/PerformanceCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/Reverb3dCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/Reverb3dCommand.cs
index abac831b..c1527758 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/Reverb3dCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/Reverb3dCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/ReverbCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/ReverbCommand.cs
index 3935234e..f0303ed1 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/ReverbCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/ReverbCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/UpsampleCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/UpsampleCommand.cs
index 0761a8da..3bfaa0f6 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/UpsampleCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/UpsampleCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/VolumeCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/VolumeCommand.cs
index 735a0a68..b58ae1f8 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/VolumeCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/VolumeCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Command/VolumeRampCommand.cs b/Ryujinx.Audio.Renderer/Dsp/Command/VolumeRampCommand.cs
index 98427a2c..d07926c8 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Command/VolumeRampCommand.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Command/VolumeRampCommand.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/DataSourceHelper.cs b/Ryujinx.Audio.Renderer/Dsp/DataSourceHelper.cs
index 6e270df4..bb583dd3 100644
--- a/Ryujinx.Audio.Renderer/Dsp/DataSourceHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/DataSourceHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Effect/DecayDelay.cs b/Ryujinx.Audio.Renderer/Dsp/Effect/DecayDelay.cs
index 6d885dbf..8a815c56 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Effect/DecayDelay.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Effect/DecayDelay.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLine.cs b/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLine.cs
index 3766390a..d178e699 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLine.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLine.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLineReverb3d.cs b/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLineReverb3d.cs
index acdfdb4f..a30dcc63 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLineReverb3d.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Effect/DelayLineReverb3d.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/Effect/IDelayLine.cs b/Ryujinx.Audio.Renderer/Dsp/Effect/IDelayLine.cs
index d44f5596..ac59445e 100644
--- a/Ryujinx.Audio.Renderer/Dsp/Effect/IDelayLine.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/Effect/IDelayLine.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/FixedPointHelper.cs b/Ryujinx.Audio.Renderer/Dsp/FixedPointHelper.cs
index 2983c4dc..0afd8926 100644
--- a/Ryujinx.Audio.Renderer/Dsp/FixedPointHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/FixedPointHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/FloatingPointHelper.cs b/Ryujinx.Audio.Renderer/Dsp/FloatingPointHelper.cs
index c3da9d4d..b143d8f9 100644
--- a/Ryujinx.Audio.Renderer/Dsp/FloatingPointHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/FloatingPointHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/PcmHelper.cs b/Ryujinx.Audio.Renderer/Dsp/PcmHelper.cs
index 395a2c1a..12c1d475 100644
--- a/Ryujinx.Audio.Renderer/Dsp/PcmHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/PcmHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/ResamplerHelper.cs b/Ryujinx.Audio.Renderer/Dsp/ResamplerHelper.cs
index 0d40bbe9..d40da412 100644
--- a/Ryujinx.Audio.Renderer/Dsp/ResamplerHelper.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/ResamplerHelper.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/AdpcmLoopContext.cs b/Ryujinx.Audio.Renderer/Dsp/State/AdpcmLoopContext.cs
index 0a218320..695b32d2 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/AdpcmLoopContext.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/AdpcmLoopContext.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/AuxiliaryBufferHeader.cs b/Ryujinx.Audio.Renderer/Dsp/State/AuxiliaryBufferHeader.cs
index 3923a490..3cf24302 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/AuxiliaryBufferHeader.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/AuxiliaryBufferHeader.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/BiquadFilterState.cs b/Ryujinx.Audio.Renderer/Dsp/State/BiquadFilterState.cs
index 01886b8f..9677333d 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/BiquadFilterState.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/BiquadFilterState.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/DelayState.cs b/Ryujinx.Audio.Renderer/Dsp/State/DelayState.cs
index c6275bef..7b694fb0 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/DelayState.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/DelayState.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/Reverb3dState.cs b/Ryujinx.Audio.Renderer/Dsp/State/Reverb3dState.cs
index 3b119b92..be0f9734 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/Reverb3dState.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/Reverb3dState.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
diff --git a/Ryujinx.Audio.Renderer/Dsp/State/ReverbState.cs b/Ryujinx.Audio.Renderer/Dsp/State/ReverbState.cs
index 31b03dd6..60d8e284 100644
--- a/Ryujinx.Audio.Renderer/Dsp/State/ReverbState.cs
+++ b/Ryujinx.Audio.Renderer/Dsp/State/ReverbState.cs
@@ -1,5 +1,5 @@
//
-// Copyright (c) 2019-2020 Ryujinx
+// Copyright (c) 2019-2021 Ryujinx
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by