Skip to content

Commit

Permalink
Merge pull request #31 from TheSlowGrowth/feature/TSG/licenses
Browse files Browse the repository at this point in the history
update licenses
  • Loading branch information
TheSlowGrowth authored Nov 28, 2021
2 parents ad7c58d + 6df22d6 commit ee8d8dc
Show file tree
Hide file tree
Showing 39 changed files with 650 additions and 4 deletions.
6 changes: 2 additions & 4 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
Copyright 2021 Johannes Elliesen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
All source code files for the firmware and plugin are licensed under the GPLv3 license according to the notes in each file unless otherwise specified.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
All hardware design files in the `hardware/` directory are licensed to you under the terms of the CC BY-NC-SA 4.0 license (https://creativecommons.org/licenses/by-nc-sa/4.0/).
17 changes: 17 additions & 0 deletions dsp/src/dsp/AudioBuffer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include <array>
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/Biquad.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <sprout/config.hpp>
#include <sprout/math/pow.hpp>
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/DspHelpers.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#ifndef MANUAL_INLINE
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/EmphasisEq.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <sprout/config.hpp>
#include <sprout/math/pow.hpp>
Expand Down
18 changes: 18 additions & 0 deletions dsp/src/dsp/PeakMeter.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <math.h>

template <int blockSize, int sampleRate>
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/Player.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include "DspHelpers.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/Recorder.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include "DspHelpers.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/TapeEq.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "Biquad.h"

Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/TapeGrain.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "DspHelpers.h"
#include "Biquad.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/TapeLooper.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include "DspHelpers.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/TapeProcessor.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include "DspHelpers.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/TapeSaturator.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

template <typename FloatType>
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/dsp/WowAndFlutter.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "DspHelpers.h"
#include <sprout/math/ceil.hpp>
Expand Down
17 changes: 17 additions & 0 deletions dsp/src/util/Memory.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#include <memory>
Expand Down
17 changes: 17 additions & 0 deletions dsp/tests/Memory_gtest.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <array>
#include <memory>
#include <vector>
Expand Down
17 changes: 17 additions & 0 deletions dsp/tests/Player_gtest.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <random>
Expand Down
17 changes: 17 additions & 0 deletions dsp/tests/Recorder_gtest.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <gtest/gtest.h>
#include <random>
#include "dsp/Recorder.h"
Expand Down
17 changes: 17 additions & 0 deletions dsp/tests/gtest-all.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/**
* Copyright (C) Johannes Elliesen, 2021
*
* 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
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

// The .cpp => .o rule relies on the cpp files being in the exact same folder hierarchy as the .o files in the build directory.
// I'm no makefile guru - how can we add files in ../lib/googletest/src to the makefile directly without this ugly include here?!
#include "googletest/src/gtest-all.cc"
Expand Down
Loading

0 comments on commit ee8d8dc

Please sign in to comment.