-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
License was upgraded to GPLv3+ to to make it compatible with other projects under Apache License 2.0 and also to explicitly make it incompatible with existing Freedesktop projects due to misusing of their own CoC to support license violation of other projects. See the README file for details. This project is still open source, stay open source and be GPL compatible for all other projects which do not violate GPL and other licenses. This change affects only projects which violates GPL licenses either directly or transitionally like Freedesktop projects.
- Loading branch information
Showing
7 changed files
with
761 additions
and
528 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
# Open Source implementation of Audio Processing Technology codec (aptX) | ||
# Copyright (C) 2018-2021 Pali Rohár <[email protected]> | ||
# | ||
# Read README file for license details. Due to license abuse | ||
# this library must not be used in any Freedesktop project. | ||
# | ||
# This library 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 library 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 library. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
.POSIX: | ||
.SUFFIXES: | ||
.PHONY: default all clean install uninstall | ||
|
@@ -21,7 +40,7 @@ PKGDIR = $(LIBDIR)/pkgconfig | |
NAME = openaptx | ||
MAJOR = 0 | ||
MINOR = 2 | ||
PATCH = 0 | ||
PATCH = 1 | ||
|
||
LIBNAME = lib$(NAME).so | ||
SONAME = $(LIBNAME).$(MAJOR) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
/* | ||
* Open Source implementation of Audio Processing Technology codec (aptX) | ||
* Copyright (C) 2017 Aurelien Jacobs <[email protected]> | ||
* Copyright (C) 2018-2020 Pali Rohár <[email protected]> | ||
* Copyright (C) 2018-2021 Pali Rohár <[email protected]> | ||
* | ||
* This library 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 2.1 of the License, or (at your option) any later version. | ||
* Read README file for license details. Due to license abuse | ||
* this library must not be used in any Freedesktop project. | ||
* | ||
* This library 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 library 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. | ||
* 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 Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* You should have received a copy of the GNU General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <stdlib.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
/* | ||
* Open Source implementation of Audio Processing Technology codec (aptX) | ||
* Copyright (C) 2018-2020 Pali Rohár <[email protected]> | ||
* Copyright (C) 2018-2021 Pali Rohár <[email protected]> | ||
* | ||
* This library 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 2.1 of the License, or (at your option) any later version. | ||
* Read README file for license details. Due to license abuse | ||
* this library must not be used in any Freedesktop project. | ||
* | ||
* This library 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 library 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. | ||
* 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 Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* You should have received a copy of the GNU General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef OPENAPTX_H | ||
#define OPENAPTX_H | ||
|
||
#define OPENAPTX_MAJOR 0 | ||
#define OPENAPTX_MINOR 2 | ||
#define OPENAPTX_PATCH 0 | ||
#define OPENAPTX_PATCH 1 | ||
|
||
#include <stddef.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
/* | ||
* aptX decoder utility | ||
* Copyright (C) 2018-2020 Pali Rohár <[email protected]> | ||
* Copyright (C) 2018-2021 Pali Rohár <[email protected]> | ||
* | ||
* This library 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 2.1 of the License, or (at your option) any later version. | ||
* Read README file for license details. Due to license abuse | ||
* this program must not be used in any Freedesktop project. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* 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 | ||
* Lesser General Public License for more details. | ||
* 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 Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* 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 <stdio.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
/* | ||
* aptX encoder utility | ||
* Copyright (C) 2018-2020 Pali Rohár <[email protected]> | ||
* Copyright (C) 2018-2021 Pali Rohár <[email protected]> | ||
* | ||
* This library 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 2.1 of the License, or (at your option) any later version. | ||
* Read README file for license details. Due to license abuse | ||
* this program must not be used in any Freedesktop project. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* 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 | ||
* Lesser General Public License for more details. | ||
* 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 Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* 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 <stdio.h> | ||
|
811bc18
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can I ask what happened in specific (e.g. an example) of what happen which led to the restriction of freedesktop projects and Collabora.
Considering their place in the Linux ecosystem it is important to know whether they can be trusted or not and so far I haven't found anything.
811bc18
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was already discussed, but Collabora and Freedesktop completed removed all information from me and other people just to mute them and hide what they are doing. They are stilling foreign code, claiming that it is written by them, removing any authorship, copyright and presenting it is theirs. And saying that they can do it. They cannot be trusted. See: #13 Collabora and Freedesktop banned everybody who pointed about it.
Per §8/LGPL and §8/GPL license was terminated with Collabora and Freedesktop and was not automatically reinstated. It applies to all versions of this library, including older and Collabora and Freedesktop cannot use this library anymore.