Skip to content

Commit

Permalink
Add missing copyrights header on new audio files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolfering committed Jan 12, 2025
1 parent cbba1cf commit 2ab9440
Show file tree
Hide file tree
Showing 10 changed files with 180 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Source_Files/Sound/AudioPlayer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#include "AudioPlayer.h"
#include "OpenALManager.h"
#include <array>
Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/AudioPlayer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#ifndef __AUDIO_PLAYER_H
#define __AUDIO_PLAYER_H

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/MusicPlayer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#include "MusicPlayer.h"
#include "OpenALManager.h"

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/MusicPlayer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#ifndef __MUSIC_PLAYER_H
#define __MUSIC_PLAYER_H

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/OpenALManager.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#include "OpenALManager.h"
#include "Logging.h"

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/OpenALManager.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#ifndef __OPENAL_MANAGER_H
#define __OPENAL_MANAGER_H

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/SoundPlayer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#include "SoundPlayer.h"
#include "OpenALManager.h"
#include "SoundManager.h"
Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/SoundPlayer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#ifndef __SOUND_PLAYER_H
#define __SOUND_PLAYER_H

Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/StreamPlayer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#include "StreamPlayer.h"

StreamPlayer::StreamPlayer(CallBackStreamPlayer callback, int length, int rate, bool stereo, AudioFormat audioFormat)
Expand Down
18 changes: 18 additions & 0 deletions Source_Files/Sound/StreamPlayer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
Copyright (C) 2023 Benoit Hauquier and the "Aleph One" developers.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU 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 General Public License for more details.
This license is contained in the file "COPYING",
which is included with this source code; it is available online at
http://www.gnu.org/licenses/gpl.html
*/

#ifndef __STREAM_PLAYER_H
#define __STREAM_PLAYER_H

Expand Down

0 comments on commit 2ab9440

Please sign in to comment.