Skip to content

Commit c9b1461

Browse files
committed
Release 0.5.6
* Added build of static library. * Source code now more properly references LGPL3+ license.
2 parents d13232d + ab38203 commit c9b1461

File tree

433 files changed

+8051
-1293
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

433 files changed

+8051
-1293
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
* RECENT CHANGES
33
*******************************************************************************
44

5+
=== 0.5.6 ===
6+
* Added build of static library.
7+
* Source code now more properly references LGPL3+ license.
8+
59
=== 0.5.5 ===
610
* Provided C-compatible function interface and symbol exports. All C functions and
711
types are prefixed with lsp_dsp_ prefix to not to clash with other types. C++

COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE renamed to COPYING.LESSER

File renamed without changes.

Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
#!/usr/bin/make -f
2+
#
3+
# Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
4+
# (C) 2020 Vladimir Sadovnikov <[email protected]>
5+
#
6+
# This file is part of lsp-dsp-lib
7+
#
8+
# lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU Lesser General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# any later version.
12+
#
13+
# lsp-dsp-lib is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU Lesser General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU Lesser General Public License
19+
# along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
20+
#
221

322
# Location
423
BASEDIR := $(CURDIR)

dependencies.mk

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#
2+
# Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
# (C) 2020 Vladimir Sadovnikov <[email protected]>
4+
#
5+
# This file is part of lsp-dsp-lib
6+
#
7+
# lsp-dsp-lib is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU Lesser General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# any later version.
11+
#
12+
# lsp-dsp-lib is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU Lesser General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU Lesser General Public License
18+
# along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
19+
#
20+
121
# Variables that describe dependencies
222
LSP_COMMON_LIB_VERSION := 1.0.7
323
LSP_COMMON_LIB_NAME := lsp-common-lib

include/lsp-plug.in/dsp/common/3dmath.h

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
/*
2-
* 3dmath.h
2+
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2020 Vladimir Sadovnikov <[email protected]>
34
*
4-
* Created on: 31 мар. 2020 г.
5-
* Author: sadko
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 31 мар. 2020 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
620
*/
721

822
#ifndef LSP_PLUG_IN_DSP_COMMON_3DMATH_H_

include/lsp-plug.in/dsp/common/3dmath/types.h

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
/*
2-
* types.h
2+
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2020 Vladimir Sadovnikov <[email protected]>
34
*
4-
* Created on: 31 мар. 2020 г.
5-
* Author: sadko
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 31 мар. 2020 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
620
*/
721

822
#ifndef LSP_PLUG_IN_DSP_COMMON_3DMATH_TYPES_H_

include/lsp-plug.in/dsp/common/coding.h

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
/*
2-
* coding.h
2+
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2020 Vladimir Sadovnikov <[email protected]>
34
*
4-
* Created on: 31 мар. 2020 г.
5-
* Author: sadko
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 31 мар. 2020 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
620
*/
721

822
#ifndef LSP_PLUG_IN_DSP_COMMON_CODING_H_

include/lsp-plug.in/dsp/common/complex.h

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
/*
2-
* complex.h
2+
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2020 Vladimir Sadovnikov <[email protected]>
34
*
4-
* Created on: 31 мар. 2020 г.
5-
* Author: sadko
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 31 мар. 2020 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
620
*/
721

822
#ifndef LSP_PLUG_IN_DSP_COMMON_COMPLEX_H_

include/lsp-plug.in/dsp/common/context.h

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
/*
2-
* context.h
2+
* Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2020 Vladimir Sadovnikov <[email protected]>
34
*
4-
* Created on: 31 мар. 2020 г.
5-
* Author: sadko
5+
* This file is part of lsp-dsp-lib
6+
* Created on: 31 мар. 2020 г.
7+
*
8+
* lsp-dsp-lib is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* any later version.
12+
*
13+
* lsp-dsp-lib is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with lsp-dsp-lib. If not, see <https://www.gnu.org/licenses/>.
620
*/
721

822
#ifndef LSP_PLUG_IN_DSP_COMMON_CONTEXT_H_

0 commit comments

Comments
 (0)