aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Renderer/Server
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Audio.Renderer/Server')
-rw-r--r--Ryujinx.Audio.Renderer/Server/AudioRenderSystem.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/AudioRendererManager.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/BehaviourContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/CommandBuffer.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/CommandGenerator.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/AuxiliaryBufferEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/BaseEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/BiquadFilterEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/BufferMixEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/DelayEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/EffectContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/Reverb3dEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/ReverbEffect.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Effect/UsageState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/ICommandProcessingTimeEstimator.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/MemoryPool/AddressInfo.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/MemoryPool/MemoryPoolState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/MemoryPool/PoolMapper.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Mix/MixContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Mix/MixState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/IPerformanceDetailEntry.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/IPerformanceEntry.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/IPerformanceHeader.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion2.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryAddresses.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion2.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceManager.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/RendererSystemContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Sink/BaseSink.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Sink/CircularBufferSink.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Sink/DeviceSink.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Sink/SinkContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Splitter/SplitterContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Splitter/SplitterDestination.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Splitter/SplitterState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/StateUpdater.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Types/AudioRendererExecutionMode.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Types/AudioRendererRenderingDevice.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Types/PlayState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerManager.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Voice/VoiceChannelResource.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Voice/VoiceContext.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Voice/VoiceState.cs2
-rw-r--r--Ryujinx.Audio.Renderer/Server/Voice/WaveBuffer.cs2
53 files changed, 53 insertions, 53 deletions
diff --git a/Ryujinx.Audio.Renderer/Server/AudioRenderSystem.cs b/Ryujinx.Audio.Renderer/Server/AudioRenderSystem.cs
index a5925284..9b87957a 100644
--- a/Ryujinx.Audio.Renderer/Server/AudioRenderSystem.cs
+++ b/Ryujinx.Audio.Renderer/Server/AudioRenderSystem.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/Server/AudioRendererManager.cs b/Ryujinx.Audio.Renderer/Server/AudioRendererManager.cs
index 3df0ab31..f552935b 100644
--- a/Ryujinx.Audio.Renderer/Server/AudioRendererManager.cs
+++ b/Ryujinx.Audio.Renderer/Server/AudioRendererManager.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/Server/BehaviourContext.cs b/Ryujinx.Audio.Renderer/Server/BehaviourContext.cs
index 8a3e1aa9..28bcdac5 100644
--- a/Ryujinx.Audio.Renderer/Server/BehaviourContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/BehaviourContext.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/Server/CommandBuffer.cs b/Ryujinx.Audio.Renderer/Server/CommandBuffer.cs
index c5e6d10a..ca37e090 100644
--- a/Ryujinx.Audio.Renderer/Server/CommandBuffer.cs
+++ b/Ryujinx.Audio.Renderer/Server/CommandBuffer.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/Server/CommandGenerator.cs b/Ryujinx.Audio.Renderer/Server/CommandGenerator.cs
index 00fddefa..36c438fe 100644
--- a/Ryujinx.Audio.Renderer/Server/CommandGenerator.cs
+++ b/Ryujinx.Audio.Renderer/Server/CommandGenerator.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/Server/CommandProcessingTimeEstimatorVersion1.cs b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs
index 7afa88a4..81d3b57b 100644
--- a/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion1.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/Server/CommandProcessingTimeEstimatorVersion2.cs b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs
index 7f33b1bf..0f4fe3c2 100644
--- a/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs
+++ b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion2.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/Server/CommandProcessingTimeEstimatorVersion3.cs b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs
index 19a8174d..8e15d642 100644
--- a/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs
+++ b/Ryujinx.Audio.Renderer/Server/CommandProcessingTimeEstimatorVersion3.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/Server/Effect/AuxiliaryBufferEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/AuxiliaryBufferEffect.cs
index 02f47a4a..df82945b 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/AuxiliaryBufferEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/AuxiliaryBufferEffect.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/Server/Effect/BaseEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/BaseEffect.cs
index 55705f0a..7c491fd1 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/BaseEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/BaseEffect.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/Server/Effect/BiquadFilterEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/BiquadFilterEffect.cs
index 1e47d675..aadf2844 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/BiquadFilterEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/BiquadFilterEffect.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/Server/Effect/BufferMixEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/BufferMixEffect.cs
index 7f5b1629..14ed3950 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/BufferMixEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/BufferMixEffect.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/Server/Effect/DelayEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/DelayEffect.cs
index 9134e003..df3e5ee7 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/DelayEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/DelayEffect.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/Server/Effect/EffectContext.cs b/Ryujinx.Audio.Renderer/Server/Effect/EffectContext.cs
index d637592e..ff6051ae 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/EffectContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/EffectContext.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/Server/Effect/Reverb3dEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/Reverb3dEffect.cs
index b9db2294..d9f23799 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/Reverb3dEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/Reverb3dEffect.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/Server/Effect/ReverbEffect.cs b/Ryujinx.Audio.Renderer/Server/Effect/ReverbEffect.cs
index adc89798..4c81f729 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/ReverbEffect.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/ReverbEffect.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/Server/Effect/UsageState.cs b/Ryujinx.Audio.Renderer/Server/Effect/UsageState.cs
index afb7c1fc..a519acd4 100644
--- a/Ryujinx.Audio.Renderer/Server/Effect/UsageState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Effect/UsageState.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/Server/ICommandProcessingTimeEstimator.cs b/Ryujinx.Audio.Renderer/Server/ICommandProcessingTimeEstimator.cs
index f533f57b..119ec907 100644
--- a/Ryujinx.Audio.Renderer/Server/ICommandProcessingTimeEstimator.cs
+++ b/Ryujinx.Audio.Renderer/Server/ICommandProcessingTimeEstimator.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/Server/MemoryPool/AddressInfo.cs b/Ryujinx.Audio.Renderer/Server/MemoryPool/AddressInfo.cs
index d6c16174..2b625d06 100644
--- a/Ryujinx.Audio.Renderer/Server/MemoryPool/AddressInfo.cs
+++ b/Ryujinx.Audio.Renderer/Server/MemoryPool/AddressInfo.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/Server/MemoryPool/MemoryPoolState.cs b/Ryujinx.Audio.Renderer/Server/MemoryPool/MemoryPoolState.cs
index 2f5dbf08..ebde1403 100644
--- a/Ryujinx.Audio.Renderer/Server/MemoryPool/MemoryPoolState.cs
+++ b/Ryujinx.Audio.Renderer/Server/MemoryPool/MemoryPoolState.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/Server/MemoryPool/PoolMapper.cs b/Ryujinx.Audio.Renderer/Server/MemoryPool/PoolMapper.cs
index 1aafe04e..b255960c 100644
--- a/Ryujinx.Audio.Renderer/Server/MemoryPool/PoolMapper.cs
+++ b/Ryujinx.Audio.Renderer/Server/MemoryPool/PoolMapper.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/Server/Mix/MixContext.cs b/Ryujinx.Audio.Renderer/Server/Mix/MixContext.cs
index 46c244bb..5a3c3a63 100644
--- a/Ryujinx.Audio.Renderer/Server/Mix/MixContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/Mix/MixContext.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/Server/Mix/MixState.cs b/Ryujinx.Audio.Renderer/Server/Mix/MixState.cs
index ed4665f5..d697488a 100644
--- a/Ryujinx.Audio.Renderer/Server/Mix/MixState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Mix/MixState.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/Server/Performance/IPerformanceDetailEntry.cs b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceDetailEntry.cs
index d45b60eb..893cc008 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceDetailEntry.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceDetailEntry.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/Server/Performance/IPerformanceEntry.cs b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceEntry.cs
index 2b7b5405..2a2fa9cc 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceEntry.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceEntry.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/Server/Performance/IPerformanceHeader.cs b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceHeader.cs
index d5e6e9ae..5a26754d 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceHeader.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/IPerformanceHeader.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/Server/Performance/PerformanceDetailVersion1.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion1.cs
index 6f6e7e57..b7df7f28 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion1.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/Server/Performance/PerformanceDetailVersion2.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion2.cs
index edd371b5..da898b29 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion2.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceDetailVersion2.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/Server/Performance/PerformanceEntryAddresses.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryAddresses.cs
index e56ec559..ad99867f 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryAddresses.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryAddresses.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/Server/Performance/PerformanceEntryVersion1.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion1.cs
index 0dd50875..ac91ca19 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion1.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/Server/Performance/PerformanceEntryVersion2.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion2.cs
index 7ce1e324..84ee5bc9 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion2.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceEntryVersion2.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/Server/Performance/PerformanceFrameHeaderVersion1.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs
index f4df7b09..b0757b37 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion1.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/Server/Performance/PerformanceFrameHeaderVersion2.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs
index ae81fb99..ba873239 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceFrameHeaderVersion2.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/Server/Performance/PerformanceManager.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManager.cs
index 122f468c..3a336af3 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManager.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManager.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/Server/Performance/PerformanceManagerGeneric.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs
index f0d3dd5c..b17e6f3f 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.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/Server/RendererSystemContext.cs b/Ryujinx.Audio.Renderer/Server/RendererSystemContext.cs
index aa296d4f..a89a8a60 100644
--- a/Ryujinx.Audio.Renderer/Server/RendererSystemContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/RendererSystemContext.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/Server/Sink/BaseSink.cs b/Ryujinx.Audio.Renderer/Server/Sink/BaseSink.cs
index 0185f88a..949e3971 100644
--- a/Ryujinx.Audio.Renderer/Server/Sink/BaseSink.cs
+++ b/Ryujinx.Audio.Renderer/Server/Sink/BaseSink.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/Server/Sink/CircularBufferSink.cs b/Ryujinx.Audio.Renderer/Server/Sink/CircularBufferSink.cs
index 7b38d519..16d25a65 100644
--- a/Ryujinx.Audio.Renderer/Server/Sink/CircularBufferSink.cs
+++ b/Ryujinx.Audio.Renderer/Server/Sink/CircularBufferSink.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/Server/Sink/DeviceSink.cs b/Ryujinx.Audio.Renderer/Server/Sink/DeviceSink.cs
index b7ed32fa..79af05f7 100644
--- a/Ryujinx.Audio.Renderer/Server/Sink/DeviceSink.cs
+++ b/Ryujinx.Audio.Renderer/Server/Sink/DeviceSink.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/Server/Sink/SinkContext.cs b/Ryujinx.Audio.Renderer/Server/Sink/SinkContext.cs
index 136f7538..b57dbde9 100644
--- a/Ryujinx.Audio.Renderer/Server/Sink/SinkContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/Sink/SinkContext.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/Server/Splitter/SplitterContext.cs b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterContext.cs
index f5599acc..0e107a53 100644
--- a/Ryujinx.Audio.Renderer/Server/Splitter/SplitterContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterContext.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/Server/Splitter/SplitterDestination.cs b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterDestination.cs
index 5e07ba9d..6d273e45 100644
--- a/Ryujinx.Audio.Renderer/Server/Splitter/SplitterDestination.cs
+++ b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterDestination.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/Server/Splitter/SplitterState.cs b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterState.cs
index f86e75dd..c928ec53 100644
--- a/Ryujinx.Audio.Renderer/Server/Splitter/SplitterState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Splitter/SplitterState.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/Server/StateUpdater.cs b/Ryujinx.Audio.Renderer/Server/StateUpdater.cs
index 729a74b1..b26e2721 100644
--- a/Ryujinx.Audio.Renderer/Server/StateUpdater.cs
+++ b/Ryujinx.Audio.Renderer/Server/StateUpdater.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/Server/Types/AudioRendererExecutionMode.cs b/Ryujinx.Audio.Renderer/Server/Types/AudioRendererExecutionMode.cs
index 6a386bd4..7bb0507c 100644
--- a/Ryujinx.Audio.Renderer/Server/Types/AudioRendererExecutionMode.cs
+++ b/Ryujinx.Audio.Renderer/Server/Types/AudioRendererExecutionMode.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/Server/Types/AudioRendererRenderingDevice.cs b/Ryujinx.Audio.Renderer/Server/Types/AudioRendererRenderingDevice.cs
index c317ba94..f89086f6 100644
--- a/Ryujinx.Audio.Renderer/Server/Types/AudioRendererRenderingDevice.cs
+++ b/Ryujinx.Audio.Renderer/Server/Types/AudioRendererRenderingDevice.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/Server/Types/PlayState.cs b/Ryujinx.Audio.Renderer/Server/Types/PlayState.cs
index 4f224f75..7f8895c9 100644
--- a/Ryujinx.Audio.Renderer/Server/Types/PlayState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Types/PlayState.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/Server/Upsampler/UpsamplerManager.cs b/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerManager.cs
index 26218932..fd396d9f 100644
--- a/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerManager.cs
+++ b/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerManager.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/Server/Upsampler/UpsamplerState.cs b/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerState.cs
index 19ba7626..8ea55384 100644
--- a/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Upsampler/UpsamplerState.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/Server/Voice/VoiceChannelResource.cs b/Ryujinx.Audio.Renderer/Server/Voice/VoiceChannelResource.cs
index 6e6e7e76..00520cfc 100644
--- a/Ryujinx.Audio.Renderer/Server/Voice/VoiceChannelResource.cs
+++ b/Ryujinx.Audio.Renderer/Server/Voice/VoiceChannelResource.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/Server/Voice/VoiceContext.cs b/Ryujinx.Audio.Renderer/Server/Voice/VoiceContext.cs
index 694bf1ae..0dfaa4d5 100644
--- a/Ryujinx.Audio.Renderer/Server/Voice/VoiceContext.cs
+++ b/Ryujinx.Audio.Renderer/Server/Voice/VoiceContext.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/Server/Voice/VoiceState.cs b/Ryujinx.Audio.Renderer/Server/Voice/VoiceState.cs
index 94e39d0f..f30ee2f7 100644
--- a/Ryujinx.Audio.Renderer/Server/Voice/VoiceState.cs
+++ b/Ryujinx.Audio.Renderer/Server/Voice/VoiceState.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/Server/Voice/WaveBuffer.cs b/Ryujinx.Audio.Renderer/Server/Voice/WaveBuffer.cs
index e709639b..a03aa757 100644
--- a/Ryujinx.Audio.Renderer/Server/Voice/WaveBuffer.cs
+++ b/Ryujinx.Audio.Renderer/Server/Voice/WaveBuffer.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