diff options
Diffstat (limited to 'Ryujinx.Audio/Common')
-rw-r--r-- | Ryujinx.Audio/Common/AudioBuffer.cs | 16 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/AudioDeviceSession.cs | 16 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/AudioDeviceState.cs | 17 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/AudioInputConfiguration.cs | 17 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/AudioOutputConfiguration.cs | 17 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/AudioUserBuffer.cs | 17 | ||||
-rw-r--r-- | Ryujinx.Audio/Common/SampleFormat.cs | 17 |
7 files changed, 0 insertions, 117 deletions
diff --git a/Ryujinx.Audio/Common/AudioBuffer.cs b/Ryujinx.Audio/Common/AudioBuffer.cs index 853896d5..87a7d5f3 100644 --- a/Ryujinx.Audio/Common/AudioBuffer.cs +++ b/Ryujinx.Audio/Common/AudioBuffer.cs @@ -1,19 +1,3 @@ -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - using Ryujinx.Audio.Integration; namespace Ryujinx.Audio.Common diff --git a/Ryujinx.Audio/Common/AudioDeviceSession.cs b/Ryujinx.Audio/Common/AudioDeviceSession.cs index 820e5103..32234076 100644 --- a/Ryujinx.Audio/Common/AudioDeviceSession.cs +++ b/Ryujinx.Audio/Common/AudioDeviceSession.cs @@ -1,19 +1,3 @@ -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - using Ryujinx.Audio.Integration; using Ryujinx.Common; using System; diff --git a/Ryujinx.Audio/Common/AudioDeviceState.cs b/Ryujinx.Audio/Common/AudioDeviceState.cs index 77604525..32745a2e 100644 --- a/Ryujinx.Audio/Common/AudioDeviceState.cs +++ b/Ryujinx.Audio/Common/AudioDeviceState.cs @@ -1,20 +1,3 @@ -// -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - namespace Ryujinx.Audio.Common { /// <summary> diff --git a/Ryujinx.Audio/Common/AudioInputConfiguration.cs b/Ryujinx.Audio/Common/AudioInputConfiguration.cs index 9aa86569..4da8e572 100644 --- a/Ryujinx.Audio/Common/AudioInputConfiguration.cs +++ b/Ryujinx.Audio/Common/AudioInputConfiguration.cs @@ -1,20 +1,3 @@ -// -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - using System.Runtime.InteropServices; namespace Ryujinx.Audio.Common diff --git a/Ryujinx.Audio/Common/AudioOutputConfiguration.cs b/Ryujinx.Audio/Common/AudioOutputConfiguration.cs index a493561f..594f1225 100644 --- a/Ryujinx.Audio/Common/AudioOutputConfiguration.cs +++ b/Ryujinx.Audio/Common/AudioOutputConfiguration.cs @@ -1,20 +1,3 @@ -// -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - using Ryujinx.Common.Memory; using System.Runtime.InteropServices; diff --git a/Ryujinx.Audio/Common/AudioUserBuffer.cs b/Ryujinx.Audio/Common/AudioUserBuffer.cs index a0614184..bb71165f 100644 --- a/Ryujinx.Audio/Common/AudioUserBuffer.cs +++ b/Ryujinx.Audio/Common/AudioUserBuffer.cs @@ -1,20 +1,3 @@ -// -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - using System.Runtime.InteropServices; namespace Ryujinx.Audio.Common diff --git a/Ryujinx.Audio/Common/SampleFormat.cs b/Ryujinx.Audio/Common/SampleFormat.cs index bb51bdd3..a266ab44 100644 --- a/Ryujinx.Audio/Common/SampleFormat.cs +++ b/Ryujinx.Audio/Common/SampleFormat.cs @@ -1,20 +1,3 @@ -// -// 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with this program. If not, see <https://www.gnu.org/licenses/>. -// - namespace Ryujinx.Audio.Common { /// <summary> |