From 99ceb03a1cfcf35968cab589ea188a8c406cda52 Mon Sep 17 00:00:00 2001 From: Morph <39850852+Morph1984@users.noreply.github.com> Date: Sat, 23 Apr 2022 04:59:50 -0400 Subject: general: Convert source file copyright comments over to SPDX This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. --- src/audio_core/algorithm/filter.cpp | 5 ++--- src/audio_core/algorithm/filter.h | 5 ++--- src/audio_core/algorithm/interpolate.cpp | 5 ++--- src/audio_core/algorithm/interpolate.h | 5 ++--- src/audio_core/audio_out.cpp | 5 ++--- src/audio_core/audio_out.h | 5 ++--- src/audio_core/audio_renderer.cpp | 5 ++--- src/audio_core/audio_renderer.h | 5 ++--- src/audio_core/behavior_info.cpp | 5 ++--- src/audio_core/behavior_info.h | 5 ++--- src/audio_core/buffer.h | 5 ++--- src/audio_core/codec.cpp | 5 ++--- src/audio_core/codec.h | 5 ++--- src/audio_core/command_generator.cpp | 5 ++--- src/audio_core/command_generator.h | 5 ++--- src/audio_core/common.h | 5 ++--- src/audio_core/cubeb_sink.cpp | 5 ++--- src/audio_core/cubeb_sink.h | 5 ++--- src/audio_core/delay_line.cpp | 5 ++--- src/audio_core/delay_line.h | 5 ++--- src/audio_core/effect_context.cpp | 5 ++--- src/audio_core/effect_context.h | 5 ++--- src/audio_core/info_updater.cpp | 5 ++--- src/audio_core/info_updater.h | 5 ++--- src/audio_core/memory_pool.cpp | 5 ++--- src/audio_core/memory_pool.h | 5 ++--- src/audio_core/mix_context.cpp | 5 ++--- src/audio_core/mix_context.h | 5 ++--- src/audio_core/null_sink.h | 5 ++--- src/audio_core/sdl2_sink.cpp | 5 ++--- src/audio_core/sdl2_sink.h | 5 ++--- src/audio_core/sink.h | 5 ++--- src/audio_core/sink_context.cpp | 5 ++--- src/audio_core/sink_context.h | 5 ++--- src/audio_core/sink_details.cpp | 5 ++--- src/audio_core/sink_details.h | 5 ++--- src/audio_core/sink_stream.h | 5 ++--- src/audio_core/splitter_context.cpp | 5 ++--- src/audio_core/splitter_context.h | 5 ++--- src/audio_core/stream.cpp | 5 ++--- src/audio_core/stream.h | 5 ++--- src/audio_core/voice_context.cpp | 5 ++--- src/audio_core/voice_context.h | 5 ++--- 43 files changed, 86 insertions(+), 129 deletions(-) (limited to 'src/audio_core') diff --git a/src/audio_core/algorithm/filter.cpp b/src/audio_core/algorithm/filter.cpp index 01b8dff6b..96e37991f 100644 --- a/src/audio_core/algorithm/filter.cpp +++ b/src/audio_core/algorithm/filter.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #define _USE_MATH_DEFINES diff --git a/src/audio_core/algorithm/filter.h b/src/audio_core/algorithm/filter.h index a291fe79b..2586f0079 100644 --- a/src/audio_core/algorithm/filter.h +++ b/src/audio_core/algorithm/filter.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/algorithm/interpolate.cpp b/src/audio_core/algorithm/interpolate.cpp index 3b4144e21..d2a4cd53f 100644 --- a/src/audio_core/algorithm/interpolate.cpp +++ b/src/audio_core/algorithm/interpolate.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #define _USE_MATH_DEFINES diff --git a/src/audio_core/algorithm/interpolate.h b/src/audio_core/algorithm/interpolate.h index d534077af..5e59f4d70 100644 --- a/src/audio_core/algorithm/interpolate.h +++ b/src/audio_core/algorithm/interpolate.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/audio_out.cpp b/src/audio_core/audio_out.cpp index 44a899d08..83ec0221f 100644 --- a/src/audio_core/audio_out.cpp +++ b/src/audio_core/audio_out.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include "audio_core/audio_out.h" #include "audio_core/sink.h" diff --git a/src/audio_core/audio_out.h b/src/audio_core/audio_out.h index 6ce08cd0d..6856373f1 100644 --- a/src/audio_core/audio_out.h +++ b/src/audio_core/audio_out.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/audio_renderer.cpp b/src/audio_core/audio_renderer.cpp index 7dba739b4..e40ab16d2 100644 --- a/src/audio_core/audio_renderer.cpp +++ b/src/audio_core/audio_renderer.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h index 88fdd13dd..1f9f55ae2 100644 --- a/src/audio_core/audio_renderer.h +++ b/src/audio_core/audio_renderer.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/behavior_info.cpp b/src/audio_core/behavior_info.cpp index 3c2e3e6f1..ea7e45617 100644 --- a/src/audio_core/behavior_info.cpp +++ b/src/audio_core/behavior_info.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include "audio_core/behavior_info.h" diff --git a/src/audio_core/behavior_info.h b/src/audio_core/behavior_info.h index 5a96bf75e..b8c3159b9 100644 --- a/src/audio_core/behavior_info.h +++ b/src/audio_core/behavior_info.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/buffer.h b/src/audio_core/buffer.h index ccc46ef82..ac001629f 100644 --- a/src/audio_core/buffer.h +++ b/src/audio_core/buffer.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/codec.cpp b/src/audio_core/codec.cpp index 2fb91c13a..868b7a173 100644 --- a/src/audio_core/codec.cpp +++ b/src/audio_core/codec.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include diff --git a/src/audio_core/codec.h b/src/audio_core/codec.h index 9507abb1b..5a058b368 100644 --- a/src/audio_core/codec.h +++ b/src/audio_core/codec.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/command_generator.cpp b/src/audio_core/command_generator.cpp index 830af46ad..ae4efafb6 100644 --- a/src/audio_core/command_generator.cpp +++ b/src/audio_core/command_generator.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/command_generator.h b/src/audio_core/command_generator.h index 59a33ba76..8077e7768 100644 --- a/src/audio_core/command_generator.h +++ b/src/audio_core/command_generator.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/common.h b/src/audio_core/common.h index e6b95769f..46ef83113 100644 --- a/src/audio_core/common.h +++ b/src/audio_core/common.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/cubeb_sink.cpp b/src/audio_core/cubeb_sink.cpp index 13de3087c..e48c1ee8e 100644 --- a/src/audio_core/cubeb_sink.cpp +++ b/src/audio_core/cubeb_sink.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/cubeb_sink.h b/src/audio_core/cubeb_sink.h index 7ce850f47..c124b7ee8 100644 --- a/src/audio_core/cubeb_sink.h +++ b/src/audio_core/cubeb_sink.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/delay_line.cpp b/src/audio_core/delay_line.cpp index 2793ed8db..b1626a71b 100644 --- a/src/audio_core/delay_line.cpp +++ b/src/audio_core/delay_line.cpp @@ -1,6 +1,5 @@ -// Copyright 2021 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include "audio_core/delay_line.h" diff --git a/src/audio_core/delay_line.h b/src/audio_core/delay_line.h index 84f11bc52..05fda536f 100644 --- a/src/audio_core/delay_line.h +++ b/src/audio_core/delay_line.h @@ -1,6 +1,5 @@ -// Copyright 2021 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/effect_context.cpp b/src/audio_core/effect_context.cpp index 89e4573c7..51059580e 100644 --- a/src/audio_core/effect_context.cpp +++ b/src/audio_core/effect_context.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include "audio_core/effect_context.h" diff --git a/src/audio_core/effect_context.h b/src/audio_core/effect_context.h index 5e0655dd7..cb47df472 100644 --- a/src/audio_core/effect_context.h +++ b/src/audio_core/effect_context.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/info_updater.cpp b/src/audio_core/info_updater.cpp index 9b4ca1851..313a2eb6d 100644 --- a/src/audio_core/info_updater.cpp +++ b/src/audio_core/info_updater.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include "audio_core/behavior_info.h" #include "audio_core/effect_context.h" diff --git a/src/audio_core/info_updater.h b/src/audio_core/info_updater.h index d315c91ed..6aab5beaf 100644 --- a/src/audio_core/info_updater.h +++ b/src/audio_core/info_updater.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/memory_pool.cpp b/src/audio_core/memory_pool.cpp index 6b6908d26..627e5f15e 100644 --- a/src/audio_core/memory_pool.cpp +++ b/src/audio_core/memory_pool.cpp @@ -1,7 +1,6 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include "audio_core/memory_pool.h" #include "common/logging/log.h" diff --git a/src/audio_core/memory_pool.h b/src/audio_core/memory_pool.h index 3e9e777ae..e71bc025b 100644 --- a/src/audio_core/memory_pool.h +++ b/src/audio_core/memory_pool.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/mix_context.cpp b/src/audio_core/mix_context.cpp index 057aab5ad..bcaa7afab 100644 --- a/src/audio_core/mix_context.cpp +++ b/src/audio_core/mix_context.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include diff --git a/src/audio_core/mix_context.h b/src/audio_core/mix_context.h index 68bc673c6..3939c77e9 100644 --- a/src/audio_core/mix_context.h +++ b/src/audio_core/mix_context.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/null_sink.h b/src/audio_core/null_sink.h index 61a28d542..37b2f7eff 100644 --- a/src/audio_core/null_sink.h +++ b/src/audio_core/null_sink.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/sdl2_sink.cpp b/src/audio_core/sdl2_sink.cpp index 2d14ce2cb..a10ba4044 100644 --- a/src/audio_core/sdl2_sink.cpp +++ b/src/audio_core/sdl2_sink.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/sdl2_sink.h b/src/audio_core/sdl2_sink.h index 8ec1526d8..f1dd1d677 100644 --- a/src/audio_core/sdl2_sink.h +++ b/src/audio_core/sdl2_sink.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/sink.h b/src/audio_core/sink.h index 95c7b2b6e..3c03554fa 100644 --- a/src/audio_core/sink.h +++ b/src/audio_core/sink.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/sink_context.cpp b/src/audio_core/sink_context.cpp index cc55b290c..835e12f67 100644 --- a/src/audio_core/sink_context.cpp +++ b/src/audio_core/sink_context.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include "audio_core/sink_context.h" diff --git a/src/audio_core/sink_context.h b/src/audio_core/sink_context.h index 254961fe2..cc5a90d80 100644 --- a/src/audio_core/sink_context.h +++ b/src/audio_core/sink_context.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/sink_details.cpp b/src/audio_core/sink_details.cpp index de10aecd2..c4cc66111 100644 --- a/src/audio_core/sink_details.cpp +++ b/src/audio_core/sink_details.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/sink_details.h b/src/audio_core/sink_details.h index bc8786270..042766358 100644 --- a/src/audio_core/sink_details.h +++ b/src/audio_core/sink_details.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/sink_stream.h b/src/audio_core/sink_stream.h index 4309ad094..0449b90af 100644 --- a/src/audio_core/sink_stream.h +++ b/src/audio_core/sink_stream.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/splitter_context.cpp b/src/audio_core/splitter_context.cpp index f4bcd0391..1751d0212 100644 --- a/src/audio_core/splitter_context.cpp +++ b/src/audio_core/splitter_context.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include "audio_core/behavior_info.h" #include "audio_core/splitter_context.h" diff --git a/src/audio_core/splitter_context.h b/src/audio_core/splitter_context.h index b490627f5..3a4b055eb 100644 --- a/src/audio_core/splitter_context.h +++ b/src/audio_core/splitter_context.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/stream.cpp b/src/audio_core/stream.cpp index 0abc989b2..f8034b04b 100644 --- a/src/audio_core/stream.cpp +++ b/src/audio_core/stream.cpp @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/src/audio_core/stream.h b/src/audio_core/stream.h index dbd97ec9c..f5de70396 100644 --- a/src/audio_core/stream.h +++ b/src/audio_core/stream.h @@ -1,6 +1,5 @@ -// Copyright 2018 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/audio_core/voice_context.cpp b/src/audio_core/voice_context.cpp index 75012a887..c8e4a6caf 100644 --- a/src/audio_core/voice_context.cpp +++ b/src/audio_core/voice_context.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include diff --git a/src/audio_core/voice_context.h b/src/audio_core/voice_context.h index e1050897b..259220dc7 100644 --- a/src/audio_core/voice_context.h +++ b/src/audio_core/voice_context.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once -- cgit v1.2.3