diff -Nru lsp-plugins-1.1.24/CHANGELOG.txt lsp-plugins-1.1.26/CHANGELOG.txt --- lsp-plugins-1.1.24/CHANGELOG.txt 2020-07-16 17:04:08.839454136 +0000 +++ lsp-plugins-1.1.26/CHANGELOG.txt 2020-09-15 20:10:12.541193779 +0000 @@ -2,6 +2,17 @@ * RECENT CHANGES ******************************************************************************* +=== 1.1.26 === + +* Implemented Crossover Plugin series. +* Fixed phase mismatch between channels in the oversampling mode of limiter (contributed by Hector Martin). +* Fixed bug in convolver module which could perform improper tail convolution (reported by Robin Gareus). + Affected plugins: Impulse Responses, Impulse Reverb, Room Builder. +* Fixed small memory leakage in multiband plugins (Compressor, Gate, Expander) related to usage of + Inline Display feature. +* Added support of pg:mainInput and pg:mainOutput LV2 properties in TTL files for all plugins. +* Updated all C++ heades and source files to match the LGPL3+ license headers. + === 1.1.24 === * Implemented Loudness Compensator plugin series (Mono and Stereo). diff -Nru lsp-plugins-1.1.24/debian/changelog lsp-plugins-1.1.26/debian/changelog --- lsp-plugins-1.1.24/debian/changelog 2020-08-27 20:03:11.000000000 +0000 +++ lsp-plugins-1.1.26/debian/changelog 2020-09-18 11:09:00.000000000 +0000 @@ -1,3 +1,11 @@ +lsp-plugins (1.1.26-1) unstable; urgency=medium + + * New upstream version 1.1.26 + * Simple test that calls the help for all 118 jack plugins + * Update lsp-plugins-vst.links + + -- Dennis Braun Fri, 18 Sep 2020 13:09:00 +0200 + lsp-plugins (1.1.24-2) unstable; urgency=medium * Add Breaks and Replaces to lsp-plugins-jack diff -Nru lsp-plugins-1.1.24/debian/lsp-plugins-vst.links lsp-plugins-1.1.26/debian/lsp-plugins-vst.links --- lsp-plugins-1.1.24/debian/lsp-plugins-vst.links 2020-07-20 17:00:21.000000000 +0000 +++ lsp-plugins-1.1.26/debian/lsp-plugins-vst.links 2020-09-17 12:55:04.000000000 +0000 @@ -1 +1 @@ -usr/lib/lsp-plugins/lsp-plugins-r3d-glx.so usr/lib/vst/lsp-plugins-lxvst-1.1.24/lsp-plugins-r3d-glx.so +usr/lib/lsp-plugins/lsp-plugins-r3d-glx.so usr/lib/vst/lsp-plugins-lxvst-1.1.26/lsp-plugins-r3d-glx.so diff -Nru lsp-plugins-1.1.24/debian/tests/control lsp-plugins-1.1.26/debian/tests/control --- lsp-plugins-1.1.24/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/debian/tests/control 2020-09-18 11:06:50.000000000 +0000 @@ -0,0 +1,2 @@ +Tests: help +Depends: @ diff -Nru lsp-plugins-1.1.24/debian/tests/help lsp-plugins-1.1.26/debian/tests/help --- lsp-plugins-1.1.24/debian/tests/help 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/debian/tests/help 2020-09-18 09:46:19.000000000 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh + +# Author: Dennis Braun + +set -e + +for l in /usr/bin/lsp-plugins-* +do + $l -h +done diff -Nru lsp-plugins-1.1.24/include/common/types.h lsp-plugins-1.1.26/include/common/types.h --- lsp-plugins-1.1.24/include/common/types.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/common/types.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef COMMON_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/container/CairoCanvas.h lsp-plugins-1.1.26/include/container/CairoCanvas.h --- lsp-plugins-1.1.24/include/container/CairoCanvas.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/CairoCanvas.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * cairo_canvas.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_CAIRO_CANVAS_H_ diff -Nru lsp-plugins-1.1.24/include/container/common/libpath.h lsp-plugins-1.1.26/include/container/common/libpath.h --- lsp-plugins-1.1.24/include/container/common/libpath.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/common/libpath.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * libpath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CONTAINER_COMMON_LIBPATH_H_ diff -Nru lsp-plugins-1.1.24/include/container/common/winlib.h lsp-plugins-1.1.26/include/container/common/winlib.h --- lsp-plugins-1.1.24/include/container/common/winlib.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/common/winlib.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * winpath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CONTAINER_COMMON_WINLIB_H_ diff -Nru lsp-plugins-1.1.24/include/container/const.h lsp-plugins-1.1.26/include/container/const.h --- lsp-plugins-1.1.24/include/container/const.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/const.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/defs.h lsp-plugins-1.1.26/include/container/jack/defs.h --- lsp-plugins-1.1.24/include/container/jack/defs.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/defs.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * defs.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_JACK_DEFS_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/main/posix.h lsp-plugins-1.1.26/include/container/jack/main/posix.h --- lsp-plugins-1.1.24/include/container/jack/main/posix.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/main/posix.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * posix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CONTAINER_JACK_MAIN_POSIX_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/main/winnt.h lsp-plugins-1.1.26/include/container/jack/main/winnt.h --- lsp-plugins-1.1.24/include/container/jack/main/winnt.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/main/winnt.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * winnt.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CONTAINER_JACK_MAIN_WINNT_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/main.h lsp-plugins-1.1.26/include/container/jack/main.h --- lsp-plugins-1.1.24/include/container/jack/main.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/main.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * main.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _CONTAINER_JACK_MAIN_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/ports.h lsp-plugins-1.1.26/include/container/jack/ports.h --- lsp-plugins-1.1.24/include/container/jack/ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef COINTAINER_JACK_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/types.h lsp-plugins-1.1.26/include/container/jack/types.h --- lsp-plugins-1.1.24/include/container/jack/types.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/types.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_JACK_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/ui_ports.h lsp-plugins-1.1.26/include/container/jack/ui_ports.h --- lsp-plugins-1.1.24/include/container/jack/ui_ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/ui_ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * ui_ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_JACK_UI_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/jack/wrapper.h lsp-plugins-1.1.26/include/container/jack/wrapper.h --- lsp-plugins-1.1.24/include/container/jack/wrapper.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/jack/wrapper.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * wrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_JACK_WRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/container/ladspa/ports.h lsp-plugins-1.1.26/include/container/ladspa/ports.h --- lsp-plugins-1.1.24/include/container/ladspa/ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/ladspa/ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LADSPA_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/ladspa/wrapper.h lsp-plugins-1.1.26/include/container/ladspa/wrapper.h --- lsp-plugins-1.1.24/include/container/ladspa/wrapper.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/ladspa/wrapper.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * wrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LADSPA_WRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/executor.h lsp-plugins-1.1.26/include/container/lv2/executor.h --- lsp-plugins-1.1.24/include/container/lv2/executor.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/executor.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * executor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_EXECUTOR_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/extensions.h lsp-plugins-1.1.26/include/container/lv2/extensions.h --- lsp-plugins-1.1.24/include/container/lv2/extensions.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/extensions.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * ext.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_EXTENSIONS_H_ @@ -117,7 +131,6 @@ LV2_URID uridObject; LV2_URID uridBlank; LV2_URID uridStateChanged; - LV2_URID uridStateRequest; LV2_URID uridUINotification; LV2_URID uridConnectUI; LV2_URID uridDisconnectUI; diff -Nru lsp-plugins-1.1.24/include/container/lv2/lv2_sink.h lsp-plugins-1.1.26/include/container/lv2/lv2_sink.h --- lsp-plugins-1.1.24/include/container/lv2/lv2_sink.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/lv2_sink.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * lv2_sink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_LV2_SINK_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/osc.h lsp-plugins-1.1.26/include/container/lv2/osc.h --- lsp-plugins-1.1.24/include/container/lv2/osc.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/osc.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * osc.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_OSC_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/ports.h lsp-plugins-1.1.26/include/container/lv2/ports.h --- lsp-plugins-1.1.24/include/container/lv2/ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * lv2.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/types.h lsp-plugins-1.1.26/include/container/lv2/types.h --- lsp-plugins-1.1.24/include/container/lv2/types.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/types.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 02 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 02 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/ui_ports.h lsp-plugins-1.1.26/include/container/lv2/ui_ports.h --- lsp-plugins-1.1.24/include/container/lv2/ui_ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/ui_ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * lv2ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_UI_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/ui_wrapper.h lsp-plugins-1.1.26/include/container/lv2/ui_wrapper.h --- lsp-plugins-1.1.24/include/container/lv2/ui_wrapper.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/ui_wrapper.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * wrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_UI_WRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/container/lv2/wrapper.h lsp-plugins-1.1.26/include/container/lv2/wrapper.h --- lsp-plugins-1.1.24/include/container/lv2/wrapper.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/lv2/wrapper.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,15 +1,28 @@ /* - * wrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_WRAPPER_H_ #define CONTAINER_LV2_WRAPPER_H_ #include -#include #include #include diff -Nru lsp-plugins-1.1.24/include/container/vst/chunk.h lsp-plugins-1.1.26/include/container/vst/chunk.h --- lsp-plugins-1.1.24/include/container/vst/chunk.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/chunk.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * chunk.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_CHUNK_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/defs.h lsp-plugins-1.1.26/include/container/vst/defs.h --- lsp-plugins-1.1.24/include/container/vst/defs.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/defs.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * defs.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _CONTAINER_VST_DEFS_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/helpers.h lsp-plugins-1.1.26/include/container/vst/helpers.h --- lsp-plugins-1.1.24/include/container/vst/helpers.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/helpers.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * defs.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _CONTAINER_VST_HELPERS_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/main/posix.h lsp-plugins-1.1.26/include/container/vst/main/posix.h --- lsp-plugins-1.1.24/include/container/vst/main/posix.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/main/posix.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * posix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_MAIN_POSIX_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/main/winnt.h lsp-plugins-1.1.26/include/container/vst/main/winnt.h --- lsp-plugins-1.1.24/include/container/vst/main/winnt.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/main/winnt.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * winnt.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CONTAINER_VST_MAIN_WINNT_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/main.h lsp-plugins-1.1.26/include/container/vst/main.h --- lsp-plugins-1.1.24/include/container/vst/main.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/main.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * main.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _CONTAINER_VST_MAIN_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/ports.h lsp-plugins-1.1.26/include/container/vst/ports.h --- lsp-plugins-1.1.24/include/container/vst/ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/ports.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/types.h lsp-plugins-1.1.26/include/container/vst/types.h --- lsp-plugins-1.1.24/include/container/vst/types.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/types.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 01 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 01 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/ui_ports.h lsp-plugins-1.1.26/include/container/vst/ui_ports.h --- lsp-plugins-1.1.24/include/container/vst/ui_ports.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/ui_ports.h 2020-09-15 20:10:12.562193601 +0000 @@ -1,8 +1,22 @@ /* - * ui_ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_UI_PORTS_H_ diff -Nru lsp-plugins-1.1.24/include/container/vst/wrapper.h lsp-plugins-1.1.26/include/container/vst/wrapper.h --- lsp-plugins-1.1.24/include/container/vst/wrapper.h 2020-07-16 17:04:08.857453976 +0000 +++ lsp-plugins-1.1.26/include/container/vst/wrapper.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * wrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_VST_WRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/Allocator3D.h lsp-plugins-1.1.26/include/core/3d/Allocator3D.h --- lsp-plugins-1.1.24/include/core/3d/Allocator3D.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/Allocator3D.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Allocator3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_ALLOCATOR3D_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/bsp_context.h lsp-plugins-1.1.26/include/core/3d/bsp_context.h --- lsp-plugins-1.1.24/include/core/3d/bsp_context.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/bsp_context.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * bsp_context.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_3D_BSP_CONTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/common.h lsp-plugins-1.1.26/include/core/3d/common.h --- lsp-plugins-1.1.24/include/core/3d/common.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/common.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * common.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_COMMON_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/Object3D.h lsp-plugins-1.1.26/include/core/3d/Object3D.h --- lsp-plugins-1.1.24/include/core/3d/Object3D.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/Object3D.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Object3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_OBJECT3D_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/RayTrace3D.h lsp-plugins-1.1.26/include/core/3d/RayTrace3D.h --- lsp-plugins-1.1.24/include/core/3d/RayTrace3D.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/RayTrace3D.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * RayTrace3D.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_3D_RAYTRACE3D_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/raytrace.h lsp-plugins-1.1.26/include/core/3d/raytrace.h --- lsp-plugins-1.1.24/include/core/3d/raytrace.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/raytrace.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * raytrace.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_3D_RAYTRACE_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/rt_context.h lsp-plugins-1.1.26/include/core/3d/rt_context.h --- lsp-plugins-1.1.24/include/core/3d/rt_context.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/rt_context.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * RTContext.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 янв. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 янв. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_RT_CONTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/rt_mesh.h lsp-plugins-1.1.26/include/core/3d/rt_mesh.h --- lsp-plugins-1.1.24/include/core/3d/rt_mesh.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/rt_mesh.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * rt_mesh.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_RT_MESH_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/rt_plan.h lsp-plugins-1.1.26/include/core/3d/rt_plan.h --- lsp-plugins-1.1.24/include/core/3d/rt_plan.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/rt_plan.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * rt_plan.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_3D_RT_PLAN_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/Scene3D.h lsp-plugins-1.1.26/include/core/3d/Scene3D.h --- lsp-plugins-1.1.24/include/core/3d/Scene3D.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/Scene3D.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Scene3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_3D_SCENE3D_H_ diff -Nru lsp-plugins-1.1.24/include/core/3d/View3D.h lsp-plugins-1.1.26/include/core/3d/View3D.h --- lsp-plugins-1.1.24/include/core/3d/View3D.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/3d/View3D.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * View3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_3D_VIEW3D_H_ diff -Nru lsp-plugins-1.1.24/include/core/alloc.h lsp-plugins-1.1.26/include/core/alloc.h --- lsp-plugins-1.1.24/include/core/alloc.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/alloc.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * alloc.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_ALLOC_H_ diff -Nru lsp-plugins-1.1.24/include/core/assert.h lsp-plugins-1.1.26/include/core/assert.h --- lsp-plugins-1.1.24/include/core/assert.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/assert.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * assert.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_ASSERT_H_ diff -Nru lsp-plugins-1.1.24/include/core/buffer.h lsp-plugins-1.1.26/include/core/buffer.h --- lsp-plugins-1.1.24/include/core/buffer.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/buffer.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * buffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_BUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/evaluator.h lsp-plugins-1.1.26/include/core/calc/evaluator.h --- lsp-plugins-1.1.24/include/core/calc/evaluator.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/evaluator.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * evaluator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_EVALUATOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/Expression.h lsp-plugins-1.1.26/include/core/calc/Expression.h --- lsp-plugins-1.1.24/include/core/calc/Expression.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/Expression.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Expression.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_EXPRESSION_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/format.h lsp-plugins-1.1.26/include/core/calc/format.h --- lsp-plugins-1.1.24/include/core/calc/format.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/format.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * format.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_FORMAT_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/Parameters.h lsp-plugins-1.1.26/include/core/calc/Parameters.h --- lsp-plugins-1.1.24/include/core/calc/Parameters.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/Parameters.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Parameters.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_PARAMETERS_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/parser.h lsp-plugins-1.1.26/include/core/calc/parser.h --- lsp-plugins-1.1.24/include/core/calc/parser.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/parser.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * parser.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_PARSER_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/Resolver.h lsp-plugins-1.1.26/include/core/calc/Resolver.h --- lsp-plugins-1.1.24/include/core/calc/Resolver.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/Resolver.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Resolver.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_RESOLVER_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/token.h lsp-plugins-1.1.26/include/core/calc/token.h --- lsp-plugins-1.1.24/include/core/calc/token.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/token.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * token.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_TOKEN_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/Tokenizer.h lsp-plugins-1.1.26/include/core/calc/Tokenizer.h --- lsp-plugins-1.1.24/include/core/calc/Tokenizer.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/Tokenizer.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Tokenizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_TOKENIZER_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/types.h lsp-plugins-1.1.26/include/core/calc/types.h --- lsp-plugins-1.1.24/include/core/calc/types.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/types.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/core/calc/Variables.h lsp-plugins-1.1.26/include/core/calc/Variables.h --- lsp-plugins-1.1.24/include/core/calc/Variables.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/calc/Variables.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Variables.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CALC_VARIABLES_H_ diff -Nru lsp-plugins-1.1.24/include/core/characters.h lsp-plugins-1.1.26/include/core/characters.h --- lsp-plugins-1.1.24/include/core/characters.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/characters.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * characters.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_CHARACTERS_H_ diff -Nru lsp-plugins-1.1.24/include/core/colors.h lsp-plugins-1.1.26/include/core/colors.h --- lsp-plugins-1.1.24/include/core/colors.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/colors.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * colors.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_COLORS_H_ diff -Nru lsp-plugins-1.1.24/include/core/debug.h lsp-plugins-1.1.26/include/core/debug.h --- lsp-plugins-1.1.24/include/core/debug.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/debug.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * debug.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DEBUG_H_ diff -Nru lsp-plugins-1.1.24/include/core/dynamics/Compressor.h lsp-plugins-1.1.26/include/core/dynamics/Compressor.h --- lsp-plugins-1.1.24/include/core/dynamics/Compressor.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/dynamics/Compressor.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Compressor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DYNAMICS_COMPRESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/dynamics/DynamicProcessor.h lsp-plugins-1.1.26/include/core/dynamics/DynamicProcessor.h --- lsp-plugins-1.1.24/include/core/dynamics/DynamicProcessor.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/dynamics/DynamicProcessor.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * DynamicProcessor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DYNAMICS_DYNAMICPROCESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/dynamics/Expander.h lsp-plugins-1.1.26/include/core/dynamics/Expander.h --- lsp-plugins-1.1.24/include/core/dynamics/Expander.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/dynamics/Expander.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Expander.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DYNAMICS_EXPANDER_H_ diff -Nru lsp-plugins-1.1.24/include/core/dynamics/Gate.h lsp-plugins-1.1.26/include/core/dynamics/Gate.h --- lsp-plugins-1.1.24/include/core/dynamics/Gate.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/dynamics/Gate.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DYNAMICS_GATE_H_ diff -Nru lsp-plugins-1.1.24/include/core/dynamics/Limiter.h lsp-plugins-1.1.26/include/core/dynamics/Limiter.h --- lsp-plugins-1.1.24/include/core/dynamics/Limiter.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/dynamics/Limiter.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Limiter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_DYNAMICS_LIMITER_H_ diff -Nru lsp-plugins-1.1.24/include/core/envelope.h lsp-plugins-1.1.26/include/core/envelope.h --- lsp-plugins-1.1.24/include/core/envelope.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/envelope.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * envelope.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_ENVELOPE_H_ diff -Nru lsp-plugins-1.1.24/include/core/fade.h lsp-plugins-1.1.26/include/core/fade.h --- lsp-plugins-1.1.24/include/core/fade.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/fade.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * fade.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FADE_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/3d/IObjHandler.h lsp-plugins-1.1.26/include/core/files/3d/IObjHandler.h --- lsp-plugins-1.1.24/include/core/files/3d/IObjHandler.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/3d/IObjHandler.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * IObjHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_3D_IOBJHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/3d/Parser.h lsp-plugins-1.1.26/include/core/files/3d/Parser.h --- lsp-plugins-1.1.24/include/core/files/3d/Parser.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/3d/Parser.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Parser.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_3D_OBJFILEPARSER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/AudioFile.h lsp-plugins-1.1.26/include/core/files/AudioFile.h --- lsp-plugins-1.1.24/include/core/files/AudioFile.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/AudioFile.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * AudioFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_AUDIOFILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/bookmarks.h lsp-plugins-1.1.26/include/core/files/bookmarks.h --- lsp-plugins-1.1.24/include/core/files/bookmarks.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/bookmarks.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * bookmarks.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_BOOKMARKS_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/config/flags.h lsp-plugins-1.1.26/include/core/files/config/flags.h --- lsp-plugins-1.1.24/include/core/files/config/flags.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/config/flags.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * flags.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_CONFIG_FLAGS_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/config/IConfigHandler.h lsp-plugins-1.1.26/include/core/files/config/IConfigHandler.h --- lsp-plugins-1.1.24/include/core/files/config/IConfigHandler.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/config/IConfigHandler.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * IParameterHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_CONFIG_ICONFIGHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/config/IConfigSource.h lsp-plugins-1.1.26/include/core/files/config/IConfigSource.h --- lsp-plugins-1.1.24/include/core/files/config/IConfigSource.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/config/IConfigSource.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * IConfigSource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_CONFIG_ICONFIGSOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/config.h lsp-plugins-1.1.26/include/core/files/config.h --- lsp-plugins-1.1.24/include/core/files/config.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/config.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * config.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_CONFIG_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/Hydrogen.h lsp-plugins-1.1.26/include/core/files/Hydrogen.h --- lsp-plugins-1.1.24/include/core/files/Hydrogen.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/Hydrogen.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Hydrogen.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_HYDROGEN_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/const.h lsp-plugins-1.1.26/include/core/files/java/const.h --- lsp-plugins-1.1.24/include/core/files/java/const.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/const.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/defs.h lsp-plugins-1.1.26/include/core/files/java/defs.h --- lsp-plugins-1.1.24/include/core/files/java/defs.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/defs.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * headers.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_HEADERS_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/Enum.h lsp-plugins-1.1.26/include/core/files/java/Enum.h --- lsp-plugins-1.1.24/include/core/files/java/Enum.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/Enum.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Enum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_ENUM_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/Handles.h lsp-plugins-1.1.26/include/core/files/java/Handles.h --- lsp-plugins-1.1.24/include/core/files/java/Handles.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/Handles.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Handles.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_HANDLES_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/IObjectStreamHandler.h lsp-plugins-1.1.26/include/core/files/java/IObjectStreamHandler.h --- lsp-plugins-1.1.24/include/core/files/java/IObjectStreamHandler.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/IObjectStreamHandler.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * IObjectStreamHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_IOBJECTSTREAMHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/Object.h lsp-plugins-1.1.26/include/core/files/java/Object.h --- lsp-plugins-1.1.24/include/core/files/java/Object.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/Object.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Object.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_OBJECT_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/ObjectStreamClass.h lsp-plugins-1.1.26/include/core/files/java/ObjectStreamClass.h --- lsp-plugins-1.1.24/include/core/files/java/ObjectStreamClass.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/ObjectStreamClass.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * ObjectStreamClass.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_OBJECTSTREAMCLASS_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/ObjectStreamField.h lsp-plugins-1.1.26/include/core/files/java/ObjectStreamField.h --- lsp-plugins-1.1.24/include/core/files/java/ObjectStreamField.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/ObjectStreamField.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * ObjectStreamField.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_OBJECTSTREAMFIELD_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/object_stream.h lsp-plugins-1.1.26/include/core/files/java/object_stream.h --- lsp-plugins-1.1.24/include/core/files/java/object_stream.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/object_stream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * object_stream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_OBJECT_STREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/ObjectStream.h lsp-plugins-1.1.26/include/core/files/java/ObjectStream.h --- lsp-plugins-1.1.24/include/core/files/java/ObjectStream.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/ObjectStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * ObjectStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_OBJECTSTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/RawArray.h lsp-plugins-1.1.26/include/core/files/java/RawArray.h --- lsp-plugins-1.1.24/include/core/files/java/RawArray.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/RawArray.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * RawArray.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_RAWARRAY_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/String.h lsp-plugins-1.1.26/include/core/files/java/String.h --- lsp-plugins-1.1.24/include/core/files/java/String.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/String.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * JavaString.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_JAVASTRING_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/java/wrappers.h lsp-plugins-1.1.26/include/core/files/java/wrappers.h --- lsp-plugins-1.1.24/include/core/files/java/wrappers.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/java/wrappers.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * wrappers.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JAVA_WRAPPERS_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/json/Parser.h lsp-plugins-1.1.26/include/core/files/json/Parser.h --- lsp-plugins-1.1.24/include/core/files/json/Parser.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/json/Parser.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Parser.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JSON_PARSER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/json/Serializer.h lsp-plugins-1.1.26/include/core/files/json/Serializer.h --- lsp-plugins-1.1.24/include/core/files/json/Serializer.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/json/Serializer.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Serializer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JSON_SERIALIZER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/json/token.h lsp-plugins-1.1.26/include/core/files/json/token.h --- lsp-plugins-1.1.24/include/core/files/json/token.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/json/token.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * token.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JSON_TOKEN_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/json/Tokenizer.h lsp-plugins-1.1.26/include/core/files/json/Tokenizer.h --- lsp-plugins-1.1.24/include/core/files/json/Tokenizer.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/json/Tokenizer.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Tokenizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_JSON_TOKENIZER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/LSPCAudioReader.h lsp-plugins-1.1.26/include/core/files/lspc/LSPCAudioReader.h --- lsp-plugins-1.1.24/include/core/files/lspc/LSPCAudioReader.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/LSPCAudioReader.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPCSampleReader.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPCAUDIOREADER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/LSPCAudioWriter.h lsp-plugins-1.1.26/include/core/files/lspc/LSPCAudioWriter.h --- lsp-plugins-1.1.24/include/core/files/lspc/LSPCAudioWriter.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/LSPCAudioWriter.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPCAudioWriter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPCAUDIOWRITER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkAccessor.h lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkAccessor.h --- lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkAccessor.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkAccessor.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPCChunkAccessor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPCCHUNKACCESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkReader.h lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkReader.h --- lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkReader.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkReader.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPChunkReader.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPCCHUNKREADER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkWriter.h lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkWriter.h --- lsp-plugins-1.1.24/include/core/files/lspc/LSPCChunkWriter.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/LSPCChunkWriter.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPChunkWriter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPCCHUNKWRITER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/lspc/lspc.h lsp-plugins-1.1.26/include/core/files/lspc/lspc.h --- lsp-plugins-1.1.24/include/core/files/lspc/lspc.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/lspc/lspc.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * lspc.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_LSPC_LSPC_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/LSPCFile.h lsp-plugins-1.1.26/include/core/files/LSPCFile.h --- lsp-plugins-1.1.24/include/core/files/LSPCFile.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/LSPCFile.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * LSPCFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_FILES_LSPCFILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/Model3DFile.h lsp-plugins-1.1.26/include/core/files/Model3DFile.h --- lsp-plugins-1.1.24/include/core/files/Model3DFile.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/Model3DFile.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * Model3DFile.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_MODEL3DFILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/RoomEQWizard.h lsp-plugins-1.1.26/include/core/files/RoomEQWizard.h --- lsp-plugins-1.1.24/include/core/files/RoomEQWizard.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/RoomEQWizard.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * RoomEQWizard.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_ROOMEQWIZARD_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/url.h lsp-plugins-1.1.26/include/core/files/url.h --- lsp-plugins-1.1.24/include/core/files/url.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/url.h 2020-09-15 20:10:12.564193583 +0000 @@ -1,8 +1,22 @@ /* - * url.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_URL_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/xml/const.h lsp-plugins-1.1.26/include/core/files/xml/const.h --- lsp-plugins-1.1.24/include/core/files/xml/const.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/xml/const.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_XML_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/xml/IXMLHandler.h lsp-plugins-1.1.26/include/core/files/xml/IXMLHandler.h --- lsp-plugins-1.1.24/include/core/files/xml/IXMLHandler.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/xml/IXMLHandler.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * IXMLHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_XML_IXMLHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/xml/PullParser.h lsp-plugins-1.1.26/include/core/files/xml/PullParser.h --- lsp-plugins-1.1.24/include/core/files/xml/PullParser.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/xml/PullParser.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * PullParser.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_XML_PULLPARSER_H_ diff -Nru lsp-plugins-1.1.24/include/core/files/xml/PushParser.h lsp-plugins-1.1.26/include/core/files/xml/PushParser.h --- lsp-plugins-1.1.24/include/core/files/xml/PushParser.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/files/xml/PushParser.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * PushParser.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILES_XML_PUSHPARSER_H_ diff -Nru lsp-plugins-1.1.24/include/core/filters/common.h lsp-plugins-1.1.26/include/core/filters/common.h --- lsp-plugins-1.1.24/include/core/filters/common.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/filters/common.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * common.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILTERS_COMMON_H_ diff -Nru lsp-plugins-1.1.24/include/core/filters/DynamicFilters.h lsp-plugins-1.1.26/include/core/filters/DynamicFilters.h --- lsp-plugins-1.1.24/include/core/filters/DynamicFilters.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/filters/DynamicFilters.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * DynamicFilters.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILTERS_DYNAMICFILTERS_H_ @@ -14,7 +28,7 @@ namespace lsp { - /** This class implements set of dynamic filters grouped + /** This class implements set of sequential dynamic filters grouped * into one object for resource economy purpose. * */ @@ -67,38 +81,43 @@ explicit DynamicFilters(); ~DynamicFilters(); - public: + /** + * Construct the object as a part of memory chunkk + */ + void construct(); + /** Initialize the dynamic filters set * * @param filters * @return */ - status_t init(size_t filters); + status_t init(size_t filters); - /** Set sample rate + /** Destroy the dynamic filters set * - * @param sr sample rate */ - void set_sample_rate(size_t sr); + void destroy(); - /** Destroy the dynamic filters set + public: + /** Set sample rate * + * @param sr sample rate */ - void destroy(); + void set_sample_rate(size_t sr); /** Check that filter is active * * @param id ID of filter * @return true if filter is active */ - inline bool filter_active(size_t id) const { return (id < nFilters) ? vFilters[id].bActive : false; }; + inline bool filter_active(size_t id) const { return (id < nFilters) ? vFilters[id].bActive : false; }; /** Check that filter is inactive * * @param id ID of filter * @return true if filter is inactive */ - inline bool filter_inactive(size_t id) const { return (id < nFilters) ? !vFilters[id].bActive : true; }; + inline bool filter_inactive(size_t id) const { return (id < nFilters) ? !vFilters[id].bActive : true; }; /** Set activity of the specific filter * @@ -106,7 +125,7 @@ * @param active activity of the specific filter * @return true on success */ - inline bool set_filter_active(size_t id, bool active) + inline bool set_filter_active(size_t id, bool active) { if (id >= nFilters) return false; @@ -119,14 +138,14 @@ * @param params filter parameters * @return true on success */ - bool set_params(size_t id, const filter_params_t *params); + bool set_params(size_t id, const filter_params_t *params); /** Get filter parameters * @param id ID of the filter * @param params filter parameters * @return true on success */ - bool get_params(size_t id, filter_params_t *params); + bool get_params(size_t id, filter_params_t *params); /** Process signal with filter varying by it's gain parameter * @@ -136,7 +155,7 @@ * @param gain the gain level of the filter * @param samples number of samples to process */ - void process(size_t id, float *out, const float *in, const float *gain, size_t samples); + void process(size_t id, float *out, const float *in, const float *gain, size_t samples); /** Get frequency chart of the specific filter * @@ -146,7 +165,7 @@ * @param f frequencies to calculate value * @param count number of dots for the chart */ - bool freq_chart(size_t id, float *re, float *im, const float *f, float gain, size_t count); + bool freq_chart(size_t id, float *re, float *im, const float *f, float gain, size_t count); /** Get frequency chart of the specific filter * @@ -155,7 +174,7 @@ * @param f frequencies to calculate value * @param count number of dots for the chart */ - bool freq_chart(size_t id, float *dst, const float *f, float gain, size_t count); + bool freq_chart(size_t id, float *dst, const float *f, float gain, size_t count); }; } /* namespace lsp */ diff -Nru lsp-plugins-1.1.24/include/core/filters/Equalizer.h lsp-plugins-1.1.26/include/core/filters/Equalizer.h --- lsp-plugins-1.1.24/include/core/filters/Equalizer.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/filters/Equalizer.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Equalizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 июля 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 июля 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILTERS_EQUALIZER_H_ @@ -22,6 +36,9 @@ EQM_FFT // Approximation of the frequency chart in the frequency range }; + /** + * Set of multiple controllable sequential filters combined into one managed object + */ class Equalizer { private: @@ -60,59 +77,64 @@ explicit Equalizer(); ~Equalizer(); - public: + /** + * Construct the object being part of memory chunk + */ + void construct(); + /** Initialize equalizer * * @param filters number of filters * @param conv_rank convolution size rank * @return true on success */ - bool init(size_t filters, size_t conv_rank); + bool init(size_t filters, size_t conv_rank); /** Destroy equalizer * */ - void destroy(); + void destroy(); + public: /** Update filter parameters * @param id ID of the filter * @param params filter parameters * @return true on success */ - bool set_params(size_t id, const filter_params_t *params); + bool set_params(size_t id, const filter_params_t *params); /** Get filter parameters * @param id ID of the filter * @param params filter parameters * @return true on success */ - bool get_params(size_t id, filter_params_t *params); + bool get_params(size_t id, filter_params_t *params); /** Check that filter is active * * @param id ID of filter * @return true if filter is active */ - inline bool filter_active(size_t id) const { return (id < nFilters) ? vFilters[id].active() : false; } + inline bool filter_active(size_t id) const { return (id < nFilters) ? vFilters[id].active() : false; } /** Check that filter is inactive * * @param id ID of filter * @return true if filter is inactive */ - inline bool filter_inactive(size_t id) const { return (id < nFilters) ? vFilters[id].inactive() : false; } + inline bool filter_inactive(size_t id) const { return (id < nFilters) ? vFilters[id].inactive() : false; } /** Set equalizer mode * * @param mode equalizer mode */ - void set_mode(equalizer_mode_t mode); + void set_mode(equalizer_mode_t mode); /** Set sample rate * * @param sr sample rate */ - void set_sample_rate(size_t sr); + void set_sample_rate(size_t sr); /** Get equalizer mode * @@ -124,9 +146,9 @@ * * @return equalizer latency */ - inline size_t get_latency() const { return nLatency; } + inline size_t get_latency() const { return nLatency; } - /** Get frequency chart of the filter + /** Get frequency chart of the specific filter * * @param id ID of the filter * @param re real part of the frequency chart @@ -135,9 +157,9 @@ * @param count number of dots for the chart * @return status of operation */ - bool freq_chart(size_t id, float *re, float *im, const float *f, size_t count); + bool freq_chart(size_t id, float *re, float *im, const float *f, size_t count); - /** Get frequency chart of the filter + /** Get frequency chart of the specific filter * * @param id ID of the filter * @param c complex numbers that contain the filter transfer function @@ -145,7 +167,24 @@ * @param count number of points * @return status of operation */ - bool freq_chart(size_t id, float *c, const float *f, size_t count); + bool freq_chart(size_t id, float *c, const float *f, size_t count); + + /** + * Get frequency chart of the whole equalizer + * @param re real part of the frequency chart + * @param im imaginary part of the frequency chart + * @param f frequencies to calculate value + * @param count number of dots for the chart + */ + void freq_chart(float *re, float *im, const float *f, size_t count); + + /** + * Get frequency chart of the whole equalizer + * @param c complex numbers that contain the filter transfer function + * @param f frequencies to calculate filter transfer function + * @param count number of points + */ + void freq_chart(float *c, const float *f, size_t count); /** Process the signal * @@ -153,13 +192,13 @@ * @param in input signal samples * @param samples number of samples to process */ - void process(float *out, const float *in, size_t samples); + void process(float *out, const float *in, size_t samples); /** * Dump the state * @param dumper dumper */ - void dump(IStateDumper *v) const; + void dump(IStateDumper *v) const; }; } /* namespace lsp */ diff -Nru lsp-plugins-1.1.24/include/core/filters/FilterBank.h lsp-plugins-1.1.26/include/core/filters/FilterBank.h --- lsp-plugins-1.1.24/include/core/filters/FilterBank.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/filters/FilterBank.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * FilterBank.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 сент. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 сент. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILTERS_FILTERBANK_H_ @@ -27,13 +41,17 @@ uint8_t *vData; // Unaligned data protected: - void clear_delays(); + void clear_delays(); public: explicit FilterBank(); ~FilterBank(); - public: + /** + * Construct the filter bank being a chunk of memory + */ + void construct(); + /** Initialize filter bank * * @param filters number of biquad filters @@ -46,6 +64,7 @@ */ void destroy(); + public: /** Start filter bank, clears number of cascades * */ diff -Nru lsp-plugins-1.1.24/include/core/filters/Filter.h lsp-plugins-1.1.26/include/core/filters/Filter.h --- lsp-plugins-1.1.24/include/core/filters/Filter.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/filters/Filter.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * filter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 июня 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 июня 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_FILTERS_FILTER_H_ @@ -15,6 +29,9 @@ namespace lsp { + /** + * Single filter implementation + */ class Filter { private: @@ -49,52 +66,56 @@ protected: - void complex_transfer_calc(float *re, float *im, float f); - void apo_complex_transfer_calc(float *re, float *im, float f); - f_cascade_t *add_cascade(); - - void calc_rlc_filter(size_t type, const filter_params_t *fp); - void calc_bwc_filter(size_t type, const filter_params_t *fp); - void calc_lrx_filter(size_t type, const filter_params_t *fp); - void calc_apo_filter(size_t type, const filter_params_t *fp); - float bilinear_relative(float f1, float f2); - void bilinear_transform(); - void matched_transform(); + void apo_complex_transfer_calc(float *re, float *im, float f); + f_cascade_t *add_cascade(); + + void calc_rlc_filter(size_t type, const filter_params_t *fp); + void calc_bwc_filter(size_t type, const filter_params_t *fp); + void calc_lrx_filter(size_t type, const filter_params_t *fp); + void calc_apo_filter(size_t type, const filter_params_t *fp); + float bilinear_relative(float f1, float f2); + void bilinear_transform(); + void matched_transform(); public: explicit Filter(); ~Filter(); - public: + /** + * Construct the object being the chunk of memory + */ + void construct(); + /** Initialize filter * - * @param fb filter bank to use + * @param fb filter bank to use, NULL for using internal filter bank * @return true on success */ - bool init(FilterBank *fb); + bool init(FilterBank *fb); /** Destroy filter data * */ - void destroy(); + void destroy(); + public: /** Update filter parameters * * @param params filter parameters */ - void update(size_t sr, const filter_params_t *params); + void update(size_t sr, const filter_params_t *params); /** * Update sample rate * @param sr sample rate */ - void set_sample_rate(size_t sr); + void set_sample_rate(size_t sr); /** Get current filter parameters * * @param params pointer to filter parameters to store */ - void get_params(filter_params_t *params); + void get_params(filter_params_t *params); /** Process signal * @@ -102,7 +123,7 @@ * @param in input signal * @param samples number of samples to process */ - void process(float *out, const float *in, size_t samples); + void process(float *out, const float *in, size_t samples); /** Get the impulse response of the filter * @@ -110,7 +131,7 @@ * @param length length of the impulse response * @return true if impulse response can be taken, false if need to take it from bank */ - bool impulse_response(float *out, size_t length); + bool impulse_response(float *out, size_t length); /** Get frequency chart * @@ -119,7 +140,7 @@ * @param f frequencies to calculate value * @param count number of dots for the chart */ - void freq_chart(float *re, float *im, const float *f, size_t count); + void freq_chart(float *re, float *im, const float *f, size_t count); /** Get frequency chart * @@ -127,41 +148,41 @@ * @param f frequencies to calculate value * @param count number of dots for the chart */ - void freq_chart(float *c, const float *f, size_t count); + void freq_chart(float *c, const float *f, size_t count); /** Mark filter to be cleared * */ - inline void clear() { nFlags |= FF_CLEAR; } + inline void clear() { nFlags |= FF_CLEAR; } /** Rebuild filter * Forces the filter to rebuild into bank of filters */ - void rebuild(); + void rebuild(); /** Get filter latency * * @return filter latency in samples */ - inline size_t latency() const { return nLatency; }; + inline size_t latency() const { return nLatency; }; /** Check if the filter is bypassed * * @return true if the filter is bypassed */ - inline bool inactive() const { return nMode == FM_BYPASS; } + inline bool inactive() const { return nMode == FM_BYPASS; } /** Check if the filter is active * * @return true if the filter is active */ - inline bool active() const { return nMode != FM_BYPASS; } + inline bool active() const { return nMode != FM_BYPASS; } /** * Dump the state * @param dumper dumper */ - void dump(IStateDumper *v) const; + void dump(IStateDumper *v) const; }; } diff -Nru lsp-plugins-1.1.24/include/core/i18n/BuiltinDictionary.h lsp-plugins-1.1.26/include/core/i18n/BuiltinDictionary.h --- lsp-plugins-1.1.24/include/core/i18n/BuiltinDictionary.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/i18n/BuiltinDictionary.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * BuiltinDictionary.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_I18N_BUILTINDICTIONARY_H_ diff -Nru lsp-plugins-1.1.24/include/core/i18n/Dictionary.h lsp-plugins-1.1.26/include/core/i18n/Dictionary.h --- lsp-plugins-1.1.24/include/core/i18n/Dictionary.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/i18n/Dictionary.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * RootDictionary.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_I18N_ROOTDICTIONARY_H_ diff -Nru lsp-plugins-1.1.24/include/core/i18n/IDictionary.h lsp-plugins-1.1.26/include/core/i18n/IDictionary.h --- lsp-plugins-1.1.24/include/core/i18n/IDictionary.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/i18n/IDictionary.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * IDictionary.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_I18N_IDICTIONARY_H_ diff -Nru lsp-plugins-1.1.24/include/core/i18n/JsonDictionary.h lsp-plugins-1.1.26/include/core/i18n/JsonDictionary.h --- lsp-plugins-1.1.24/include/core/i18n/JsonDictionary.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/i18n/JsonDictionary.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Dictionary.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_I18N_FILEDICTIONARY_H_ diff -Nru lsp-plugins-1.1.24/include/core/ICanvas.h lsp-plugins-1.1.26/include/core/ICanvas.h --- lsp-plugins-1.1.24/include/core/ICanvas.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/ICanvas.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * ICanvas.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_ICANVAS_H_ diff -Nru lsp-plugins-1.1.24/include/core/init.h lsp-plugins-1.1.26/include/core/init.h --- lsp-plugins-1.1.24/include/core/init.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/init.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,18 +1,32 @@ -/* - * init.h - * - * Created on: 12 мар. 2019 г. - * Author: sadko - */ - -#ifndef CORE_INIT_H_ -#define CORE_INIT_H_ - -namespace lsp -{ - void init(); - - void finalize(); -} - -#endif /* CORE_INIT_H_ */ +/* + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov + * + * This file is part of lsp-plugins + * Created on: 12 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . + */ + +#ifndef CORE_INIT_H_ +#define CORE_INIT_H_ + +namespace lsp +{ + void init(); + + void finalize(); +} + +#endif /* CORE_INIT_H_ */ diff -Nru lsp-plugins-1.1.24/include/core/interpolation.h lsp-plugins-1.1.26/include/core/interpolation.h --- lsp-plugins-1.1.24/include/core/interpolation.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/interpolation.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * interpolation.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 сент. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 сент. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_INTERPOLATION_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/CharsetDecoder.h lsp-plugins-1.1.26/include/core/io/CharsetDecoder.h --- lsp-plugins-1.1.24/include/core/io/CharsetDecoder.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/CharsetDecoder.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * CharsetDecoder.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_CHARSETDECODER_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/CharsetEncoder.h lsp-plugins-1.1.26/include/core/io/CharsetEncoder.h --- lsp-plugins-1.1.24/include/core/io/CharsetEncoder.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/CharsetEncoder.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * CharsetEncoder.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_CHARSETENCODER_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/charset.h lsp-plugins-1.1.26/include/core/io/charset.h --- lsp-plugins-1.1.24/include/core/io/charset.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/charset.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * charset.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_CHARSET_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/Dir.h lsp-plugins-1.1.26/include/core/io/Dir.h --- lsp-plugins-1.1.24/include/core/io/Dir.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/Dir.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Dir.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_DIR_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/File.h lsp-plugins-1.1.26/include/core/io/File.h --- lsp-plugins-1.1.24/include/core/io/File.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/File.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * File.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_IO_FILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/IInSequence.h lsp-plugins-1.1.26/include/core/io/IInSequence.h --- lsp-plugins-1.1.24/include/core/io/IInSequence.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/IInSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * IInSequence.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_IINSEQUENCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/IInStream.h lsp-plugins-1.1.26/include/core/io/IInStream.h --- lsp-plugins-1.1.24/include/core/io/IInStream.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/IInStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * IInStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_IINSTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/InFileStream.h lsp-plugins-1.1.26/include/core/io/InFileStream.h --- lsp-plugins-1.1.24/include/core/io/InFileStream.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/InFileStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * InFileStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_INFILESTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/InMemoryStream.h lsp-plugins-1.1.26/include/core/io/InMemoryStream.h --- lsp-plugins-1.1.24/include/core/io/InMemoryStream.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/InMemoryStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * InMemoryStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_INMEMORYSTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/InSequence.h lsp-plugins-1.1.26/include/core/io/InSequence.h --- lsp-plugins-1.1.24/include/core/io/InSequence.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/InSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * InSequence.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_INSEQUENCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/InStringSequence.h lsp-plugins-1.1.26/include/core/io/InStringSequence.h --- lsp-plugins-1.1.24/include/core/io/InStringSequence.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/InStringSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * StringReader.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_STRINGREADER_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/IOutSequence.h lsp-plugins-1.1.26/include/core/io/IOutSequence.h --- lsp-plugins-1.1.24/include/core/io/IOutSequence.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/IOutSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * IOutSequence.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_IOUTSEQUENCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/IOutStream.h lsp-plugins-1.1.26/include/core/io/IOutStream.h --- lsp-plugins-1.1.24/include/core/io/IOutStream.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/IOutStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * IOutStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_IOUTSTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/NativeFile.h lsp-plugins-1.1.26/include/core/io/NativeFile.h --- lsp-plugins-1.1.24/include/core/io/NativeFile.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/NativeFile.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * NativeFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_NATIVEFILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/OutFileStream.h lsp-plugins-1.1.26/include/core/io/OutFileStream.h --- lsp-plugins-1.1.24/include/core/io/OutFileStream.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/OutFileStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * OutFileStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_OUTFILESTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/OutMemoryStream.h lsp-plugins-1.1.26/include/core/io/OutMemoryStream.h --- lsp-plugins-1.1.24/include/core/io/OutMemoryStream.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/OutMemoryStream.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * OutMemoryStream.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_OUTMEMORYSTREAM_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/OutSequence.h lsp-plugins-1.1.26/include/core/io/OutSequence.h --- lsp-plugins-1.1.24/include/core/io/OutSequence.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/OutSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * OutSequence.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_OUTSEQUENCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/OutStringSequence.h lsp-plugins-1.1.26/include/core/io/OutStringSequence.h --- lsp-plugins-1.1.24/include/core/io/OutStringSequence.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/OutStringSequence.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * StringWriter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_STRINWRITER_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/Path.h lsp-plugins-1.1.26/include/core/io/Path.h --- lsp-plugins-1.1.24/include/core/io/Path.h 2020-07-16 17:04:08.859453958 +0000 +++ lsp-plugins-1.1.26/include/core/io/Path.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Path.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_IO_PATH_H_ diff -Nru lsp-plugins-1.1.24/include/core/io/StdioFile.h lsp-plugins-1.1.26/include/core/io/StdioFile.h --- lsp-plugins-1.1.24/include/core/io/StdioFile.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/io/StdioFile.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * StdlibFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IO_STDIOFILE_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/IExecutor.h lsp-plugins-1.1.26/include/core/ipc/IExecutor.h --- lsp-plugins-1.1.24/include/core/ipc/IExecutor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/IExecutor.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * IExecutor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IPC_IEXECUTOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/IRunnable.h lsp-plugins-1.1.26/include/core/ipc/IRunnable.h --- lsp-plugins-1.1.24/include/core/ipc/IRunnable.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/IRunnable.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * IRunnable.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_IPC_IRUNNABLE_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/ITask.h lsp-plugins-1.1.26/include/core/ipc/ITask.h --- lsp-plugins-1.1.24/include/core/ipc/ITask.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/ITask.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * ITask.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IPC_ITASK_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/Library.h lsp-plugins-1.1.26/include/core/ipc/Library.h --- lsp-plugins-1.1.24/include/core/ipc/Library.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/Library.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Library.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IPC_LIBRARY_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/Mutex.h lsp-plugins-1.1.26/include/core/ipc/Mutex.h --- lsp-plugins-1.1.24/include/core/ipc/Mutex.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/Mutex.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Mutex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_IPC_MUTEX_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/NativeExecutor.h lsp-plugins-1.1.26/include/core/ipc/NativeExecutor.h --- lsp-plugins-1.1.24/include/core/ipc/NativeExecutor.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/NativeExecutor.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * NativeExecutor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_NATIVEEXECUTOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/Process.h lsp-plugins-1.1.26/include/core/ipc/Process.h --- lsp-plugins-1.1.24/include/core/ipc/Process.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/Process.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Process.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IPC_PROCESS_H_ diff -Nru lsp-plugins-1.1.24/include/core/ipc/Thread.h lsp-plugins-1.1.26/include/core/ipc/Thread.h --- lsp-plugins-1.1.24/include/core/ipc/Thread.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/ipc/Thread.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * Thread.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_IPC_THREAD_H_ diff -Nru lsp-plugins-1.1.24/include/core/IPort.h lsp-plugins-1.1.26/include/core/IPort.h --- lsp-plugins-1.1.24/include/core/IPort.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/IPort.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * IPort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _CORE_IPORT_H_ diff -Nru lsp-plugins-1.1.24/include/core/IStateDumper.h lsp-plugins-1.1.26/include/core/IStateDumper.h --- lsp-plugins-1.1.24/include/core/IStateDumper.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/IStateDumper.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * StateDumper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_STATEDUMPER_H_ diff -Nru lsp-plugins-1.1.24/include/core/ITrigger.h lsp-plugins-1.1.26/include/core/ITrigger.h --- lsp-plugins-1.1.24/include/core/ITrigger.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/ITrigger.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * ITrigger.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_ITRIGGER_H_ diff -Nru lsp-plugins-1.1.24/include/core/IWrapper.h lsp-plugins-1.1.26/include/core/IWrapper.h --- lsp-plugins-1.1.24/include/core/IWrapper.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/IWrapper.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * IWrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_IWRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/core/JsonDumper.h lsp-plugins-1.1.26/include/core/JsonDumper.h --- lsp-plugins-1.1.24/include/core/JsonDumper.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/JsonDumper.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * JsonDumper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_JSONDUMPER_H_ diff -Nru lsp-plugins-1.1.24/include/core/KVTDispatcher.h lsp-plugins-1.1.26/include/core/KVTDispatcher.h --- lsp-plugins-1.1.24/include/core/KVTDispatcher.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/KVTDispatcher.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * kvt_dispatcher.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CONTAINER_LV2_KVT_DISPATCHER_H_ diff -Nru lsp-plugins-1.1.24/include/core/KVTStorage.h lsp-plugins-1.1.26/include/core/KVTStorage.h --- lsp-plugins-1.1.24/include/core/KVTStorage.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/KVTStorage.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * KVTStorage.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_KVTSTORAGE_H_ diff -Nru lsp-plugins-1.1.24/include/core/lib.h lsp-plugins-1.1.26/include/core/lib.h --- lsp-plugins-1.1.24/include/core/lib.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/lib.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * lib.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_LIB_H_ diff -Nru lsp-plugins-1.1.24/include/core/LSPString.h lsp-plugins-1.1.26/include/core/LSPString.h --- lsp-plugins-1.1.24/include/core/LSPString.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/LSPString.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * LSPString.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPSTRING_H_ diff -Nru lsp-plugins-1.1.24/include/core/parse.h lsp-plugins-1.1.26/include/core/parse.h --- lsp-plugins-1.1.24/include/core/parse.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/parse.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_CORE_PARSE_H_ diff -Nru lsp-plugins-1.1.24/include/core/plugin.h lsp-plugins-1.1.26/include/core/plugin.h --- lsp-plugins-1.1.24/include/core/plugin.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/plugin.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov + * + * This file is part of lsp-plugins + * Created on: 26 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . + */ + #ifndef CORE_PLUGIN_H_ #define CORE_PLUGIN_H_ diff -Nru lsp-plugins-1.1.24/include/core/port_data.h lsp-plugins-1.1.26/include/core/port_data.h --- lsp-plugins-1.1.24/include/core/port_data.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/port_data.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * data.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PORT_DATA_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/midi.h lsp-plugins-1.1.26/include/core/protocol/midi.h --- lsp-plugins-1.1.24/include/core/protocol/midi.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/midi.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * midi.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_MIDI_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc/debug.h lsp-plugins-1.1.26/include/core/protocol/osc/debug.h --- lsp-plugins-1.1.24/include/core/protocol/osc/debug.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc/debug.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * debug.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_DEBUG_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc/forge.h lsp-plugins-1.1.26/include/core/protocol/osc/forge.h --- lsp-plugins-1.1.24/include/core/protocol/osc/forge.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc/forge.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * forge.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_FORGE_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc/parse.h lsp-plugins-1.1.26/include/core/protocol/osc/parse.h --- lsp-plugins-1.1.24/include/core/protocol/osc/parse.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc/parse.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_PARSE_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc/pattern.h lsp-plugins-1.1.26/include/core/protocol/osc/pattern.h --- lsp-plugins-1.1.24/include/core/protocol/osc/pattern.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc/pattern.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * pattern.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_PATTERN_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc/types.h lsp-plugins-1.1.26/include/core/protocol/osc/types.h --- lsp-plugins-1.1.24/include/core/protocol/osc/types.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc/types.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/core/protocol/osc.h lsp-plugins-1.1.26/include/core/protocol/osc.h --- lsp-plugins-1.1.24/include/core/protocol/osc.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/protocol/osc.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * osc.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PROTOCOL_OSC_H_ diff -Nru lsp-plugins-1.1.24/include/core/resource.h lsp-plugins-1.1.26/include/core/resource.h --- lsp-plugins-1.1.24/include/core/resource.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/resource.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * resource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_RESOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/core/sampling/Sample.h lsp-plugins-1.1.26/include/core/sampling/Sample.h --- lsp-plugins-1.1.24/include/core/sampling/Sample.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/sampling/Sample.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Sample.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_SAMPLING_SAMPLE_H_ diff -Nru lsp-plugins-1.1.24/include/core/sampling/SamplePlayer.h lsp-plugins-1.1.26/include/core/sampling/SamplePlayer.h --- lsp-plugins-1.1.24/include/core/sampling/SamplePlayer.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/sampling/SamplePlayer.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * SamplePlayer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_SAMPLING_SAMPLEPLAYER_H_ diff -Nru lsp-plugins-1.1.24/include/core/status.h lsp-plugins-1.1.26/include/core/status.h --- lsp-plugins-1.1.24/include/core/status.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/status.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * status.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_STATUS_H_ diff -Nru lsp-plugins-1.1.24/include/core/stdlib/math.h lsp-plugins-1.1.26/include/core/stdlib/math.h --- lsp-plugins-1.1.24/include/core/stdlib/math.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/stdlib/math.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * math.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 ���. 2018 �. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 ���. 2018 �. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_STDLIB_MATH_H_ diff -Nru lsp-plugins-1.1.24/include/core/stdlib/stdio.h lsp-plugins-1.1.26/include/core/stdlib/stdio.h --- lsp-plugins-1.1.24/include/core/stdlib/stdio.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/stdlib/stdio.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,28 +1,42 @@ -/* - * stdio.h - * - * Created on: 29 дек. 2018 г. - * Author: sadko - */ - -#ifndef INCLUDE_CORE_STDLIB_STDIO_H_ -#define INCLUDE_CORE_STDLIB_STDIO_H_ - -#include -#include - -#if defined(PLATFORM_WINDOWS) - - int vasprintf(char **strp, const char *fmt, va_list ap); - - int asprintf(char **strp, const char *fmt, ...); - - int fdsync(FILE *fd); - -#elif defined(PLATFORM_UNIX_COMPATIBLE) - - int fdsync(FILE *fd); - -#endif /* PLATFORM_WINDOWS */ - -#endif /* INCLUDE_CORE_STDLIB_STDIO_H_ */ +/* + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov + * + * This file is part of lsp-plugins + * Created on: 29 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . + */ + +#ifndef INCLUDE_CORE_STDLIB_STDIO_H_ +#define INCLUDE_CORE_STDLIB_STDIO_H_ + +#include +#include + +#if defined(PLATFORM_WINDOWS) + + int vasprintf(char **strp, const char *fmt, va_list ap); + + int asprintf(char **strp, const char *fmt, ...); + + int fdsync(FILE *fd); + +#elif defined(PLATFORM_UNIX_COMPATIBLE) + + int fdsync(FILE *fd); + +#endif /* PLATFORM_WINDOWS */ + +#endif /* INCLUDE_CORE_STDLIB_STDIO_H_ */ diff -Nru lsp-plugins-1.1.24/include/core/stdlib/string.h lsp-plugins-1.1.26/include/core/stdlib/string.h --- lsp-plugins-1.1.24/include/core/stdlib/string.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/core/stdlib/string.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * string.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_STDLIB_STRING_H_ diff -Nru lsp-plugins-1.1.24/include/core/sugar.h lsp-plugins-1.1.26/include/core/sugar.h --- lsp-plugins-1.1.24/include/core/sugar.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/sugar.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * sugar.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_SUGAR_H_ diff -Nru lsp-plugins-1.1.24/include/core/system.h lsp-plugins-1.1.26/include/core/system.h --- lsp-plugins-1.1.24/include/core/system.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/system.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * system.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_SYSTEM_H_ diff -Nru lsp-plugins-1.1.24/include/core/types.h lsp-plugins-1.1.26/include/core/types.h --- lsp-plugins-1.1.24/include/core/types.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/types.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/core/units.h lsp-plugins-1.1.26/include/core/units.h --- lsp-plugins-1.1.24/include/core/units.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/units.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * units.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UNITS_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Analyzer.h lsp-plugins-1.1.26/include/core/util/Analyzer.h --- lsp-plugins-1.1.24/include/core/util/Analyzer.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Analyzer.h 2020-09-15 20:10:12.565193575 +0000 @@ -1,8 +1,22 @@ /* - * Analyzer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_ANALYZER_H_ @@ -11,6 +25,7 @@ #include #include #include +#include namespace lsp { @@ -37,6 +52,9 @@ class Analyzer { + private: + Analyzer & operator = (const Analyzer &); + protected: enum reconfigure_flags { @@ -82,7 +100,7 @@ float *vEnvelope; // FFT envelope public: - Analyzer(); + explicit Analyzer(); ~Analyzer(); public: @@ -311,6 +329,12 @@ { return nReconfigure; } + + /** + * Dump the state + * @param dumper dumper + */ + void dump(IStateDumper *v) const; }; } /* namespace lsp */ diff -Nru lsp-plugins-1.1.24/include/core/util/Blink.h lsp-plugins-1.1.26/include/core/util/Blink.h --- lsp-plugins-1.1.24/include/core/util/Blink.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Blink.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Blink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_BLINK_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Bypass.h lsp-plugins-1.1.26/include/core/util/Bypass.h --- lsp-plugins-1.1.24/include/core/util/Bypass.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Bypass.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Bypass.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_BYPASS_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Color.h lsp-plugins-1.1.26/include/core/util/Color.h --- lsp-plugins-1.1.24/include/core/util/Color.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Color.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Color.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 нояб. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 нояб. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_COLOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Convolver.h lsp-plugins-1.1.26/include/core/util/Convolver.h --- lsp-plugins-1.1.24/include/core/util/Convolver.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Convolver.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,21 +1,31 @@ /* - * Convolver.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_CONVOLVER_H_ #define CORE_UTIL_CONVOLVER_H_ #include -#include +#include - -//#define CONVOLVER_RANK_FFT_SMALL 5 /* for test purposes */ -#define CONVOLVER_RANK_FFT_SMALL 8 /* buffer of 256 samples (128 effective) */ -//#define CONVOLVER_RANK_FFT_SMALL 4 /* buffer of 16 samples (8 effective) */ -#define CONVOLVER_RANK_MIN (CONVOLVER_RANK_FFT_SMALL+1) /* buffer of 512 samples (256 effective) */ +#define CONVOLVER_RANK_MIN 8 /* buffer of 256 samples (128 effective) */ #define CONVOLVER_RANK_MAX 16 /* buffer of 8192 samples (4096 effective) */ namespace lsp @@ -26,34 +36,43 @@ Convolver & operator = (const Convolver &); private: - size_t nConvSize; // Size of convolution - size_t nFrameSize; // Current frame size - size_t nFrameMax; // Maximum frame size - - float *vFrame; // Input signal frame - float *vTempBuf; // Temporary buffer (real + imaginary) - float *vConv; // Convolution (real + imaginary) - float *vBufferHead; // Buffer Head - float *vBufferTail; // Buffer Tail - float *vBufferPtr; // Current pointer - float *vBufferEnd; // Buffer End - float *vConvFirst; // First part of convolution in non-FFT mode - float *vTask; // Task for post-processing (real + imaginary) - - size_t nRank; // FFT rank for convolution - size_t nSteps; // Number of raising steps - size_t nBlocks; // Number of blocks - size_t nBlocksDone; // Number of blocks done - size_t nDirectSize; // Direct convolution size - float *pConv; // Task convolution (real + imaginary) - float *pTargetPtr; // Target pointer for task - uint8_t *vData; + float *vDataBuffer; // Buffer for storing convolution tail data + float *vFrame; // Pointer to the beginning of the input data frame + float *vConvBuffer; // Convolution buffer to perform convolution + float *vTaskData; // Task data for tail convolution + float *vConvData; // FFT convolution data + float *vDirectData; // Direct convolution data + + size_t nDataBufferSize; // Size of data buffer + size_t nDirectSize; // Size of direct convolution data + size_t nFrameSize; // Size of input data frame + size_t nFrameOff; // Offset from the beginning of the input data frame + size_t nConvSize; // The actual convolution size in samples + size_t nLevels; // Number of raising convolution levels + size_t nBlocks; // Number of constant-size blocks + size_t nBlocksDone; // Number of applied constant-size blocks + size_t nRank; // The actual rank of the convolution + size_t nBlkInit; // Initial number of blocks to apply at step # 0 + float fBlkCoef; // The actual coefficient to compute proper block number per formula + + uint8_t *vData; // Non-aligned pointer to the whole allocated data public: explicit Convolver(); ~Convolver(); + /** Construct the convolver + * + */ + void construct(); + + /** Destroy convolver + * + */ + void destroy(); + public: + /** Initialize convolver * * @param data convolution data @@ -63,11 +82,6 @@ */ bool init(const float *data, size_t count, size_t rank, float phase); - /** Destroy convolver - * - */ - void destroy(); - /** Process samples * * @param dst destination buffer @@ -80,7 +94,19 @@ * * @return actual convolution size in samples */ - inline size_t data_size() { return nConvSize; } + inline size_t data_size() const { return nConvSize; } + + /** + * Get actual convolution rank of the convolver + * @return convolution rank + */ + inline size_t rank() const { return nRank; } + + /** + * Dump internal state + * @param v state dumper + */ + void dump(IStateDumper *v) const; }; } /* namespace lsp */ diff -Nru lsp-plugins-1.1.24/include/core/util/Counter.h lsp-plugins-1.1.26/include/core/util/Counter.h --- lsp-plugins-1.1.24/include/core/util/Counter.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Counter.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Counter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_COUNTER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Crossfade.h lsp-plugins-1.1.26/include/core/util/Crossfade.h --- lsp-plugins-1.1.24/include/core/util/Crossfade.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Crossfade.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Crossfade.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_CROSSFADE_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Crossover.h lsp-plugins-1.1.26/include/core/util/Crossover.h --- lsp-plugins-1.1.24/include/core/util/Crossover.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Crossover.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,35 +1,83 @@ /* - * Crossover.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 03 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 03 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_CROSSOVER_H_ #define CORE_UTIL_CROSSOVER_H_ +#include #include +#include namespace lsp { - /** Crossover handler + /* + The overall schema of signal processing by the crossover for 4 bands + (filters are following in order of the increasing frequency): + + INPUT = Input signal passed to the process() method + LPF = Low-pass filter + HPF = High-pass filter + APF = All-pass filter + OUT = Output signal for the particular band passed to the crossover_func_t callback function + + ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ + │INPUT│──┬─►│LPF 0│────►│APF 1│────►│APF 2│────►│OUT 0│ + └─────┘ │ └─────┘ └─────┘ └─────┘ └─────┘ + │ + │ + │ ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ + └─►│HPF 0│──┬─►│LPF 1│────►│APF 2│────►│OUT 1│ + └─────┘ │ └─────┘ └─────┘ └─────┘ + │ + │ + │ ┌─────┐ ┌─────┐ ┌─────┐ + └─►│HPF 1│──┬─►│LPF 2│────►│OUT 2│ + └─────┘ │ └─────┘ └─────┘ + │ + │ + │ ┌─────┐ ┌─────┐ + └─►│HPF 2│────►│OUT 3│ + └─────┘ └─────┘ + */ + + /** + * Crossover callback function for processing band signal * + * @param object the object that handles callback + * @param subject the subject that is used to handle callback + * @param band number of the band + * @param data the output band signal produced by crossover, + * is valid only until the function returns + * @param first index of the first sample in input buffer + * @param count number of processed samples in the data buffer */ - class ICrossHandler - { - public: - ICrossHandler(); - virtual ~ICrossHandler(); + typedef void (* crossover_func_t)(void *object, void *subject, size_t band, const float *data, size_t first, size_t count); - public: - /** Signal processing callback - * - * @param band_id number of band that triggered processing callback - * @param out output buffer - * @param in input buffer - * @param samples number of samples to process - */ - virtual void process(size_t band_id, float *out, const float *in, size_t samples); + /** + * Crossover filter type + */ + enum crossover_mode_t + { + CROSS_MODE_BT, //!< CROSS_MODE_BT bilinear transform + CROSS_MODE_MT //!< CROSS_MODE_MT matched transform }; /** Crossover, splits signal into bands, calls processing handler (if present) @@ -38,123 +86,268 @@ */ class Crossover { - protected: - struct splitpoint_t; - struct band_t; - struct task_t; + private: + Crossover & operator = (const Crossover &); - struct splitpoint_t + protected: + enum xover_type_t { - Filter sLoPass; // Lo-pass filter - Filter sHiPass; // Hi-pass filter - band_t *pLoBand; // Band for lo-pass - band_t *pHiBand; // Band for hi-pass - float fFreq; // Split frequency - bool bChanged; // Changed flag + FILTER_LPF, // Low-pass filter + FILTER_HPF, // High-pass filter + FILTER_APF // All-pass filter }; - struct band_t + typedef struct split_t { - splitpoint_t *pLeft; // Left split point - splitpoint_t *pRight; // Right split point - float *vBuffer; // Buffer for signal processing - float fAmp; // Post-processing amplification - }; + Equalizer sLPF; // Lo-pass filter + Filter sHPF; // Hi-pass filter with all-pass filters + + size_t nBandId; // Number of split point + size_t nSlope; // Filter slope (0 = off) + float fFreq; // Frequency + crossover_mode_t nMode; // Filter type + } split_t; - struct task_t + typedef struct band_t { - splitpoint_t *pSplit; // Split point - const float *vInBuf; // Input buffer - float *vLoBuf; // Buffer for low frequencies - float *vHiBuf; // Buffer for high frequencies - }; + float fGain; // Output gain of the band + float fStart; // Start frequency of the band + float fEnd; // End frequency of the band + bool bEnabled; // Enabled flag + split_t *pStart; // Pointer to starting split point + split_t *pEnd; // Pointer to ending split point + + crossover_func_t pFunc; // Function + void *pObject; // Bound object + void *pSubject; // Bound subject + size_t nId; // Number of the band + } band_t; + + enum reconfigure_t + { + R_GAIN = 1 << 0, // We can reconfigure band gain in softer mode + R_SPLIT = 1 << 1, // Need to reconfigure filter order + + R_ALL = R_GAIN | R_SPLIT + } reconfigure_t; protected: - size_t nBands; // Number of bands + size_t nReconfigure; // Change flag + size_t nSplits; // Number of splits size_t nBufSize; // Buffer size - size_t nSlope; // Crossover slope size_t nSampleRate; // Sample rate + band_t *vBands; // List of bands - splitpoint_t *vSplit; // List of split points - task_t *vTasks; // Split task - float *vBuffers; // Buffer data - ICrossHandler *pHandler; // Crossover handler + split_t *vSplit; // List of split points + split_t **vPlan; // Split plan + size_t nPlanSize; // Size of plan + + float *vLpfBuf; // Buffer for LPF + float *vHpfBuf; // Buffer for HPF + uint8_t *pData; // Unaligned data protected: - void build_tasks(); - void build_task(size_t &n_tasks, size_t left, size_t bands, task_t *task); + inline filter_type_t select_filter(xover_type_t type, crossover_mode_t mode); public: explicit Crossover(); ~Crossover(); - public: + /** Construct crossover + * + */ + void construct(); + + /** Destroy crossover + * + */ + void destroy(); + /** Initialize crossover * * @param bands number of bands - * @param buf_size signal processing buffer size + * @param buf_size maximum signal processing buffer size * @return status of operation */ - bool init(size_t bands, size_t buf_size); + bool init(size_t bands, size_t buf_size); - /** Destroy crossover - * + public: + /** + * Get number of bands + * @return number of bands + */ + inline size_t num_bands() const { return nSplits+1; } + + /** + * Get number of split points + * @return number of split points */ - void destroy(); + inline size_t num_splits() const { return nSplits; } - /** Bind the signal processing handler for the crossover + /** + * Get maximum buffer size for one iteration, if the provided + * buffer is greater than max_buffer_size, the signal will be processed + * in more than one iteration. * - * @param handler signal processing handler to bind + * @return maximum buffer size */ - inline void bind(ICrossHandler *handler) { pHandler = handler; } + inline size_t max_buffer_size() const { return nBufSize; } - /** Set slope of crossover filters, needs reconfiguration + /** Set slope of crossover * + * @param sp split point number * @param slope slope of crossover filters */ - void set_slope(size_t slope); + void set_slope(size_t sp, size_t slope); - /** Set gain of band - * - * @param band band number - * @param gain gain + /** + * Get slope of the split point + * @param sp split point number + * @return slope of the split point, 0 means split point is off, + * negative value means invalid index */ - bool set_gain(size_t band, float gain); + ssize_t get_slope(size_t sp) const; - /** Set split frequency for the split point, needs reconfiguration + /** Set frequency of split point * * @param sp split point number - * @param freq split point frequency + * @param freq split frequency of the split point */ - bool set_frequency(size_t sp, float freq); + void set_frequency(size_t sp, float freq); + + /** + * Get split frequency of the split point + * @param sp split point number + * @return split frequency of the split point, negative value + * means invalid index + */ + float get_frequency(size_t sp) const; + + /** + * Set filter mode for the split point + * @param sp split point + * @param mode mode for the split point + */ + void set_mode(size_t sp, crossover_mode_t mode); + + /** + * Get filter mode of the split point + * @param sp split point + * @param mode mode for the split point or negative value on invalid index + */ + ssize_t get_mode(size_t sp) const; + + /** + * Set gain of the specific output band + * @param band band number + * @param gain gain of the band + */ + void set_gain(size_t band, float gain); + + /** + * Get gain of the specific output band + * @param band band number + * @return gain of the band, negative value on invalid index + */ + float get_gain(size_t band) const; + + /** + * Get start frequency of the band, may call reconfigure() + * @param band band number + * @return start frequency of the band or negative value on invalid index + */ + float get_band_start(size_t band); + + /** + * Get end frequency of the band, may call reconfigure() + * @param band band number + * @return end frequency of the band or negative value on invalid index + */ + float get_band_end(size_t band); + + /** + * Check that the band is active (always true for band 0), may call reconfigure() + * @param band band number + * @return true if band is active + */ + bool band_active(size_t band); + + /** + * Set band signal handler + * @param band band number + * @param func handler function + * @param object object to pass to function + * @param subject subject to pass to function + * @return false if invalid band number has been specified + */ + bool set_handler(size_t band, crossover_func_t func, void *object, void *subject); + + /** + * Unset band signal handler + * @param band band number + * @return false if invalid band number has been specified + */ + bool unset_handler(size_t band); /** Set sample rate, needs reconfiguration * * @param sr sample rate to set */ - inline void set_sample_rate(size_t sr) { nSampleRate = sr; } + void set_sample_rate(size_t sr); + + /** + * Get sample rate of the crossover + * @return sample rate + */ + inline size_t get_sample_rate() { return nSampleRate; } - /** Get frequency chart of the crossover + /** Get frequency chart of the crossover band. This method returns frequency chart + * without applied all-pass filters * + * @param band number of the band * @param re real part of the frequency chart * @param im imaginary part of the frequency chart * @param f frequencies to calculate value - * @param count number of dots for the chart + * @param count number of points for the chart + * @return false if invalid band index is specified */ - bool freq_chart(float *re, float *im, const float *f, size_t count); + bool freq_chart(size_t band, float *re, float *im, const float *f, size_t count); + + /** Get frequency chart of the crossover. This method returns frequency chart + * without applied all-pass filters + * + * @param band number of the band + * @param c transfer function (packed complex numbers) + * @param f frequencies to calculate value + * @param count number of points for the chart + * @return false if invalid band index is specified + */ + bool freq_chart(size_t band, float *c, const float *f, size_t count); + + /** + * Check that we need to call reconfigure() + * @return true if we need to call reconfigure() + */ + inline bool needs_reconfiguration() const { return nReconfigure != 0; } /** Reconfigure crossover after parameter update * */ - void reconfigure(); + void reconfigure(); - /** Process data + /** Process data and issue callbacks, automatically calls reconfigure() + * if the reconfiguration is required * - * @param out - * @param in - * @param samples + * @param in input buffer to process data + * @param samples number of samples to process + */ + void process(const float *in, size_t samples); + + /** + * Dump the state + * @param dumper dumper */ - void process(float *out, const float *in, size_t samples); + void dump(IStateDumper *v) const; }; } /* namespace lsp */ diff -Nru lsp-plugins-1.1.24/include/core/util/Delay.h lsp-plugins-1.1.26/include/core/util/Delay.h --- lsp-plugins-1.1.24/include/core/util/Delay.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Delay.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Delay.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_DELAY_HPP_ diff -Nru lsp-plugins-1.1.24/include/core/util/Depopper.h lsp-plugins-1.1.26/include/core/util/Depopper.h --- lsp-plugins-1.1.24/include/core/util/Depopper.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Depopper.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Depopper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_DEPOPPER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Dither.h lsp-plugins-1.1.26/include/core/util/Dither.h --- lsp-plugins-1.1.24/include/core/util/Dither.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Dither.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Dither.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_DITHER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/LatencyDetector.h lsp-plugins-1.1.26/include/core/util/LatencyDetector.h --- lsp-plugins-1.1.24/include/core/util/LatencyDetector.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/LatencyDetector.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * LatencyDetector.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 5 Apr 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 5 Apr 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_LATENCYDETECTOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/MeterGraph.h lsp-plugins-1.1.26/include/core/util/MeterGraph.h --- lsp-plugins-1.1.24/include/core/util/MeterGraph.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/MeterGraph.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Meter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_METER_GRAPH_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Oscillator.h lsp-plugins-1.1.26/include/core/util/Oscillator.h --- lsp-plugins-1.1.24/include/core/util/Oscillator.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Oscillator.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Oscillator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 20 Mar 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 20 Mar 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_OSCILLATOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Oversampler.h lsp-plugins-1.1.26/include/core/util/Oversampler.h --- lsp-plugins-1.1.24/include/core/util/Oversampler.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Oversampler.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Oversampler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_OVERSAMPLER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Randomizer.h lsp-plugins-1.1.26/include/core/util/Randomizer.h --- lsp-plugins-1.1.24/include/core/util/Randomizer.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Randomizer.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Randomizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 марта 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 марта 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_RANDOMIZER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/ResponseTaker.h lsp-plugins-1.1.26/include/core/util/ResponseTaker.h --- lsp-plugins-1.1.24/include/core/util/ResponseTaker.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/ResponseTaker.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * ResponseTaker.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 30 Jul 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 30 Jul 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_RESPONSETAKER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/ShiftBuffer.h lsp-plugins-1.1.26/include/core/util/ShiftBuffer.h --- lsp-plugins-1.1.24/include/core/util/ShiftBuffer.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/ShiftBuffer.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * ShiftBuffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 янв. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 янв. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_SHIFTBUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Sidechain.h lsp-plugins-1.1.26/include/core/util/Sidechain.h --- lsp-plugins-1.1.24/include/core/util/Sidechain.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Sidechain.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Sidechain.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 сент. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 сент. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_SIDECHAIN_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/SpectralProcessor.h lsp-plugins-1.1.26/include/core/util/SpectralProcessor.h --- lsp-plugins-1.1.24/include/core/util/SpectralProcessor.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/SpectralProcessor.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * SpectralProcessor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_SPECTRALPROCESSOR_H_ @@ -13,6 +27,13 @@ namespace lsp { + /** + * Spectral processor callback function + * @param object the object that handles callback + * @param subject the subject that is used to handle callback + * @param spectrum spectral data for processing (packed complex numbers) + * @param rank the overall rank of the FFT transform (log2(size)) + */ typedef void (* spectral_processor_func_t)(void *object, void *subject, float *spectrum, size_t rank); /** diff -Nru lsp-plugins-1.1.24/include/core/util/SyncChirpProcessor.h lsp-plugins-1.1.26/include/core/util/SyncChirpProcessor.h --- lsp-plugins-1.1.24/include/core/util/SyncChirpProcessor.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/SyncChirpProcessor.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * SyncChirpProcessor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 12 Jul 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 12 Jul 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_SYNCCHIRPPROCESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/core/util/Toggle.h lsp-plugins-1.1.26/include/core/util/Toggle.h --- lsp-plugins-1.1.24/include/core/util/Toggle.h 2020-07-16 17:04:08.860453949 +0000 +++ lsp-plugins-1.1.26/include/core/util/Toggle.h 2020-09-15 20:10:12.566193566 +0000 @@ -1,8 +1,22 @@ /* - * Toggle.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_UTIL_TOGGLE_H_ diff -Nru lsp-plugins-1.1.24/include/core/windows.h lsp-plugins-1.1.26/include/core/windows.h --- lsp-plugins-1.1.24/include/core/windows.h 2020-07-16 17:04:08.858453967 +0000 +++ lsp-plugins-1.1.26/include/core/windows.h 2020-09-15 20:10:12.563193592 +0000 @@ -1,8 +1,22 @@ /* - * Windows.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_WINDOWS_H_ diff -Nru lsp-plugins-1.1.24/include/data/castorage.h lsp-plugins-1.1.26/include/data/castorage.h --- lsp-plugins-1.1.24/include/data/castorage.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/castorage.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * cstorage.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DATA_CASTORAGE_H_ diff -Nru lsp-plugins-1.1.24/include/data/cbitset.h lsp-plugins-1.1.26/include/data/cbitset.h --- lsp-plugins-1.1.24/include/data/cbitset.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/cbitset.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * cbitset.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DATA_CBITSET_H_ diff -Nru lsp-plugins-1.1.24/include/data/chashmap.h lsp-plugins-1.1.26/include/data/chashmap.h --- lsp-plugins-1.1.24/include/data/chashmap.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/chashmap.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,214 +0,0 @@ -///* -// * chashmap.h -// * -// * Created on: 14 апр. 2016 г. -// * Author: sadko -// */ -// -//#ifndef DATA_CHASHMAP_H_ -//#define DATA_CHASHMAP_H_ -// -//#include -// -//namespace lsp -//{ -// class basic_chashmap -// { -// protected: -// static const size_t HASH_SEED = 16; -// -// typedef struct item_t -// { -// item_t *next; -// item_t *prev; -// size_t key; -// void *value; -// } item_t; -// -// typedef struct list_t -// { -// size_t nItems; -// item_t *pHead; -// } list_t; -// -// protected: -// size_t nNodes; -// size_t nItems; -// list_t **vNodes; -// -// protected: -// void *do_get(size_t key) -// { -// if (nNodes <= 0) -// return NULL; -// list_t *list = vNodes[key % nNodes]; -// key /= nNodes; -// if (list == NULL) -// return NULL; -// for (size_t i=0; inItems; ++i) -// { -// if (list->vItems[i].key == key) -// return list->vItems[i].value; -// } -// return NULL; -// } -// -// bool resize() -// { -// list_t **nodes = new list_t *[nNodes << 1]; -// for (size_t i=0; inItems; ++i) -// { -// // Replace previous value -// if (list->vItems[i].key == tmp_k) -// { -// if (prev != NULL) -// *prev = list->vItems[i].value; -// list->vItems[i].value = value; -// return true; -// } -// } -// } -// -// // Extend hash until list is NULL or list size < HASH_SEED -// while ((list != NULL) && (list->nItems >= HASH_SEED)) -// { -// if (!resize()) -// return false; -// size_t seed = key % nNodes; -// list = vNodes[seed]; -// } -// -// if (list == NULL) -// { -// list = new list_t; -// if (list == NULL) -// return false; -// list->nItems = 0; -// vNodes[seed] = list; -// } -// -// size_t tmp_k = key / nNodes; -// list->vItems[0].key = tmp_k; -// list->vItems[0].value = value; -// list->nItems ++; -// if (prev != NULL) -// *prev = NULL; -// nItems ++; -// return true; -// } -// -// public: -// basic_chashmap() -// { -// nNodes = 0; -// nItems = 0; -// vNodes = NULL; -// } -// -// ~basic_chashmap() -// { -// flush(); -// } -// -// inline void clear() -// { -// for (size_t i=0; inItems = 0; -// } -// nItems = 0; -// } -// -// inline size_t size() const { return nItems; } -// -// void flush() -// { -// if (vNodes != NULL) -// { -// for (size_t i=0; i -// class chashmap: public basic_chashmap -// { -// public: -// inline T *operator[](size_t key) -// { -// return reinterpret_cast(do_get(key)); -// } -// -// inline T *get(size_t key) -// { -// return reinterpret_cast(do_get(key)); -// } -// -// inline bool put(size_t key, T *value) -// { -// return do_put(key, value, NULL); -// } -// -// inline bool put(size_t key, T *value, T **prev) -// { -// return do_put(key, value, reinterpret_cast(prev)); -// } -// }; -// -//} -// -// -//#endif /* DATA_CHASHMAP_H_ */ diff -Nru lsp-plugins-1.1.24/include/data/cstack.h lsp-plugins-1.1.26/include/data/cstack.h --- lsp-plugins-1.1.24/include/data/cstack.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/cstack.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * cstack.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 мар. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 мар. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DATA_CSTACK_H_ diff -Nru lsp-plugins-1.1.24/include/data/cstorage.h lsp-plugins-1.1.26/include/data/cstorage.h --- lsp-plugins-1.1.24/include/data/cstorage.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/cstorage.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * cstorage.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DATA_CSTORAGE_H_ diff -Nru lsp-plugins-1.1.24/include/data/cvector.h lsp-plugins-1.1.26/include/data/cvector.h --- lsp-plugins-1.1.24/include/data/cvector.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/data/cvector.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * cvector.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 03 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 03 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DATA_CVECTOR_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/complex.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/complex.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/complex.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/convolution.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/convolution.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/convolution.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/convolution.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * convolution.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_CONVOLUTION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/copy.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/copy.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/copy.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/apply.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/apply.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/apply.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/apply.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * apply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_APPLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/const.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/const.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/const.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/const.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/papply.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/papply.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/papply.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/papply.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * papply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_PAPPLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/parse.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/parse.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/parse.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/parse.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_PARSE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/restore.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/restore.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv/restore.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv/restore.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * restore.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_RESTORE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fastconv.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fastconv.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/butterfly.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/butterfly.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/butterfly.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_BUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/const.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/const.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/const.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/const.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/normalize.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/normalize.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/normalize.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/normalize.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * normalize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_NORMALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/pbutterfly.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/pbutterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/pbutterfly.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/pbutterfly.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * pbutterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_PBUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/pscramble.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/pscramble.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/pscramble.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/pscramble.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * pscramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_PSCRAMBLE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/scramble.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft/scramble.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft/scramble.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_SCRAMBLE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/fft.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/fft.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/dynamic.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/dynamic.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FILTERS_DYNAMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/static.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/static.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FILTERS_STATIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/transfer.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/transfer.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/transfer.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/transfer.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * transfer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FILTERS_TRANSFER_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/filters/transform.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/filters/transform.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/float.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/float.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/float.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/float.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/hmath/hdotp.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/hmath/hdotp.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * hdotp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/hmath/hsum.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/hmath/hsum.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/mix.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/mix.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/mix.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/mix.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/msmatrix.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/msmatrix.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/msmatrix.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * msmatrix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pcomplex.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pcomplex.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pcomplex.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pfft.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pfft.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pfft.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pfft.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * pfft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_DSP_ARCH_AARCH64_ASIMD_PFFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/abs_vv.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/abs_vv.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * abs_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/exp.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/exp.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/exp.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/fmop_kx.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/fmop_kx.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/fmop_vv.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/fmop_vv.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/log.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/log.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/log.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/minmax.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/minmax.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/op_kx.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/op_kx.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/op_vv.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/op_vv.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/pow.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/pmath/pow.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/pmath/pow.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/resampling.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/resampling.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/resampling.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/resampling.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * resample.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/search/iminmax.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/search/iminmax.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/search/iminmax.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/search/iminmax.h 2020-09-15 20:10:12.580193447 +0000 @@ -1,8 +1,22 @@ /* - * search.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_SEARCH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/search/minmax.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/search/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/asimd/search/minmax.h 2020-07-16 17:04:08.871453851 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/asimd/search/minmax.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ASIMD_SEARCH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/atomic.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/atomic.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/atomic.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/atomic.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * atomic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_ATOMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/bits.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/bits.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/bits.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/bswap.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/bswap.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/bswap.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/bswap.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * bswap.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_BSWAP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/features.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/features.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/features.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/features.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * features.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_FEATURES_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/aarch64/fpcr.h lsp-plugins-1.1.26/include/dsp/arch/aarch64/fpcr.h --- lsp-plugins-1.1.24/include/dsp/arch/aarch64/fpcr.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/aarch64/fpcr.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * fpcr.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_AARCH64_FPCR_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/armv6/bits.h lsp-plugins-1.1.26/include/dsp/arch/arm/armv6/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/armv6/bits.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/armv6/bits.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_ARMV6_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/armv7/bits.h lsp-plugins-1.1.26/include/dsp/arch/arm/armv7/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/armv7/bits.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/armv7/bits.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_ARMV7_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/atomic.h lsp-plugins-1.1.26/include/dsp/arch/arm/atomic.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/atomic.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/atomic.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * atomic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_ATOMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/bits.h lsp-plugins-1.1.26/include/dsp/arch/arm/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/bits.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/bits.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/bswap.h lsp-plugins-1.1.26/include/dsp/arch/arm/bswap.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/bswap.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/bswap.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * bswap.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_BSWAP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/features.h lsp-plugins-1.1.26/include/dsp/arch/arm/features.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/features.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/features.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * features.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_FEATURES_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/fpscr.h lsp-plugins-1.1.26/include/dsp/arch/arm/fpscr.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/fpscr.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/fpscr.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * fpscr.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_FPSCR_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/complex.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/complex.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/complex.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/convolution.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/convolution.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/convolution.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/convolution.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * convolve.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_CONVOLVE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/copy.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/copy.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/copy.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/apply.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/apply.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/apply.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/apply.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * apply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FASTCONV_APPLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/papply.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/papply.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/papply.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/papply.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * papply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FASTCONV_PAPPLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/parse.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/parse.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/parse.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/parse.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FASTCONV_PARSE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/restore.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/restore.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv/restore.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv/restore.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * restore.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FASTCONV_RESTORE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fastconv.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fastconv.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/butterfly.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/butterfly.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/butterfly.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_BUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/const.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/const.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/const.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/const.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/normalize.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/normalize.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/normalize.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/normalize.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * normalize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_NORMALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/pbutterfly.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/pbutterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/pbutterfly.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/pbutterfly.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * pbutterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_PBUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/pscramble.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/pscramble.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/pscramble.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/pscramble.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * pscramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_PSCRAMBLE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/scramble.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft/scramble.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft/scramble.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_SCRAMBLE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/fft.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/fft.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/dynamic.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/dynamic.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FILTERS_DYNAMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/static.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/static.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FILTERS_STATIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/transfer.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/transfer.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/transfer.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/transfer.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * transfer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FILTERS_TRANSFER_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/filters/transform.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/filters/transform.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/float.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/float.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/float.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/float.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/graphics/effects.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/graphics/effects.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/graphics/effects.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/graphics/effects.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * effects.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_GRAPHICS_EFFECTS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/graphics.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/graphics.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/graphics.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/hmath/hdotp.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/hmath/hdotp.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * hdotp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/hmath/hsum.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/hmath/hsum.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/mix.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/mix.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/mix.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/mix.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/msmatrix.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/msmatrix.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/msmatrix.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * msmatrix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pcomplex.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pcomplex.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pcomplex.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * pcomplex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/abs_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/abs_vv.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * abs_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/exp.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/exp.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/exp.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/fmop_kx.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/fmop_kx.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/fmop_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/fmop_vv.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/log.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/log.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/log.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/minmax.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/minmax.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/op_kx.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/op_kx.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/op_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/op_vv.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/pow.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/pmath/pow.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/pmath/pow.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/resampling.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/resampling.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/resampling.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/resampling.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * resampling.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/search/iminmax.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/search/iminmax.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/search/iminmax.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/search/iminmax.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * search.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_SEARCH_IMINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/search/minmax.h lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/search/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/arm/neon-d32/search/minmax.h 2020-07-16 17:04:08.865453905 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/arm/neon-d32/search/minmax.h 2020-09-15 20:10:12.573193507 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ARM_NEON_D32_SEARCH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/3dmath.h lsp-plugins-1.1.26/include/dsp/arch/native/3dmath.h --- lsp-plugins-1.1.24/include/dsp/arch/native/3dmath.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/3dmath.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * 3dmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_3DMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/atomic.h lsp-plugins-1.1.26/include/dsp/arch/native/atomic.h --- lsp-plugins-1.1.24/include/dsp/arch/native/atomic.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/atomic.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * atomic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_ATOMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/bits.h lsp-plugins-1.1.26/include/dsp/arch/native/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/native/bits.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/bits.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/bswap.h lsp-plugins-1.1.26/include/dsp/arch/native/bswap.h --- lsp-plugins-1.1.24/include/dsp/arch/native/bswap.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/bswap.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * bswap.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_BSWAP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/coding.h lsp-plugins-1.1.26/include/dsp/arch/native/coding.h --- lsp-plugins-1.1.24/include/dsp/arch/native/coding.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/coding.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * coding.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_CODING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/complex.h lsp-plugins-1.1.26/include/dsp/arch/native/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/native/complex.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/complex.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/context.h lsp-plugins-1.1.26/include/dsp/arch/native/context.h --- lsp-plugins-1.1.24/include/dsp/arch/native/context.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/context.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * context.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_CONTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/convolution.h lsp-plugins-1.1.26/include/dsp/arch/native/convolution.h --- lsp-plugins-1.1.24/include/dsp/arch/native/convolution.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/convolution.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * convolution.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_CONVOLUTION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/copy.h lsp-plugins-1.1.26/include/dsp/arch/native/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/native/copy.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/copy.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/fastconv.h lsp-plugins-1.1.26/include/dsp/arch/native/fastconv.h --- lsp-plugins-1.1.24/include/dsp/arch/native/fastconv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/fastconv.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 03 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 03 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/fft.h lsp-plugins-1.1.26/include/dsp/arch/native/fft.h --- lsp-plugins-1.1.24/include/dsp/arch/native/fft.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/fft.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/native/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/native/filters/dynamic.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/filters/dynamic.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FILTERS_DYNAMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/native/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/native/filters/static.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/filters/static.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FILTERS_STATIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/filters/transfer.h lsp-plugins-1.1.26/include/dsp/arch/native/filters/transfer.h --- lsp-plugins-1.1.24/include/dsp/arch/native/filters/transfer.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/filters/transfer.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * transer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FILTERS_TRANSFER_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/native/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/native/filters/transform.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/filters/transform.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/float.h lsp-plugins-1.1.26/include/dsp/arch/native/float.h --- lsp-plugins-1.1.24/include/dsp/arch/native/float.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/float.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/graphics/effects.h lsp-plugins-1.1.26/include/dsp/arch/native/graphics/effects.h --- lsp-plugins-1.1.24/include/dsp/arch/native/graphics/effects.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/graphics/effects.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * effects.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_GRAPHICS_EFFECTS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/graphics/interpolation.h lsp-plugins-1.1.26/include/dsp/arch/native/graphics/interpolation.h --- lsp-plugins-1.1.24/include/dsp/arch/native/graphics/interpolation.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/graphics/interpolation.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * interpolation.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_GRAPHICS_INTERPOLATION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/graphics.h lsp-plugins-1.1.26/include/dsp/arch/native/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/native/graphics.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/graphics.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/arch/native/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/arch/native/hmath/hdotp.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/hmath/hdotp.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * hdotp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/arch/native/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/arch/native/hmath/hsum.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/hmath/hsum.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/hmath.h lsp-plugins-1.1.26/include/dsp/arch/native/hmath.h --- lsp-plugins-1.1.24/include/dsp/arch/native/hmath.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/hmath.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * hmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_HMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/mix.h lsp-plugins-1.1.26/include/dsp/arch/native/mix.h --- lsp-plugins-1.1.24/include/dsp/arch/native/mix.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/mix.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/msmatrix.h lsp-plugins-1.1.26/include/dsp/arch/native/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/arch/native/msmatrix.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/msmatrix.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * dsp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pcomplex.h lsp-plugins-1.1.26/include/dsp/arch/native/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pcomplex.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pcomplex.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/abs_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/abs_vv.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * abs_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/exp.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/exp.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/exp.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/fmop_kx.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/fmop_kx.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/fmop_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/fmop_vv.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/log.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/log.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/log.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/minmax.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/minmax.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/op_kx.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/op_kx.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/op_vv.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/op_vv.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath/pow.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath/pow.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath/pow.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/pmath.h lsp-plugins-1.1.26/include/dsp/arch/native/pmath.h --- lsp-plugins-1.1.24/include/dsp/arch/native/pmath.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/pmath.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * pmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_PMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/resampling.h lsp-plugins-1.1.26/include/dsp/arch/native/resampling.h --- lsp-plugins-1.1.24/include/dsp/arch/native/resampling.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/resampling.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * resampling.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/search.h lsp-plugins-1.1.26/include/dsp/arch/native/search.h --- lsp-plugins-1.1.24/include/dsp/arch/native/search.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/search.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * search.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 мая 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 мая 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_SEARCH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/native/smath.h lsp-plugins-1.1.26/include/dsp/arch/native/smath.h --- lsp-plugins-1.1.24/include/dsp/arch/native/smath.h 2020-07-16 17:04:08.866453896 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/native/smath.h 2020-09-15 20:10:12.574193498 +0000 @@ -1,8 +1,22 @@ /* - * smath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 апр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 апр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_NATIVE_SMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/atomic.h lsp-plugins-1.1.26/include/dsp/arch/x86/atomic.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/atomic.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/atomic.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * x86.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 02 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 02 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_ATOMIC_X86_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/complex.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/complex.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/complex.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/const.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/const.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/const.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/const.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/convolution.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/convolution.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/convolution.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/convolution.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * convolution.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_CONVOLUTION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/copy.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/copy.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/copy.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/apply.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/apply.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/apply.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/apply.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * apply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FASTCONV_APPLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/butterfly.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/butterfly.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/butterfly.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_IMPL diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/prepare.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/prepare.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv/prepare.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv/prepare.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * prepare.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_IMPL diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fastconv.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fastconv.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/butterfly.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/butterfly.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/butterfly.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_BUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/const.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/const.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/const.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/const.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/normalize.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/normalize.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/normalize.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/normalize.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * normalize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_NORMALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_butterfly.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_butterfly.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_butterfly.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * p_butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_P_BUTTERFLY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_repack.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_repack.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_repack.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_repack.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * p_repack.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_P_REPACK_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_scramble.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/p_scramble.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/p_scramble.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * p_scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_IMPL diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/scramble.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft/scramble.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft/scramble.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_IMPL diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/fft.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/fft.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/dynamic.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/dynamic.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_DYN_FILTERS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/static.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/static.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FILTERS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/transfer.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/transfer.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/transfer.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/transfer.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * transfer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FILTERS_TRANSFER_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/filters/transform.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/filters/transform.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/float.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/float.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/float.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/float.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/graphics.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/graphics.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/graphics.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/hmath/hdotp.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/hmath/hdotp.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * hdotp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/hmath/hsum.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/hmath/hsum.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/mix.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/mix.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/mix.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/mix.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/msmatrix.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/msmatrix.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/msmatrix.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * msmatrix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pcomplex.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pcomplex.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pcomplex.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * pcomplex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pfft.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pfft.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pfft.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pfft.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * pfft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PFFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/abs_vv.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/abs_vv.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * abs_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/fmop_kx.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/fmop_kx.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/fmop_vv.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/fmop_vv.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/minmax.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/minmax.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/op_kx.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/op_kx.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/pmath/op_vv.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/pmath/op_vv.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/resampling.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/resampling.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/resampling.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/resampling.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * resampling.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/search/minmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/search/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/search/minmax.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/search/minmax.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_SEARCH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx/xcr.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx/xcr.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx/xcr.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx/xcr.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * xcr.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX_XCR_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/fft/normalize.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/fft/normalize.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/fft/normalize.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/fft/normalize.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * normalize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_FFT_NORMALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/float.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/float.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/float.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/float.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/graphics/effects.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/graphics/effects.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/graphics/effects.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/graphics/effects.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * effects.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_DSP_ARCH_X86_AVX2_GRAPHICS_EFFECTS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/graphics/transpose.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/graphics/transpose.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/graphics/transpose.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/graphics/transpose.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * transpose.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_GRAPHICS_TRANSPOSE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/exp.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/exp.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/exp.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/fmop_kx.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/fmop_kx.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/log.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/log.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/log.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/op_kx.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/op_kx.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/pow.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/pmath/pow.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/pmath/pow.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/search/iminmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/search/iminmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/avx2/search/iminmax.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/avx2/search/iminmax.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * iminmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_AVX2_SEARCH_IMINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/bits.h lsp-plugins-1.1.26/include/dsp/arch/x86/bits.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/bits.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/bits.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/bswap.h lsp-plugins-1.1.26/include/dsp/arch/x86/bswap.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/bswap.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/bswap.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * bswap.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 мар. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 мар. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_BSWAP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/copy.h lsp-plugins-1.1.26/include/dsp/arch/x86/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/copy.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/copy.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/cpuid.h lsp-plugins-1.1.26/include/dsp/arch/x86/cpuid.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/cpuid.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/cpuid.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * cpuid.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 дек. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 дек. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_CPUID_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/features.h lsp-plugins-1.1.26/include/dsp/arch/x86/features.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/features.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/features.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * features.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_FEATURES_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/float.h lsp-plugins-1.1.26/include/dsp/arch/x86/float.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/float.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/float.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/graphics.h lsp-plugins-1.1.26/include/dsp/arch/x86/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/graphics.h 2020-07-16 17:04:08.867453887 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/graphics.h 2020-09-15 20:10:12.575193489 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/3dmath.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/3dmath.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/3dmath.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/3dmath.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * 3dmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_3DMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/complex.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/complex.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/complex.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/const.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/const.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/const.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/const.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_DSP_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/convolution.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/convolution.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/convolution.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/convolution.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * convolve.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_CONVOLUTION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/copy.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/copy.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/copy.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/apply.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/apply.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/apply.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/apply.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * apply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_IMPL #error "This header should not be included directly" diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/irestore.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/irestore.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/irestore.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/irestore.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * irestore.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_IMPL #error "This header should not be included directly" diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/papply.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/papply.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/papply.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/papply.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * papply.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_IMPL #error "This header should not be included directly" diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/parse.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/parse.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/parse.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/parse.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_IMPL #error "This header should not be included directly" diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/restore.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/restore.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv/restore.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv/restore.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * restore.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_IMPL #error "This header should not be included directly" diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fastconv.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fastconv.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/butterfly.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/butterfly.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/butterfly.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ /* This is the SSE implementation of the function: diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/const.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/const.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/const.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/const.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FFT_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/normalize.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/normalize.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/normalize.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/normalize.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * normalize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FFT_NORMALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_butterfly.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_butterfly.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_butterfly.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_butterfly.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * p_butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #define FFT_BUTTERFLY_BODY(add_b, add_a) \ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_scramble.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_scramble.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_scramble.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * p_scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ namespace sse diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_switch.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_switch.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/p_switch.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/p_switch.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * p_switch.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ // This is the SSE implementation of the scrambling functions for self data diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/scramble.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/scramble.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/scramble.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/scramble.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * scramble.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ // This is the SSE implementation of the scrambling functions for self data diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/switch.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/switch.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft/switch.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft/switch.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * butterfly.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ // This is the SSE implementation of the scrambling functions for self data diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/fft.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/fft.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/dynamic.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/dynamic.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FILTERS_DYNAMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/static.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/static.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 05 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 05 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FILTERS_STATIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/transfer.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/transfer.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/transfer.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/transfer.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * transfer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FILTERS_TRANSFER_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/filters/transform.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/filters/transform.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/float.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/float.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/float.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/float.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/graphics.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/graphics.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/graphics.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/hmath/hdotp.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/hmath/hdotp.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * hdotp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/hmath/hsum.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/hmath/hsum.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/mix.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/mix.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/mix.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/mix.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/msmatrix.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/msmatrix.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/msmatrix.h 2020-09-15 20:10:12.576193481 +0000 @@ -1,8 +1,22 @@ /* - * msmatrix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/mxcsr.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/mxcsr.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/mxcsr.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/mxcsr.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * mxcsr.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_MXCSR_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pcomplex.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pcomplex.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pcomplex.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * pcomplex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/abs_vv.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/abs_vv.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * abs.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/fmop_kx.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/fmop_kx.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/fmop_vv.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/fmop_vv.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/minmax.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/minmax.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/op_kx.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/op_kx.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/pmath/op_vv.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/pmath/op_vv.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/resampling.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/resampling.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/resampling.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/resampling.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * resampling.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/search/minmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/search/minmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/search/minmax.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/search/minmax.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_SEARCH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse/smath.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse/smath.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse/smath.h 2020-07-16 17:04:08.868453878 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse/smath.h 2020-09-15 20:10:12.577193473 +0000 @@ -1,8 +1,22 @@ /* - * smath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 апр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 апр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_SMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/float.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/float.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/float.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/float.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics/axis.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics/axis.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics/axis.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics/axis.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * axis.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_GRAPHICS_AXIS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics/effects.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics/effects.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics/effects.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics/effects.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * effects.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE_GRAPHICS_EFFECTS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/graphics.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/graphics.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_DSP_ARCH_X86_SSE2_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/exp.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/exp.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/exp.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/fmop_kx.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/fmop_kx.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/fmop_vv.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/fmop_vv.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/log.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/log.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/log.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/op_kx.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/op_kx.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/op_vv.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/op_vv.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 янв. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 янв. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/pow.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/pmath/pow.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/pmath/pow.h 2020-09-15 20:10:12.579193456 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/search/iminmax.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/search/iminmax.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse2/search/iminmax.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse2/search/iminmax.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * search.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 окт. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 окт. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE2_SEARCH_IMINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/3dmath.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/3dmath.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/3dmath.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/3dmath.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * 3dmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 мар. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 мар. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_3DMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/complex.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/complex.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/complex.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/complex.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 февр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 февр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/copy.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/copy.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/copy.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/copy.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/dynamic.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/dynamic.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/dynamic.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/dynamic.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * dynamic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_FILTERS_DYNAMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/static.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/static.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/static.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/static.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * static.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 01 сен. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 01 сен. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_FILTERS_STATIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/transform.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/transform.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/filters/transform.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/filters/transform.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * transform.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 февр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 февр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE3_FILTERS_TRANSFORM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/graphics.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/graphics.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse3/graphics.h 2020-07-16 17:04:08.869453869 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse3/graphics.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 апр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 апр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ /* Copyright (C) 2007 Julien Pommier diff -Nru lsp-plugins-1.1.24/include/dsp/arch/x86/sse4/3dmath.h lsp-plugins-1.1.26/include/dsp/arch/x86/sse4/3dmath.h --- lsp-plugins-1.1.24/include/dsp/arch/x86/sse4/3dmath.h 2020-07-16 17:04:08.870453860 +0000 +++ lsp-plugins-1.1.26/include/dsp/arch/x86/sse4/3dmath.h 2020-09-15 20:10:12.578193464 +0000 @@ -1,8 +1,22 @@ /* - * 3dmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 мая 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 мая 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ARCH_X86_SSE4_3DMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/atomic.h lsp-plugins-1.1.26/include/dsp/atomic.h --- lsp-plugins-1.1.24/include/dsp/atomic.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/atomic.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * atomic.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 02 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 02 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ATOMIC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/bits.h lsp-plugins-1.1.26/include/dsp/bits.h --- lsp-plugins-1.1.24/include/dsp/bits.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/bits.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * bits.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 февр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 февр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_BITS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/3dmath/types.h lsp-plugins-1.1.26/include/dsp/common/3dmath/types.h --- lsp-plugins-1.1.24/include/dsp/common/3dmath/types.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/3dmath/types.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_3DMATH_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/3dmath.h lsp-plugins-1.1.26/include/dsp/common/3dmath.h --- lsp-plugins-1.1.24/include/dsp/common/3dmath.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/3dmath.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * 3dmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_3DMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/coding.h lsp-plugins-1.1.26/include/dsp/common/coding.h --- lsp-plugins-1.1.24/include/dsp/common/coding.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/coding.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * coding.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_CODING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/complex.h lsp-plugins-1.1.26/include/dsp/common/complex.h --- lsp-plugins-1.1.24/include/dsp/common/complex.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/complex.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * complex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_COMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/const/const16.h lsp-plugins-1.1.26/include/dsp/common/const/const16.h --- lsp-plugins-1.1.24/include/dsp/common/const/const16.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/const/const16.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * const16.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_F32VEC4 diff -Nru lsp-plugins-1.1.24/include/dsp/common/const.h lsp-plugins-1.1.26/include/dsp/common/const.h --- lsp-plugins-1.1.24/include/dsp/common/const.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/const.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * const.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_CONST_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/context.h lsp-plugins-1.1.26/include/dsp/common/context.h --- lsp-plugins-1.1.24/include/dsp/common/context.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/context.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * context.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_CONTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/convolution.h lsp-plugins-1.1.26/include/dsp/common/convolution.h --- lsp-plugins-1.1.24/include/dsp/common/convolution.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/convolution.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * convolution.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 сент. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 сент. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_CONVOLUTION_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/copy.h lsp-plugins-1.1.26/include/dsp/common/copy.h --- lsp-plugins-1.1.24/include/dsp/common/copy.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/copy.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * copy.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_COPY_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/fastconv.h lsp-plugins-1.1.26/include/dsp/common/fastconv.h --- lsp-plugins-1.1.24/include/dsp/common/fastconv.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/fastconv.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * fastconv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_FASTCONV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/fft.h lsp-plugins-1.1.26/include/dsp/common/fft.h --- lsp-plugins-1.1.24/include/dsp/common/fft.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/fft.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * fft.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_FFT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/filters.h lsp-plugins-1.1.26/include/dsp/common/filters.h --- lsp-plugins-1.1.24/include/dsp/common/filters.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/filters.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * filters.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_FILTERS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/float.h lsp-plugins-1.1.26/include/dsp/common/float.h --- lsp-plugins-1.1.24/include/dsp/common/float.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/float.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * float.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_FLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/graphics.h lsp-plugins-1.1.26/include/dsp/common/graphics.h --- lsp-plugins-1.1.24/include/dsp/common/graphics.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/graphics.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/hmath/hdotp.h lsp-plugins-1.1.26/include/dsp/common/hmath/hdotp.h --- lsp-plugins-1.1.24/include/dsp/common/hmath/hdotp.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/hmath/hdotp.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * hmath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_HMATH_HDOTP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/hmath/hsum.h lsp-plugins-1.1.26/include/dsp/common/hmath/hsum.h --- lsp-plugins-1.1.24/include/dsp/common/hmath/hsum.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/hmath/hsum.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * hsum.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_DSP_COMMON_HMATH_HSUM_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/misc.h lsp-plugins-1.1.26/include/dsp/common/misc.h --- lsp-plugins-1.1.24/include/dsp/common/misc.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/misc.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * misc.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_MISC_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/mix.h lsp-plugins-1.1.26/include/dsp/common/mix.h --- lsp-plugins-1.1.24/include/dsp/common/mix.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/mix.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * mix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_MIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/msmatrix.h lsp-plugins-1.1.26/include/dsp/common/msmatrix.h --- lsp-plugins-1.1.24/include/dsp/common/msmatrix.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/msmatrix.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * msmatrix.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_MSMATRIX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pcomplex.h lsp-plugins-1.1.26/include/dsp/common/pcomplex.h --- lsp-plugins-1.1.24/include/dsp/common/pcomplex.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pcomplex.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * pcomplex.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PCOMPLEX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/abs_vv.h lsp-plugins-1.1.26/include/dsp/common/pmath/abs_vv.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/abs_vv.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/abs_vv.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * abs_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_ABS_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/exp.h lsp-plugins-1.1.26/include/dsp/common/pmath/exp.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/exp.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/exp.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * exp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_EXP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/fmop_kx.h lsp-plugins-1.1.26/include/dsp/common/pmath/fmop_kx.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/fmop_kx.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/fmop_kx.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * fmop_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_FMOP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/fmop_vv.h lsp-plugins-1.1.26/include/dsp/common/pmath/fmop_vv.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/fmop_vv.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/fmop_vv.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * fmop_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_FMOP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/log.h lsp-plugins-1.1.26/include/dsp/common/pmath/log.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/log.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/log.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * log.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_LOG_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/minmax.h lsp-plugins-1.1.26/include/dsp/common/pmath/minmax.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/minmax.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/minmax.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/op_kx.h lsp-plugins-1.1.26/include/dsp/common/pmath/op_kx.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/op_kx.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/op_kx.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * op_kx.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_OP_KX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/op_vv.h lsp-plugins-1.1.26/include/dsp/common/pmath/op_vv.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/op_vv.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/op_vv.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * op_vv.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 нояб. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 нояб. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_OP_VV_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/pmath/pow.h lsp-plugins-1.1.26/include/dsp/common/pmath/pow.h --- lsp-plugins-1.1.24/include/dsp/common/pmath/pow.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/pmath/pow.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * pow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_PMATH_POW_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/resampling.h lsp-plugins-1.1.26/include/dsp/common/resampling.h --- lsp-plugins-1.1.24/include/dsp/common/resampling.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/resampling.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * resampling.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 апр. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 апр. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_RESAMPLING_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/search/iminmax.h lsp-plugins-1.1.26/include/dsp/common/search/iminmax.h --- lsp-plugins-1.1.24/include/dsp/common/search/iminmax.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/search/iminmax.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * iminmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_SEARCH_IMINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/search/minmax.h lsp-plugins-1.1.26/include/dsp/common/search/minmax.h --- lsp-plugins-1.1.24/include/dsp/common/search/minmax.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/search/minmax.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * minmax.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_SEARCH_MINMAX_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/common/smath.h lsp-plugins-1.1.26/include/dsp/common/smath.h --- lsp-plugins-1.1.24/include/dsp/common/smath.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/dsp/common/smath.h 2020-09-15 20:10:12.581193438 +0000 @@ -1,8 +1,22 @@ /* - * smath.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_COMMON_SMATH_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/dsp.h lsp-plugins-1.1.26/include/dsp/dsp.h --- lsp-plugins-1.1.24/include/dsp/dsp.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/dsp.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * dsp.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 02 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 02 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_DSP_H_ diff -Nru lsp-plugins-1.1.24/include/dsp/endian.h lsp-plugins-1.1.26/include/dsp/endian.h --- lsp-plugins-1.1.24/include/dsp/endian.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/dsp/endian.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * endian.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef DSP_ENDIAN_H_ diff -Nru lsp-plugins-1.1.24/include/generated/iso226/defs.h lsp-plugins-1.1.26/include/generated/iso226/defs.h --- lsp-plugins-1.1.24/include/generated/iso226/defs.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/generated/iso226/defs.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * defs.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 июн. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 июн. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef GENERATED_ISO226_DEFS_H_ diff -Nru lsp-plugins-1.1.24/include/generated/iso226/fletcher_munson.h lsp-plugins-1.1.26/include/generated/iso226/fletcher_munson.h --- lsp-plugins-1.1.24/include/generated/iso226/fletcher_munson.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/generated/iso226/fletcher_munson.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * fletcher_munson.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef GENERATED_ISO226_FLETCHER_MUNSON_H_ diff -Nru lsp-plugins-1.1.24/include/generated/iso226/iso226-2003.h lsp-plugins-1.1.26/include/generated/iso226/iso226-2003.h --- lsp-plugins-1.1.24/include/generated/iso226/iso226-2003.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/generated/iso226/iso226-2003.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * iso226_2003.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef GENERATED_ISO226_ISO226_2003_H_ diff -Nru lsp-plugins-1.1.24/include/generated/iso226/robinson_dadson.h lsp-plugins-1.1.26/include/generated/iso226/robinson_dadson.h --- lsp-plugins-1.1.24/include/generated/iso226/robinson_dadson.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/generated/iso226/robinson_dadson.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * robinson_dadson.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef GENERATED_ISO226_ROBINSON_DADSON_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/comp_delay.h lsp-plugins-1.1.26/include/metadata/comp_delay.h --- lsp-plugins-1.1.24/include/metadata/comp_delay.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/comp_delay.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * comp_delay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_COMP_DELAY_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/compressor.h lsp-plugins-1.1.26/include/metadata/compressor.h --- lsp-plugins-1.1.24/include/metadata/compressor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/compressor.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * compressor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 сен. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 сен. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_COMPRESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/crossover.h lsp-plugins-1.1.26/include/metadata/crossover.h --- lsp-plugins-1.1.24/include/metadata/crossover.h 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/include/metadata/crossover.h 2020-09-15 20:10:12.567193558 +0000 @@ -0,0 +1,93 @@ +/* + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov + * + * This file is part of lsp-plugins + * Created on: 8 сент. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . + */ + +#ifndef METADATA_CROSSOVER_H_ +#define METADATA_CROSSOVER_H_ + +namespace lsp +{ + //------------------------------------------------------------------------- + // Crossover + struct crossover_base_metadata + { + // Maximum supported number of bands + static const size_t BANDS_MAX = 8; + static const size_t SLOPE_DFL = 2; + + // In/out gain + static const float IN_GAIN_DFL = GAIN_AMP_0_DB; + static const float OUT_GAIN_DFL = GAIN_AMP_0_DB; + + // Makeup gain for each band + static const float MAKEUP_MIN = GAIN_AMP_M_60_DB; + static const float MAKEUP_MAX = GAIN_AMP_P_60_DB; + static const float MAKEUP_DFL = GAIN_AMP_0_DB; + static const float MAKEUP_STEP = 0.05f; + + // Split frequency + static const float SPLIT_FREQ_MIN = 10.0f; + static const float SPLIT_FREQ_MAX = 20000.0f; + static const float SPLIT_FREQ_DFL = 1000.0f; + static const float SPLIT_FREQ_STEP = 0.002f; + + // Frequency analysis + static const float REACT_TIME_MIN = 0.000; + static const float REACT_TIME_MAX = 1.000; + static const float REACT_TIME_DFL = 0.200; + static const float REACT_TIME_STEP = 0.001; + static const size_t FFT_RANK = 13; + static const size_t FFT_ITEMS = 1 << FFT_RANK; + static const size_t MESH_POINTS = 640; + static const size_t FILTER_MESH_POINTS = MESH_POINTS + 2; + static const size_t FFT_WINDOW = windows::HANN; + static const size_t REFRESH_RATE = 20; + + // Zoom + static const float ZOOM_MIN = GAIN_AMP_M_18_DB; + static const float ZOOM_MAX = GAIN_AMP_0_DB; + static const float ZOOM_DFL = GAIN_AMP_0_DB; + static const float ZOOM_STEP = 0.0125f; + }; + + struct crossover_mono_metadata: public crossover_base_metadata + { + static const plugin_metadata_t metadata; + }; + + struct crossover_stereo_metadata: public crossover_base_metadata + { + static const plugin_metadata_t metadata; + }; + + struct crossover_lr_metadata: public crossover_base_metadata + { + static const plugin_metadata_t metadata; + }; + + struct crossover_ms_metadata: public crossover_base_metadata + { + static const plugin_metadata_t metadata; + }; +} + + + +#endif /* METADATA_CROSSOVER_H_ */ diff -Nru lsp-plugins-1.1.24/include/metadata/developers.h lsp-plugins-1.1.26/include/metadata/developers.h --- lsp-plugins-1.1.24/include/metadata/developers.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/developers.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * developers.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_DEVELOPERS_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/dyna_processor.h lsp-plugins-1.1.26/include/metadata/dyna_processor.h --- lsp-plugins-1.1.24/include/metadata/dyna_processor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/dyna_processor.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * dyna_processor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_DYNA_PROCESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/expander.h lsp-plugins-1.1.26/include/metadata/expander.h --- lsp-plugins-1.1.24/include/metadata/expander.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/expander.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * expander.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_EXPANDER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/experimental.h lsp-plugins-1.1.26/include/metadata/experimental.h --- lsp-plugins-1.1.24/include/metadata/experimental.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/experimental.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * experimental.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_EXPERIMENTAL_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/gate.h lsp-plugins-1.1.26/include/metadata/gate.h --- lsp-plugins-1.1.24/include/metadata/gate.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/gate.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_GATE_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/graph_equalizer.h lsp-plugins-1.1.26/include/metadata/graph_equalizer.h --- lsp-plugins-1.1.24/include/metadata/graph_equalizer.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/graph_equalizer.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * graph_equalizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 03 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 03 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_GRAPH_EQUALIZER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/impulse_responses.h lsp-plugins-1.1.26/include/metadata/impulse_responses.h --- lsp-plugins-1.1.24/include/metadata/impulse_responses.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/impulse_responses.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * impulse_responses.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_IMPULSE_RESPONSES_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/impulse_reverb.h lsp-plugins-1.1.26/include/metadata/impulse_reverb.h --- lsp-plugins-1.1.24/include/metadata/impulse_reverb.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/impulse_reverb.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * impulse_reverb.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 фев. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 фев. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_IMPULSE_REVERB_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/latency_meter.h lsp-plugins-1.1.26/include/metadata/latency_meter.h --- lsp-plugins-1.1.24/include/metadata/latency_meter.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/latency_meter.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * latency_meter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 2 May 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 2 May 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_LATENCY_METER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/limiter.h lsp-plugins-1.1.26/include/metadata/limiter.h --- lsp-plugins-1.1.24/include/metadata/limiter.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/limiter.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_LIMITER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/loud_comp.h lsp-plugins-1.1.26/include/metadata/loud_comp.h --- lsp-plugins-1.1.24/include/metadata/loud_comp.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/loud_comp.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * loud_comp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 июн. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 июн. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_LC_VOLUME_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/mb_compressor.h lsp-plugins-1.1.26/include/metadata/mb_compressor.h --- lsp-plugins-1.1.24/include/metadata/mb_compressor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/mb_compressor.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * compressor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_MB_COMPRESSOR_H_ @@ -76,7 +90,7 @@ static const size_t TIME_MESH_SIZE = 400; static const float TIME_HISTORY_MAX = 5.0f; - static const float FREQ_MIN = 20.0f; + static const float FREQ_MIN = 10.0f; static const float FREQ_MAX = 20000.0f; static const float FREQ_DFL = 1000.0f; static const float FREQ_STEP = 0.002f; diff -Nru lsp-plugins-1.1.24/include/metadata/mb_expander.h lsp-plugins-1.1.26/include/metadata/mb_expander.h --- lsp-plugins-1.1.24/include/metadata/mb_expander.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/mb_expander.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * mb_expander.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_MB_EXPANDER_H_ @@ -25,7 +39,7 @@ static const size_t SC_SOURCE_DFL = 0; static const size_t SC_TYPE_DFL = 0; - static const float FREQ_MIN = 20.0f; + static const float FREQ_MIN = 10.0f; static const float FREQ_MAX = 20000.0f; static const float FREQ_DFL = 1000.0f; static const float FREQ_STEP = 0.002f; diff -Nru lsp-plugins-1.1.24/include/metadata/mb_gate.h lsp-plugins-1.1.26/include/metadata/mb_gate.h --- lsp-plugins-1.1.24/include/metadata/mb_gate.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/mb_gate.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * mb_gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мая 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мая 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_MB_GATE_H_ @@ -25,7 +39,7 @@ static const size_t SC_SOURCE_DFL = 0; static const size_t SC_TYPE_DFL = 0; - static const float FREQ_MIN = 20.0f; + static const float FREQ_MIN = 10.0f; static const float FREQ_MAX = 20000.0f; static const float FREQ_DFL = 1000.0f; static const float FREQ_STEP = 0.002f; diff -Nru lsp-plugins-1.1.24/include/metadata/metadata.h lsp-plugins-1.1.26/include/metadata/metadata.h --- lsp-plugins-1.1.24/include/metadata/metadata.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/metadata.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * metadata.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 сент. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 сент. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_METADATA_H_ @@ -29,6 +43,7 @@ #define LSP_LADSPA_BASE 0x4C5350 #define LSP_DONATION_URI1 "https://salt.bountysource.com/teams/" LSP_ARTIFACT_ID #define LSP_DONATION_URI2 "https://liberapay.com/sadko4u/donate" +#define LSP_PLUGINS_MAILBOX "lsp.plugin@gmail.com" #define LSP_DOWNLOAD_URI LSP_BASE_URI "?page=download" // Different LV2 UI classes for different platforms @@ -248,16 +263,18 @@ PGR_REAR_LEFT, PGR_REAR_RIGHT, PGR_RIGHT, - PGR_SIDE, PGR_SIDE_LEFT, - PGR_SIDE_RIGHT + PGR_SIDE_RIGHT, + PGR_MS_SIDE, + PGR_MS_MIDDLE }; enum port_group_flags_t { PGF_IN = (0 << 0), // Input group PGF_OUT = (1 << 0), // Output group - PGF_SIDECHAIN = (1 << 1) // Sidechain + PGF_SIDECHAIN = (1 << 1), // Sidechain + PGF_MAIN = (1 << 2), // Main input/output group }; typedef struct port_group_item_t diff -Nru lsp-plugins-1.1.24/include/metadata/modules.h lsp-plugins-1.1.26/include/metadata/modules.h --- lsp-plugins-1.1.24/include/metadata/modules.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/modules.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * modules.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ // Define capabilities @@ -170,10 +184,17 @@ MOD_PLUGIN(loud_comp_mono, plugin_ui) MOD_PLUGIN(loud_comp_stereo, plugin_ui) -// Pop destroyer +// Surge filter MOD_PLUGIN(surge_filter_mono, plugin_ui) MOD_PLUGIN(surge_filter_stereo, plugin_ui) +// Crossover plugin +MOD_PLUGIN(crossover_mono, plugin_ui) +MOD_PLUGIN(crossover_stereo, plugin_ui) +MOD_PLUGIN(crossover_ms, plugin_ui) +MOD_PLUGIN(crossover_lr, plugin_ui) + + #ifndef LSP_NO_EXPERIMENTAL // Nonlinear Convolver // MOD_PLUGIN(nonlinear_convolver_mono, plugin_ui) diff -Nru lsp-plugins-1.1.24/include/metadata/nonlinear_convolver.h lsp-plugins-1.1.26/include/metadata/nonlinear_convolver.h --- lsp-plugins-1.1.24/include/metadata/nonlinear_convolver.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/nonlinear_convolver.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * nonlinear_convolver.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 12 Apr 2018 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 12 Apr 2018 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_NONLINEAR_CONVOLVER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/oscillator.h lsp-plugins-1.1.26/include/metadata/oscillator.h --- lsp-plugins-1.1.24/include/metadata/oscillator.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/oscillator.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * oscillator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 20 Mar 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 20 Mar 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_OSCILLATOR_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/para_equalizer.h lsp-plugins-1.1.26/include/metadata/para_equalizer.h --- lsp-plugins-1.1.24/include/metadata/para_equalizer.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/para_equalizer.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * para_equalizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_PARA_EQUALIZER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/phase_detector.h lsp-plugins-1.1.26/include/metadata/phase_detector.h --- lsp-plugins-1.1.24/include/metadata/phase_detector.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/phase_detector.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * phase_detector.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_PHASE_DETECTOR_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/plugins.h lsp-plugins-1.1.26/include/metadata/plugins.h --- lsp-plugins-1.1.24/include/metadata/plugins.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/plugins.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * metadata.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_PLUGINS_H_ @@ -37,6 +51,7 @@ #define LSP_MB_GATE_BASE LSP_LADSPA_BASE + 90 #define LSP_LOUD_COMP_BASE LSP_LADSPA_BASE + 98 #define LSP_SURGE_FILTER_BASE LSP_LADSPA_BASE + 100 +#define LSP_CROSSOVER_BASE LSP_LADSPA_BASE + 102 #define LSP_NONLINEAR_CONVOLVER_BASE LSP_LADSPA_BASE + 1000 @@ -67,6 +82,7 @@ #include #include #include +#include #include diff -Nru lsp-plugins-1.1.24/include/metadata/ports.h lsp-plugins-1.1.26/include/metadata/ports.h --- lsp-plugins-1.1.24/include/metadata/ports.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/ports.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * ports.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_PORTS_H_ @@ -162,14 +176,53 @@ OSC_OUTPUT // Port groups +#define MAIN_MONO_PORT_GROUPS \ + { "mono_in", "Mono Input", GRP_MONO, PGF_IN | PGF_MAIN, mono_in_group_ports }, \ + { "mono_out", "Mono Output", GRP_MONO, PGF_OUT | PGF_MAIN, mono_out_group_ports } + +#define MAIN_SC_MONO_PORT_GROUPS \ + { "mono_in", "Mono Input", GRP_MONO, PGF_IN | PGF_MAIN, mono_in_group_ports }, \ + { "mono_out", "Mono Output", GRP_MONO, PGF_OUT | PGF_MAIN, mono_out_group_ports }, \ + { "sidechain_in", "Sidechain Input", GRP_MONO, PGF_IN | PGF_SIDECHAIN, mono_sidechain_group_ports, "mono_in" } + +#define MAIN_MONO2STEREO_PORT_GROUPS \ + { "mono_in", "Mono Input", GRP_MONO, PGF_IN | PGF_MAIN, mono_in_group_ports }, \ + { "stereo_out", "Stereo Output", GRP_STEREO, PGF_OUT | PGF_MAIN, stereo_out_group_ports } + +#define MAIN_STEREO_PORT_GROUPS \ + { "stereo_in", "Stereo Input", GRP_STEREO, PGF_IN | PGF_MAIN, stereo_in_group_ports }, \ + { "stereo_out", "Stereo Output", GRP_STEREO, PGF_OUT | PGF_MAIN, stereo_out_group_ports } + +#define MAIN_SC_STEREO_PORT_GROUPS \ + { "stereo_in", "Stereo Input", GRP_STEREO, PGF_IN | PGF_MAIN, stereo_in_group_ports }, \ + { "stereo_out", "Stereo Output", GRP_STEREO, PGF_OUT | PGF_MAIN, stereo_out_group_ports }, \ + { "sidechain_in", "Sidechain Input", GRP_STEREO, PGF_IN | PGF_SIDECHAIN, stereo_sidechain_group_portss, "stereo_in" } + +#define MONO_PORT_GROUP_PORT(id, a) \ + static const port_group_item_t id ## _ports[] = \ + { \ + { a, PGR_CENTER }, \ + { NULL } \ + } + #define STEREO_PORT_GROUP_PORTS(id, a, b) \ static const port_group_item_t id ## _ports[] = \ { \ - { a, PGR_LEFT }, \ - { b, PGR_RIGHT }, \ + { a, PGR_LEFT }, \ + { b, PGR_RIGHT }, \ { NULL } \ } +#define MS_PORT_GROUP_PORTS(id, a, b) \ + static const port_group_item_t id ## _ports[] = \ + { \ + { a, PGR_MS_MIDDLE }, \ + { b, PGR_MS_SIDE }, \ + { NULL } \ + } + +#define PORT_GROUPS_END { NULL, NULL } + namespace lsp { // Common stereo port names diff -Nru lsp-plugins-1.1.24/include/metadata/profiler.h lsp-plugins-1.1.26/include/metadata/profiler.h --- lsp-plugins-1.1.24/include/metadata/profiler.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/profiler.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * profiler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 12 Sep 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 12 Sep 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_PROFILER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/room_builder.h lsp-plugins-1.1.26/include/metadata/room_builder.h --- lsp-plugins-1.1.24/include/metadata/room_builder.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/room_builder.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * room_builder.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_ROOM_BUILDER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/sampler.h lsp-plugins-1.1.26/include/metadata/sampler.h --- lsp-plugins-1.1.24/include/metadata/sampler.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/sampler.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * sampler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_SAMPLER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/slap_delay.h lsp-plugins-1.1.26/include/metadata/slap_delay.h --- lsp-plugins-1.1.24/include/metadata/slap_delay.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/slap_delay.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * slap_delay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 яна. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 яна. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_SLAP_DELAY_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/spectrum_analyzer.h lsp-plugins-1.1.26/include/metadata/spectrum_analyzer.h --- lsp-plugins-1.1.24/include/metadata/spectrum_analyzer.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/spectrum_analyzer.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * spectrum_analyzer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 08 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 08 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_SPECTRUM_ANALYZER_H_ @@ -39,10 +53,10 @@ static const float REACT_TIME_DFL = 0.200; static const float REACT_TIME_STEP = 0.001; - static const float SELECTOR_MIN = 0.01; - static const float SELECTOR_DFL = 0; - static const float SELECTOR_MAX = 100; - static const float SELECTOR_STEP = 0.005; + static const float SELECTOR_MIN = 0.01f; + static const float SELECTOR_DFL = 0.01f; + static const float SELECTOR_MAX = 100.0f; + static const float SELECTOR_STEP = 0.005f; static const float ZOOM_MIN = GAIN_AMP_M_36_DB; static const float ZOOM_MAX = GAIN_AMP_0_DB; diff -Nru lsp-plugins-1.1.24/include/metadata/surge_filter.h lsp-plugins-1.1.26/include/metadata/surge_filter.h --- lsp-plugins-1.1.24/include/metadata/surge_filter.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/surge_filter.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * surge_filter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_SURGE_FILTER_H_ diff -Nru lsp-plugins-1.1.24/include/metadata/trigger.h lsp-plugins-1.1.26/include/metadata/trigger.h --- lsp-plugins-1.1.24/include/metadata/trigger.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/metadata/trigger.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * trigger.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef METADATA_TRIGGER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/comp_delay.h lsp-plugins-1.1.26/include/plugins/comp_delay.h --- lsp-plugins-1.1.24/include/plugins/comp_delay.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/comp_delay.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * comp_delay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PLUGINS_COMP_DELAY_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/compressor.h lsp-plugins-1.1.26/include/plugins/compressor.h --- lsp-plugins-1.1.24/include/plugins/compressor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/compressor.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * compressor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 сент. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 сент. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_COMPRESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/crossover.h lsp-plugins-1.1.26/include/plugins/crossover.h --- lsp-plugins-1.1.24/include/plugins/crossover.h 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/include/plugins/crossover.h 2020-09-15 20:10:12.568193549 +0000 @@ -0,0 +1,180 @@ +/* + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov + * + * This file is part of lsp-plugins + * Created on: 8 сент. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . + */ + +#ifndef PLUGINS_CROSSOVER_H_ +#define PLUGINS_CROSSOVER_H_ + +#include + +#include +#include +#include +#include + +namespace lsp +{ + class crossover_base: public plugin_t + { + protected: + enum c_mode_t + { + XOVER_MONO, + XOVER_STEREO, + XOVER_LR, + XOVER_MS + }; + + typedef struct xover_band_t + { + float *vOut; // Output channel pointer + float *vResult; // Result buffer + float *vTr; // Transfer function + float *vFc; // Frequency chart + + bool bSolo; // Soloing + bool bMute; // Muting + float fGain; // Gain + float fOutLevel; // Output signal level + bool bSyncCurve; // Sync frequency response + float fHue; // Hue color + + IPort *pSolo; // Soloing + IPort *pMute; // Muting + IPort *pGain; // Gain + IPort *pOutLevel; // Output level of the band + IPort *pFreqEnd; // Frequency range end + IPort *pOut; // Output port + IPort *pAmpGraph; // Amplitude graph + IPort *pHue; // Hue color + } xover_band_t; + + typedef struct xover_split_t + { + IPort *pSlope; // Slope + IPort *pFreq; // Split frequency + } xover_split_t; + + typedef struct channel_t + { + Bypass sBypass; // Bypass + Crossover sXOver; // Crossover module + + xover_split_t vSplit[crossover_base_metadata::BANDS_MAX-1]; // Split bands + xover_band_t vBands[crossover_base_metadata::BANDS_MAX]; // Crossover bands + + float *vIn; // Input buffer + float *vOut; // Output buffer + float *vBuffer; // Common data processing buffer + float *vResult; // Result buffer + float *vTr; // Transfer function + float *vFc; // Frequency chart + + size_t nAnInChannel; // Analyzer channel used for input signal analysis + size_t nAnOutChannel; // Analyzer channel used for output signal analysis + bool bSyncCurve; // Sync frequency response curve + float fInLevel; // Input level meter + float fOutLevel; // Output level meter + + IPort *pIn; // Input + IPort *pOut; // Output + IPort *pFftIn; // Pre-processing FFT analysis data + IPort *pFftInSw; // Pre-processing FFT analysis control port + IPort *pFftOut; // Post-processing FFT analysis data + IPort *pFftOutSw; // Post-processing FFT analysis controlport + IPort *pAmpGraph; // Crossover amplitude graph + IPort *pInLvl; // Input level meter + IPort *pOutLvl; // Output level meter + } channel_t; + + protected: + Analyzer sAnalyzer; // Analyzer + size_t nMode; // Crossover mode + channel_t *vChannels; // Crossover channels + float fInGain; // Input gain + float fOutGain; // Output gain + float fZoom; // Zoom + bool bMSOut; // Mid/Side output + + uint8_t *pData; // Aligned data pointer + float *vFreqs; // Analyzer FFT frequencies + float *vCurve; // Curve + uint32_t *vIndexes; // Analyzer FFT indexes + float_buffer_t *pIDisplay; // Inline display buffer + + IPort *pBypass; // Bypass port + IPort *pInGain; // Input gain port + IPort *pOutGain; // Output gain port + IPort *pReactivity; // Reactivity + IPort *pShiftGain; // Shift gain port + IPort *pZoom; // Zoom port + IPort *pMSOut; // Mid/Side output + + protected: + static void process_band(void *object, void *subject, size_t band, const float *data, size_t sample, size_t count); + static inline crossover_mode_t crossover_mode(size_t slope); + static inline size_t crossover_slope(size_t slope); + + public: + explicit crossover_base(const plugin_metadata_t &metadata, size_t mode); + virtual ~crossover_base(); + + public: + virtual void init(IWrapper *wrapper); + virtual void destroy(); + + virtual void update_settings(); + virtual void update_sample_rate(long sr); + virtual void ui_activated(); + + virtual void process(size_t samples); + virtual bool inline_display(ICanvas *cv, size_t width, size_t height); + + virtual void dump(IStateDumper *v) const; + }; + + class crossover_mono: public crossover_base, public crossover_mono_metadata + { + public: + explicit crossover_mono(); + }; + + class crossover_stereo: public crossover_base, public crossover_stereo_metadata + { + public: + explicit crossover_stereo(); + }; + + class crossover_lr: public crossover_base, public crossover_lr_metadata + { + public: + explicit crossover_lr(); + }; + + class crossover_ms: public crossover_base, public crossover_ms_metadata + { + public: + explicit crossover_ms(); + }; +} + + + +#endif /* INCLUDE_PLUGINS_CROSSOVER_H_ */ diff -Nru lsp-plugins-1.1.24/include/plugins/declipper.h lsp-plugins-1.1.26/include/plugins/declipper.h --- lsp-plugins-1.1.24/include/plugins/declipper.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/declipper.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -//#include "plugin.h" -// -//#define DECLIPPER_MIN_SAMPLES 1 -//#define DECLIPPER_MAX_SAMPLES 40 -// -//#define DECLIPPER_DOTS 2 -// -//namespace forzee -//{ -// class declipper: public plugin -// { -// private: -// enum Mode { BYPASS, DETECT, LOOKUP, INTERPOLATE }; -// -// struct dot_t { float s, t; }; -// -// protected: -// uint32_t nSampleRate; -// float *vBuffer; -// uint32_t nBufSize; -// uint32_t nHead, nTail; -// uint32_t nClipStart, nDistance; -// uint32_t nDetect; -// Mode enMode; -// float nThreshold; -// float nMix; -// float *vMatrix[DECLIPPER_DOTS*2]; -// float vpMatrix[(DECLIPPER_DOTS*2) * (DECLIPPER_DOTS*2 + 1)]; -// -// private: -// void interpolate(uint32_t start, uint32_t end); -// void print_matrix(); -// -// public: -// declipper(); -// ~declipper(); -// -// void init(int sample_rate); -// void fini(); -// -// void activate(); -// void deactivate(); -// -// void process(int samples); -// void process(float *in, float *out, int samples); -// void setup(float thresh, float mix, uint32_t samples, bool bypass); -// }; -//} -// diff -Nru lsp-plugins-1.1.24/include/plugins/dyna_processor.h lsp-plugins-1.1.26/include/plugins/dyna_processor.h --- lsp-plugins-1.1.24/include/plugins/dyna_processor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/dyna_processor.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * dyna_processor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_DYNA_PROCESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/expander.h lsp-plugins-1.1.26/include/plugins/expander.h --- lsp-plugins-1.1.24/include/plugins/expander.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/expander.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * expander.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_EXPANDER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/experimental.h lsp-plugins-1.1.26/include/plugins/experimental.h --- lsp-plugins-1.1.24/include/plugins/experimental.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/experimental.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * experimental.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 янв. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 янв. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_EXPERIMENTAL_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/gate.h lsp-plugins-1.1.26/include/plugins/gate.h --- lsp-plugins-1.1.24/include/plugins/gate.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/gate.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_GATE_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/graph_equalizer.h lsp-plugins-1.1.26/include/plugins/graph_equalizer.h --- lsp-plugins-1.1.24/include/plugins/graph_equalizer.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/graph_equalizer.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * graph_equalizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 03 авг. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 03 авг. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_GRAPH_EQUALIZER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/impulse_responses.h lsp-plugins-1.1.26/include/plugins/impulse_responses.h --- lsp-plugins-1.1.24/include/plugins/impulse_responses.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/impulse_responses.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * impulse_responses.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 янв. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 янв. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_IMPULSE_RESPONSES_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/impulse_reverb.h lsp-plugins-1.1.26/include/plugins/impulse_reverb.h --- lsp-plugins-1.1.24/include/plugins/impulse_reverb.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/impulse_reverb.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * impulse_reverb.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 фев. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 фев. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_IMPULSE_REVERB_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/latency_meter.h lsp-plugins-1.1.26/include/plugins/latency_meter.h --- lsp-plugins-1.1.24/include/plugins/latency_meter.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/latency_meter.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * latency_meter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 2 May 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 2 May 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_LATENCY_METER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/limiter.h lsp-plugins-1.1.26/include/plugins/limiter.h --- lsp-plugins-1.1.24/include/plugins/limiter.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/limiter.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * limiter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 нояб. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 нояб. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_LIMITER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/loud_comp.h lsp-plugins-1.1.26/include/plugins/loud_comp.h --- lsp-plugins-1.1.24/include/plugins/loud_comp.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/loud_comp.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * loud_comp.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 июн. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 июн. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_LOUD_COMP_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/mb_compressor.h lsp-plugins-1.1.26/include/plugins/mb_compressor.h --- lsp-plugins-1.1.24/include/plugins/mb_compressor.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/mb_compressor.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * mb_compressor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 янв. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 янв. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_MB_COMPRESSOR_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/mb_expander.h lsp-plugins-1.1.26/include/plugins/mb_expander.h --- lsp-plugins-1.1.24/include/plugins/mb_expander.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/mb_expander.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * mb_expander.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 дек. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 дек. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_MB_EXPANDER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/mb_gate.h lsp-plugins-1.1.26/include/plugins/mb_gate.h --- lsp-plugins-1.1.24/include/plugins/mb_gate.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/mb_gate.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * mb_gate.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 мая 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 мая 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_MB_GATE_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/nonlinear_convolver.h lsp-plugins-1.1.26/include/plugins/nonlinear_convolver.h --- lsp-plugins-1.1.24/include/plugins/nonlinear_convolver.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/nonlinear_convolver.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * nonlinear_convolver.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 14 Apr 2018 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 14 Apr 2018 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_NONLINEAR_CONVOLVER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/oscillator.h lsp-plugins-1.1.26/include/plugins/oscillator.h --- lsp-plugins-1.1.24/include/plugins/oscillator.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/oscillator.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * oscillator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 20 Mar 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 20 Mar 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_OSCILLATOR_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/para_equalizer.h lsp-plugins-1.1.26/include/plugins/para_equalizer.h --- lsp-plugins-1.1.24/include/plugins/para_equalizer.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/para_equalizer.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * para_equalizer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 июня 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 июня 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_PARA_EQUALIZER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/phase_detector.h lsp-plugins-1.1.26/include/plugins/phase_detector.h --- lsp-plugins-1.1.24/include/plugins/phase_detector.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/phase_detector.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * phase_detector.hpp + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 сент. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 сент. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PLUGINS_PHASE_DETECTOR_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/plugins.h lsp-plugins-1.1.26/include/plugins/plugins.h --- lsp-plugins-1.1.24/include/plugins/plugins.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/plugins.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * plugins.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 06 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 06 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_PLUGINS_H_ @@ -35,9 +49,12 @@ #include #include #include +#include +#include + #include #include -#include + #endif /* PLUGINS_PLUGINS_H_ */ diff -Nru lsp-plugins-1.1.24/include/plugins/profiler.h lsp-plugins-1.1.26/include/plugins/profiler.h --- lsp-plugins-1.1.24/include/plugins/profiler.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/profiler.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * profiler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Stefano Tronci * - * Created on: 13 Sep 2017 - * Author: crocoduck + * This file is part of lsp-plugins + * Created on: 13 Sep 2017 + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_PROFILER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/room_builder.h lsp-plugins-1.1.26/include/plugins/room_builder.h --- lsp-plugins-1.1.24/include/plugins/room_builder.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/room_builder.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * room_builder.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_ROOM_BUILDER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/sampler.h lsp-plugins-1.1.26/include/plugins/sampler.h --- lsp-plugins-1.1.24/include/plugins/sampler.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/sampler.h 2020-09-15 20:10:12.567193558 +0000 @@ -1,8 +1,22 @@ /* - * sampler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 янв. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 янв. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PLUGINS_SAMPLER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/slap_delay.h lsp-plugins-1.1.26/include/plugins/slap_delay.h --- lsp-plugins-1.1.24/include/plugins/slap_delay.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/slap_delay.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * slap_delay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 янв. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 янв. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_SLAPDELAY_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/spectrum_analyzer.h lsp-plugins-1.1.26/include/plugins/spectrum_analyzer.h --- lsp-plugins-1.1.24/include/plugins/spectrum_analyzer.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/spectrum_analyzer.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * spectrum_analyzer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 янв. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 янв. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef CORE_PLUGINS_SPECTRUM_ANALYZER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/surge_filter.h lsp-plugins-1.1.26/include/plugins/surge_filter.h --- lsp-plugins-1.1.24/include/plugins/surge_filter.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/plugins/surge_filter.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * surge_filter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_SURGE_FILTER_H_ diff -Nru lsp-plugins-1.1.24/include/plugins/trigger.h lsp-plugins-1.1.26/include/plugins/trigger.h --- lsp-plugins-1.1.24/include/plugins/trigger.h 2020-07-16 17:04:08.861453940 +0000 +++ lsp-plugins-1.1.26/include/plugins/trigger.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * trigger.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 04 мая 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 04 мая 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef PLUGINS_TRIGGER_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/backend.h lsp-plugins-1.1.26/include/rendering/backend.h --- lsp-plugins-1.1.24/include/rendering/backend.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/backend.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * backend.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_BACKEND_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/base_backend.h lsp-plugins-1.1.26/include/rendering/base_backend.h --- lsp-plugins-1.1.24/include/rendering/base_backend.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/base_backend.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * base_backend.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_BASE_BACKEND_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/factory.h lsp-plugins-1.1.26/include/rendering/factory.h --- lsp-plugins-1.1.24/include/rendering/factory.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/factory.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * factory.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_FACTORY_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/glx/backend.h lsp-plugins-1.1.26/include/rendering/glx/backend.h --- lsp-plugins-1.1.24/include/rendering/glx/backend.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/glx/backend.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * backend.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_GLX_BACKEND_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/glx/factory.h lsp-plugins-1.1.26/include/rendering/glx/factory.h --- lsp-plugins-1.1.24/include/rendering/glx/factory.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/glx/factory.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * factory.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_GLX_FACTORY_H_ diff -Nru lsp-plugins-1.1.24/include/rendering/types.h lsp-plugins-1.1.26/include/rendering/types.h --- lsp-plugins-1.1.24/include/rendering/types.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/rendering/types.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef RENDERING_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/test/ByteBuffer.h lsp-plugins-1.1.26/include/test/ByteBuffer.h --- lsp-plugins-1.1.24/include/test/ByteBuffer.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/ByteBuffer.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * ByteBuffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 авг. 2018 г. - * Author: vsadovnikov + * This file is part of lsp-plugins + * Created on: 23 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_BYTEBUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/test/FloatBuffer.h lsp-plugins-1.1.26/include/test/FloatBuffer.h --- lsp-plugins-1.1.24/include/test/FloatBuffer.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/FloatBuffer.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * FloatBuffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 авг. 2018 г. - * Author: vsadovnikov + * This file is part of lsp-plugins + * Created on: 21 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_FLOATBUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/test/helpers.h lsp-plugins-1.1.26/include/test/helpers.h --- lsp-plugins-1.1.24/include/test/helpers.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/helpers.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * helpers.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_HELPERS_H_ diff -Nru lsp-plugins-1.1.24/include/test/main/config.h lsp-plugins-1.1.26/include/test/main/config.h --- lsp-plugins-1.1.24/include/test/main/config.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/test/main/config.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * config.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MAIN_CONFIG_H_ diff -Nru lsp-plugins-1.1.24/include/test/main/executor.h lsp-plugins-1.1.26/include/test/main/executor.h --- lsp-plugins-1.1.24/include/test/main/executor.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/test/main/executor.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * executor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MAIN_EXECUTOR_H_ diff -Nru lsp-plugins-1.1.24/include/test/main/types.h lsp-plugins-1.1.26/include/test/main/types.h --- lsp-plugins-1.1.24/include/test/main/types.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/test/main/types.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * types.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 февр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 февр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MAIN_TYPES_H_ diff -Nru lsp-plugins-1.1.24/include/test/main.h lsp-plugins-1.1.26/include/test/main.h --- lsp-plugins-1.1.24/include/test/main.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/main.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * main.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MAIN_H_ diff -Nru lsp-plugins-1.1.24/include/test/mtest.h lsp-plugins-1.1.26/include/test/mtest.h --- lsp-plugins-1.1.24/include/test/mtest.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/mtest.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * mtest.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MTEST_H_ diff -Nru lsp-plugins-1.1.24/include/test/ptest.h lsp-plugins-1.1.26/include/test/ptest.h --- lsp-plugins-1.1.24/include/test/ptest.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/ptest.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * ptest.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_PTEST_H_ diff -Nru lsp-plugins-1.1.24/include/test/test.h lsp-plugins-1.1.26/include/test/test.h --- lsp-plugins-1.1.24/include/test/test.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/test.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * test.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 авг. 2018 г. - * Author: vsadovnikov + * This file is part of lsp-plugins + * Created on: 22 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_TEST_H_ diff -Nru lsp-plugins-1.1.24/include/test/utest.h lsp-plugins-1.1.26/include/test/utest.h --- lsp-plugins-1.1.24/include/test/utest.h 2020-07-16 17:04:08.872453842 +0000 +++ lsp-plugins-1.1.26/include/test/utest.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * utest.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_UTEST_H_ diff -Nru lsp-plugins-1.1.24/include/testing/mtest/3d/common/X11Renderer.h lsp-plugins-1.1.26/include/testing/mtest/3d/common/X11Renderer.h --- lsp-plugins-1.1.24/include/testing/mtest/3d/common/X11Renderer.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/testing/mtest/3d/common/X11Renderer.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * Renderer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 дек. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 дек. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_MTEST_3D_COMMON_X11RENDERER_H_ diff -Nru lsp-plugins-1.1.24/include/testing/mtest/3d/debug.h lsp-plugins-1.1.26/include/testing/mtest/3d/debug.h --- lsp-plugins-1.1.24/include/testing/mtest/3d/debug.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/testing/mtest/3d/debug.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * debug.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 мар. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 мар. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_3D_DEBUG_H_ diff -Nru lsp-plugins-1.1.24/include/testing/utest/dsp/3d/helpers.h lsp-plugins-1.1.26/include/testing/utest/dsp/3d/helpers.h --- lsp-plugins-1.1.24/include/testing/utest/dsp/3d/helpers.h 2020-07-16 17:04:08.856453985 +0000 +++ lsp-plugins-1.1.26/include/testing/utest/dsp/3d/helpers.h 2020-09-15 20:10:12.561193609 +0000 @@ -1,8 +1,22 @@ /* - * helpers.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 30 авг. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 30 авг. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef TEST_UTEST_3D_HELPERS_H_ @@ -15,9 +29,9 @@ { bool point3d_ck(const point3d_t *p1, const point3d_t *p2); bool point3d_sck(const point3d_t *p1, const point3d_t *p2); - bool point3d_ack(const point3d_t *p1, const point3d_t *p2, float tolerance); + bool point3d_ack(const point3d_t *p1, const point3d_t *p2, float tolerance = DSP_3D_TOLERANCE); bool vector3d_sck(const vector3d_t *v1, const vector3d_t *v2); - bool vector3d_ack(const vector3d_t *v1, const vector3d_t *v2); + bool vector3d_ack(const vector3d_t *v1, const vector3d_t *v2, float tolerance = DSP_3D_TOLERANCE); bool matrix3d_ck(const matrix3d_t *m1, const matrix3d_t *m2); void dump_point(const char *text, const point3d_t *p); diff -Nru lsp-plugins-1.1.24/include/ui/common.h lsp-plugins-1.1.26/include/ui/common.h --- lsp-plugins-1.1.24/include/ui/common.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/common.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * common.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _UI_COMMON_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlAlign.h lsp-plugins-1.1.26/include/ui/ctl/CtlAlign.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlAlign.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlAlign.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlAlign.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLALIGN_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlAudioFile.h lsp-plugins-1.1.26/include/ui/ctl/CtlAudioFile.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlAudioFile.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlAudioFile.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlAudioFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLAUDIOFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlAudioSample.h lsp-plugins-1.1.26/include/ui/ctl/CtlAudioSample.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlAudioSample.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlAudioSample.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlAudioSample.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLAUDIOSAMPLE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlAxis.h lsp-plugins-1.1.26/include/ui/ctl/CtlAxis.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlAxis.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlAxis.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlAxis.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLAXIS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlBasis.h lsp-plugins-1.1.26/include/ui/ctl/CtlBasis.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlBasis.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlBasis.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -/* - * CtlBasis.h - * - * Created on: 27 июл. 2017 г. - * Author: sadko - */ - -#ifndef UI_CTL_CTLBASIS_H_ -#define UI_CTL_CTLBASIS_H_ - -namespace lsp -{ - namespace ctl - { - class CtlBasis: public CtlWidget - { - public: - static const ctl_class_t metadata; - - public: - explicit CtlBasis(CtlRegistry *src, LSPBasis *base); - virtual ~CtlBasis(); - - public: - virtual void set(widget_attribute_t att, const char *value); - }; - - } /* namespace ctl */ -} /* namespace lsp */ - -#endif /* UI_CTL_CTLBASIS_H_ */ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlBox.h lsp-plugins-1.1.26/include/ui/ctl/CtlBox.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlBox.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlBox.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlButton.h lsp-plugins-1.1.26/include/ui/ctl/CtlButton.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlButton.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlButton.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlButton.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLBUTTON_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlCapture3D.h lsp-plugins-1.1.26/include/ui/ctl/CtlCapture3D.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlCapture3D.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlCapture3D.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlCapture3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCAPTURE3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlCell.h lsp-plugins-1.1.26/include/ui/ctl/CtlCell.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlCell.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlCell.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlCell.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCELL_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlCenter.h lsp-plugins-1.1.26/include/ui/ctl/CtlCenter.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlCenter.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlCenter.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlCenter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCENTER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlColor.h lsp-plugins-1.1.26/include/ui/ctl/CtlColor.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlColor.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlColor.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlColor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCOLOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlComboBox.h lsp-plugins-1.1.26/include/ui/ctl/CtlComboBox.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlComboBox.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlComboBox.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlComboBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCOMBOBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlComboGroup.h lsp-plugins-1.1.26/include/ui/ctl/CtlComboGroup.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlComboGroup.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlComboGroup.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * ComboGroup.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 апр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 апр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCOMBOGROUP_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlConfigHandler.h lsp-plugins-1.1.26/include/ui/ctl/CtlConfigHandler.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlConfigHandler.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlConfigHandler.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlConfigHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCONFIGHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlConfigSource.h lsp-plugins-1.1.26/include/ui/ctl/CtlConfigSource.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlConfigSource.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlConfigSource.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlConfigSource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCONFIGSOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlControlPort.h lsp-plugins-1.1.26/include/ui/ctl/CtlControlPort.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlControlPort.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlControlPort.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlControlPort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLCONTROLPORT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlDot.h lsp-plugins-1.1.26/include/ui/ctl/CtlDot.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlDot.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlDot.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlDot.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLDOT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlEdit.h lsp-plugins-1.1.26/include/ui/ctl/CtlEdit.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlEdit.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlEdit.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlEdit.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLEDIT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlExpression.h lsp-plugins-1.1.26/include/ui/ctl/CtlExpression.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlExpression.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlExpression.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlExpression.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLEXPRESSION_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlFader.h lsp-plugins-1.1.26/include/ui/ctl/CtlFader.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlFader.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlFader.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlFader.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLFADER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlFraction.h lsp-plugins-1.1.26/include/ui/ctl/CtlFraction.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlFraction.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlFraction.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlFraction.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLFRACTION_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlFrameBuffer.h lsp-plugins-1.1.26/include/ui/ctl/CtlFrameBuffer.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlFrameBuffer.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlFrameBuffer.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlFrameBuffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLFRAMEBUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlGraph.h lsp-plugins-1.1.26/include/ui/ctl/CtlGraph.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlGraph.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlGraph.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlGraph.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLGRAPH_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlGrid.h lsp-plugins-1.1.26/include/ui/ctl/CtlGrid.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlGrid.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlGrid.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlGrid.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLGRID_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlGroup.h lsp-plugins-1.1.26/include/ui/ctl/CtlGroup.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlGroup.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlGroup.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlGroup.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLGROUP_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/ctl.h lsp-plugins-1.1.26/include/ui/ctl/ctl.h --- lsp-plugins-1.1.24/include/ui/ctl/ctl.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/ctl.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * ctl.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTL_H_ @@ -32,7 +46,6 @@ WC_ALIGN, WC_AXIS, - WC_BASIS, WC_BODY, WC_BOX, WC_BUTTON, @@ -333,7 +346,6 @@ #include #include #include -#include #include #include #include diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlHyperlink.h lsp-plugins-1.1.26/include/ui/ctl/CtlHyperlink.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlHyperlink.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlHyperlink.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlHyperlink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLHYPERLINK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlIndicator.h lsp-plugins-1.1.26/include/ui/ctl/CtlIndicator.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlIndicator.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlIndicator.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlIndicator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLINDICATOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlKnob.h lsp-plugins-1.1.26/include/ui/ctl/CtlKnob.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlKnob.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlKnob.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlKnob.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLKNOB_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlKvtListener.h lsp-plugins-1.1.26/include/ui/ctl/CtlKvtListener.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlKvtListener.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlKvtListener.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlKvtListener.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 июн. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 июн. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLKVTLISTENER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlLabel.h lsp-plugins-1.1.26/include/ui/ctl/CtlLabel.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlLabel.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlLabel.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlLabel.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLLABEL_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlLed.h lsp-plugins-1.1.26/include/ui/ctl/CtlLed.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlLed.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlLed.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlLed.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLLED_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlListBox.h lsp-plugins-1.1.26/include/ui/ctl/CtlListBox.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlListBox.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlListBox.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlListBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLLISTBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlLoadFile.h lsp-plugins-1.1.26/include/ui/ctl/CtlLoadFile.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlLoadFile.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlLoadFile.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlLoadFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 мая 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 мая 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLLOADFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlMarker.h lsp-plugins-1.1.26/include/ui/ctl/CtlMarker.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlMarker.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlMarker.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlMarker.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLMARKER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlMesh.h lsp-plugins-1.1.26/include/ui/ctl/CtlMesh.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlMesh.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlMesh.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlMesh.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLMESH_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlMeter.h lsp-plugins-1.1.26/include/ui/ctl/CtlMeter.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlMeter.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlMeter.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlMeter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLMETER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPadding.h lsp-plugins-1.1.26/include/ui/ctl/CtlPadding.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPadding.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPadding.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPadding.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPADDING_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPathPort.h lsp-plugins-1.1.26/include/ui/ctl/CtlPathPort.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPathPort.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPathPort.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPathPort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPATHPORT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPluginWindow.h lsp-plugins-1.1.26/include/ui/ctl/CtlPluginWindow.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPluginWindow.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPluginWindow.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlPluginWindow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPLUGINWINDOW_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPortAlias.h lsp-plugins-1.1.26/include/ui/ctl/CtlPortAlias.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPortAlias.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPortAlias.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPortAlias.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPORTALIAS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPort.h lsp-plugins-1.1.26/include/ui/ctl/CtlPort.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPort.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPort.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPORT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPortHandler.h lsp-plugins-1.1.26/include/ui/ctl/CtlPortHandler.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPortHandler.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPortHandler.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPortHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPORTHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPortListener.h lsp-plugins-1.1.26/include/ui/ctl/CtlPortListener.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPortListener.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPortListener.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPortListener.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPORTLISTENER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlPortResolver.h lsp-plugins-1.1.26/include/ui/ctl/CtlPortResolver.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlPortResolver.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlPortResolver.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlPortResolver.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPORTRESOLVER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlProgressBar.h lsp-plugins-1.1.26/include/ui/ctl/CtlProgressBar.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlProgressBar.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlProgressBar.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlProgressBar.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLPROGRESSBAR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlRegistry.h lsp-plugins-1.1.26/include/ui/ctl/CtlRegistry.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlRegistry.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlRegistry.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlRegistry.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLREGISTRY_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlSaveFile.h lsp-plugins-1.1.26/include/ui/ctl/CtlSaveFile.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlSaveFile.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlSaveFile.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlSaveFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLSAVEFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlScrollBar.h lsp-plugins-1.1.26/include/ui/ctl/CtlScrollBar.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlScrollBar.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlScrollBar.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlScrollBar.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLSCROLLBAR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlScrollBox.h lsp-plugins-1.1.26/include/ui/ctl/CtlScrollBox.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlScrollBox.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlScrollBox.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlScrollBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLSCROLLBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlSeparator.h lsp-plugins-1.1.26/include/ui/ctl/CtlSeparator.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlSeparator.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlSeparator.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlSeparator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_UI_CTL_CTLSEPARATOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlSource3D.h lsp-plugins-1.1.26/include/ui/ctl/CtlSource3D.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlSource3D.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlSource3D.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlSource3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLSOURCE3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlSwitchedPort.h lsp-plugins-1.1.26/include/ui/ctl/CtlSwitchedPort.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlSwitchedPort.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlSwitchedPort.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlSwitchedPort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_UI_CTL_CTLSWITCHEDPORT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlSwitch.h lsp-plugins-1.1.26/include/ui/ctl/CtlSwitch.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlSwitch.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlSwitch.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlSwitch.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLSWITCH_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlTempoTap.h lsp-plugins-1.1.26/include/ui/ctl/CtlTempoTap.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlTempoTap.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlTempoTap.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlTempoTap.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 июн. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 июн. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLTEMPOTAP_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlText.h lsp-plugins-1.1.26/include/ui/ctl/CtlText.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlText.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlText.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlText.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlThreadComboBox.h lsp-plugins-1.1.26/include/ui/ctl/CtlThreadComboBox.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlThreadComboBox.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlThreadComboBox.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlThreadBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLTHREADBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlValuePort.h lsp-plugins-1.1.26/include/ui/ctl/CtlValuePort.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlValuePort.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlValuePort.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlValuePort.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLVALUEPORT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlViewer3D.h lsp-plugins-1.1.26/include/ui/ctl/CtlViewer3D.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlViewer3D.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlViewer3D.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlViewer3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLVIEWER3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlVoid.h lsp-plugins-1.1.26/include/ui/ctl/CtlVoid.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlVoid.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlVoid.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * CtlVoid.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 апр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 апр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLVOID_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/CtlWidget.h lsp-plugins-1.1.26/include/ui/ctl/CtlWidget.h --- lsp-plugins-1.1.24/include/ui/ctl/CtlWidget.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/CtlWidget.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * CtlWidget.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_CTLWIDGET_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ctl/parse.h lsp-plugins-1.1.26/include/ui/ctl/parse.h --- lsp-plugins-1.1.24/include/ui/ctl/parse.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ctl/parse.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * parse.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 дек. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 дек. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_CTL_PARSE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/graphics.h lsp-plugins-1.1.26/include/ui/graphics.h --- lsp-plugins-1.1.24/include/ui/graphics.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/graphics.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * graphics.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 нояб. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 нояб. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef GRAPHICS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/IUIWrapper.h lsp-plugins-1.1.26/include/ui/IUIWrapper.h --- lsp-plugins-1.1.24/include/ui/IUIWrapper.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/IUIWrapper.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * IUIWrapper.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef IUIWRAPPER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/plugins/multisampler_ui.h lsp-plugins-1.1.26/include/ui/plugins/multisampler_ui.h --- lsp-plugins-1.1.24/include/ui/plugins/multisampler_ui.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/plugins/multisampler_ui.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * multisampler_ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июл. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июл. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_PLUGINS_MULTISAMPLER_UI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/plugins/para_equalizer_ui.h lsp-plugins-1.1.26/include/ui/plugins/para_equalizer_ui.h --- lsp-plugins-1.1.24/include/ui/plugins/para_equalizer_ui.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/plugins/para_equalizer_ui.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * para_equalizer_ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 сент. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 сент. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_PLUGINS_PARAEQUALIZERUI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/plugins/room_builder_ui.h lsp-plugins-1.1.26/include/ui/plugins/room_builder_ui.h --- lsp-plugins-1.1.24/include/ui/plugins/room_builder_ui.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/plugins/room_builder_ui.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * room_builder_ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_PLUGINS_ROOM_BUILDER_UI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/plugins/test_plugin_ui.h lsp-plugins-1.1.26/include/ui/plugins/test_plugin_ui.h --- lsp-plugins-1.1.24/include/ui/plugins/test_plugin_ui.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/plugins/test_plugin_ui.h 2020-09-15 20:10:12.572193515 +0000 @@ -1,8 +1,22 @@ /* - * ui_test_plugin.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_PLUGINS_TEST_PLUGIN_UI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/plugin_ui.h lsp-plugins-1.1.26/include/ui/plugin_ui.h --- lsp-plugins-1.1.24/include/ui/plugin_ui.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/plugin_ui.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * plugin_ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _UI_PLUGIN_UI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/serialize.h lsp-plugins-1.1.26/include/ui/serialize.h --- lsp-plugins-1.1.24/include/ui/serialize.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/serialize.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * serialize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_SERIALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/basic/LSPComplexWidget.h lsp-plugins-1.1.26/include/ui/tk/basic/LSPComplexWidget.h --- lsp-plugins-1.1.24/include/ui/tk/basic/LSPComplexWidget.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/basic/LSPComplexWidget.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * LSPComplexWidget.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_BASIC_LSPCOMPLEXWIDGET_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/basic/LSPWidgetContainer.h lsp-plugins-1.1.26/include/ui/tk/basic/LSPWidgetContainer.h --- lsp-plugins-1.1.24/include/ui/tk/basic/LSPWidgetContainer.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/basic/LSPWidgetContainer.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * IWidgetContainer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPWIDGETCONTAINER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/basic/LSPWidget.h lsp-plugins-1.1.26/include/ui/tk/basic/LSPWidget.h --- lsp-plugins-1.1.24/include/ui/tk/basic/LSPWidget.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/basic/LSPWidget.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * LSPWidget.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPWIDGET_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/helpers/draw.h lsp-plugins-1.1.26/include/ui/tk/helpers/draw.h --- lsp-plugins-1.1.24/include/ui/tk/helpers/draw.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/helpers/draw.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * draw.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_HELPERS_DRAW_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/helpers/mime.h lsp-plugins-1.1.26/include/ui/tk/helpers/mime.h --- lsp-plugins-1.1.24/include/ui/tk/helpers/mime.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/helpers/mime.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * mime.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 27 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 27 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_HELPERS_MIME_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPColor.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPColor.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPColor.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPColor.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPColor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_SYS_LSPCOLOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPDisplay.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPDisplay.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPDisplay.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPDisplay.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPDisplay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPDISPLAY_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPFloat.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPFloat.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPFloat.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPFloat.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * LSPFloatProperty.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_SYS_LSPFLOAT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPLocalString.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPLocalString.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPLocalString.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPLocalString.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPLocalString.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 мар. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 мар. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_SYS_LSPLOCALSTRING_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPSlot.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPSlot.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPSlot.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPSlot.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPSlot.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSLOT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPSlotSet.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPSlotSet.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPSlotSet.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPSlotSet.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPSlotSet.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSLOTSET_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPStyle.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPStyle.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPStyle.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPStyle.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPStyle.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_SYS_LSPSTYLE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPTheme.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPTheme.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPTheme.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPTheme.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPTheme.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPTHEME_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/sys/LSPTimer.h lsp-plugins-1.1.26/include/ui/tk/sys/LSPTimer.h --- lsp-plugins-1.1.24/include/ui/tk/sys/LSPTimer.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/sys/LSPTimer.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * Timer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPTIMER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/tk.h lsp-plugins-1.1.26/include/ui/tk/tk.h --- lsp-plugins-1.1.24/include/ui/tk/tk.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/tk.h 2020-09-15 20:10:12.569193541 +0000 @@ -1,8 +1,22 @@ /* - * tk.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_TK_H_ @@ -286,7 +300,6 @@ #include #include #include -#include #include #include #include diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPFileFilter.h lsp-plugins-1.1.26/include/ui/tk/util/LSPFileFilter.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPFileFilter.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPFileFilter.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFileFilter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 мая 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 мая 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPFILEFILTER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPFileFilterItem.h lsp-plugins-1.1.26/include/ui/tk/util/LSPFileFilterItem.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPFileFilterItem.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPFileFilterItem.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFileFilterItem.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 мар. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 мар. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPFILEFILTERITEM_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPFileMask.h lsp-plugins-1.1.26/include/ui/tk/util/LSPFileMask.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPFileMask.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPFileMask.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFileMask.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPFILEMASK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPFont.h lsp-plugins-1.1.26/include/ui/tk/util/LSPFont.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPFont.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPFont.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFont.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 5 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 5 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPFONT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPItem.h lsp-plugins-1.1.26/include/ui/tk/util/LSPItem.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPItem.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPItem.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPItem.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPITEM_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPItemList.h lsp-plugins-1.1.26/include/ui/tk/util/LSPItemList.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPItemList.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPItemList.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPItemList.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPITEMLIST_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPItemSelection.h lsp-plugins-1.1.26/include/ui/tk/util/LSPItemSelection.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPItemSelection.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPItemSelection.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPItemSelection.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPITEMSELECTION_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPKeyboardHandler.h lsp-plugins-1.1.26/include/ui/tk/util/LSPKeyboardHandler.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPKeyboardHandler.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPKeyboardHandler.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPKeyboardHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPKEYBOARDHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPPadding.h lsp-plugins-1.1.26/include/ui/tk/util/LSPPadding.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPPadding.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPPadding.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPPadding.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPPADDING_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPSizeConstraints.h lsp-plugins-1.1.26/include/ui/tk/util/LSPSizeConstraints.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPSizeConstraints.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPSizeConstraints.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPSizeConstraints.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPSIZECONSTRAINTS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPStyleTrigger.h lsp-plugins-1.1.26/include/ui/tk/util/LSPStyleTrigger.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPStyleTrigger.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPStyleTrigger.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPStyleTrigger.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 мар. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 мар. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPSTYLETRIGGER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPSurface.h lsp-plugins-1.1.26/include/ui/tk/util/LSPSurface.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPSurface.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPSurface.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPSurface.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPSURFACE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPTextCursor.h lsp-plugins-1.1.26/include/ui/tk/util/LSPTextCursor.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPTextCursor.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPTextCursor.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPTextCursor.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPTEXTCURSOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPTextDataSink.h lsp-plugins-1.1.26/include/ui/tk/util/LSPTextDataSink.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPTextDataSink.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPTextDataSink.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPDataSink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 22 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 22 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPDATASINK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPTextDataSource.h lsp-plugins-1.1.26/include/ui/tk/util/LSPTextDataSource.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPTextDataSource.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPTextDataSource.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPTextDataSource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPTEXTDATASOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPTextLines.h lsp-plugins-1.1.26/include/ui/tk/util/LSPTextLines.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPTextLines.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPTextLines.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPTextLines.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 26 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 26 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPTEXTLINES_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPTextSelection.h lsp-plugins-1.1.26/include/ui/tk/util/LSPTextSelection.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPTextSelection.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPTextSelection.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPSelection.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 4 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 4 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPTEXTSELECTION_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPUrlSink.h lsp-plugins-1.1.26/include/ui/tk/util/LSPUrlSink.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPUrlSink.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPUrlSink.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPUrlSink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPURLSINK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/util/LSPWindowActions.h lsp-plugins-1.1.26/include/ui/tk/util/LSPWindowActions.h --- lsp-plugins-1.1.24/include/ui/tk/util/LSPWindowActions.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/util/LSPWindowActions.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPWindowActions.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_UTIL_LSPWINDOWACTIONS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPCapture3D.h lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPCapture3D.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPCapture3D.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPCapture3D.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPCapture3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_3D_LSPCAPTURE3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPMesh3D.h lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPMesh3D.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPMesh3D.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPMesh3D.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPMesh3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 14 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 14 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_3D_LSPMESH3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPObject3D.h lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPObject3D.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/3d/LSPObject3D.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/3d/LSPObject3D.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPObject3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPOBJECT3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/dialogs/LSPFileDialog.h lsp-plugins-1.1.26/include/ui/tk/widgets/dialogs/LSPFileDialog.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/dialogs/LSPFileDialog.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/dialogs/LSPFileDialog.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPFileDialog.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_DIALOGS_LSPFILEDIALOG_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/dialogs/LSPMessageBox.h lsp-plugins-1.1.26/include/ui/tk/widgets/dialogs/LSPMessageBox.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/dialogs/LSPMessageBox.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/dialogs/LSPMessageBox.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPMessageBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_DIALOGS_LSPMESSAGEBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPAxis.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPAxis.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPAxis.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPAxis.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPAxis.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPAXIS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPBasis.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPBasis.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPBasis.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPBasis.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -/* - * LSPBasis.h - * - * Created on: 19 июл. 2017 г. - * Author: sadko - */ - -#ifndef UI_TK_LSPBASIS_H_ -#define UI_TK_LSPBASIS_H_ - -namespace lsp -{ - namespace tk - { - class LSPBasis: public LSPGraphItem - { - public: - static const w_class_t metadata; - - protected: - ssize_t nID; - - public: - explicit LSPBasis(LSPDisplay *dpy); - virtual ~LSPBasis(); - - public: - inline ssize_t get_id() const { return nID; } - inline void set_id(ssize_t id) { nID = id; } - }; - - } /* namespace tk */ -} /* namespace lsp */ - -#endif /* UI_TK_LSPBASIS_H_ */ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPCenter.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPCenter.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPCenter.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPCenter.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPCenter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPCENTER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPDot.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPDot.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPDot.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPDot.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPDot.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPDOT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPFrameBuffer.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPFrameBuffer.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPFrameBuffer.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPFrameBuffer.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPFrameBuffer.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 нояб. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 нояб. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_GRAPH_LSPFRAMEBUFFER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPGraphItem.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPGraphItem.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPGraphItem.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPGraphItem.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPGraphItem.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPGRAPHITEM_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPMarker.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPMarker.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPMarker.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPMarker.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPMarker.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPMARKER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPMesh.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPMesh.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPMesh.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPMesh.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPMesh.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPMESH_H_ @@ -18,7 +32,6 @@ static const w_class_t metadata; protected: - cstorage sBasis; size_t nWidth; size_t nCenter; size_t nDimensions; @@ -57,8 +70,6 @@ public: virtual void render(ISurface *s, bool force); - - virtual void add(LSPWidget *widget); }; } /* namespace tk */ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPText.h lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPText.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/graph/LSPText.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/graph/LSPText.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPText.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPTEXT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAlign.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAlign.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAlign.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAlign.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPAlign.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPALIGN_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPArea3D.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPArea3D.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPArea3D.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPArea3D.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPArea3D.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPAREA3D_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAudioFile.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAudioFile.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAudioFile.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAudioFile.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPAudioFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPAUDIOFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAudioSample.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAudioSample.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPAudioSample.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPAudioSample.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPAudioSample.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPAUDIOSAMPLE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPBox.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPBox.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPBox.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPBox.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPButton.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPButton.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPButton.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPButton.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPButton.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPBUTTON_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPComboBox.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPComboBox.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPComboBox.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPComboBox.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPComboBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 31 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 31 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPCOMBOBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPComboGroup.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPComboGroup.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPComboGroup.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPComboGroup.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPComboGroup.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 апр. 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 апр. 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPCOMBOGROUP_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPEdit.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPEdit.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPEdit.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPEdit.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPEdit.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPEDIT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPFader.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPFader.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPFader.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPFader.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFader.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPFADER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPFraction.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPFraction.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPFraction.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPFraction.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPFraction.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 мая 2018 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 мая 2018 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPFRACTION_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGraph.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGraph.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGraph.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGraph.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPGraph.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPGRAPH_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGrid.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGrid.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGrid.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGrid.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPGrid.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPGRID_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGroup.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGroup.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPGroup.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPGroup.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPGroup.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 17 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 17 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPGROUP_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPHyperlink.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPHyperlink.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPHyperlink.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPHyperlink.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPHyperlink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPHYPERLINK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPIndicator.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPIndicator.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPIndicator.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPIndicator.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPIndicator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPINDICATOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPKnob.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPKnob.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPKnob.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPKnob.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPKnob.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPKNOB_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLabel.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLabel.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLabel.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLabel.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPLabel.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 6 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 6 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPLABEL_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLed.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLed.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLed.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLed.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPLed.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPLED_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPListBox.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPListBox.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPListBox.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPListBox.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPListBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPLISTBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLoadFile.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLoadFile.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPLoadFile.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPLoadFile.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPLoadFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 07 мая 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 07 мая 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPLOADFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMenu.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMenu.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMenu.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMenu.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPMenu.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPMENU_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMenuItem.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMenuItem.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMenuItem.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMenuItem.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPMenuItem.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 18 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 18 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPMENUITEM_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMeter.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMeter.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMeter.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMeter.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPMeter.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPMETER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMountStud.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMountStud.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPMountStud.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPMountStud.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPMountStud.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 7 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 7 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPMOUNTSTUD_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPProgressBar.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPProgressBar.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPProgressBar.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPProgressBar.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPProgressBar.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 2 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 2 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPPROGRESSBAR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSaveFile.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSaveFile.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSaveFile.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSaveFile.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPSaveFile.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 нояб. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 нояб. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPSAVEFILE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPScrollBar.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPScrollBar.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPScrollBar.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPScrollBar.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPScrollBar.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 3 авг. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 3 авг. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSCROLLBAR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPScrollBox.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPScrollBox.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPScrollBox.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPScrollBox.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPScrollableBox.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSCROLLBOX_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSeparator.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSeparator.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSeparator.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSeparator.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPSeparator.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 9 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 9 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSEPARATOR_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSwitch.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSwitch.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPSwitch.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPSwitch.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPSwitch.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 1 июл. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 1 июл. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPSWITCH_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPVoid.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPVoid.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPVoid.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPVoid.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * LSPVoid.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 апр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 апр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPVOID_H_ diff -Nru lsp-plugins-1.1.24/include/ui/tk/widgets/LSPWindow.h lsp-plugins-1.1.26/include/ui/tk/widgets/LSPWindow.h --- lsp-plugins-1.1.24/include/ui/tk/widgets/LSPWindow.h 2020-07-16 17:04:08.863453922 +0000 +++ lsp-plugins-1.1.26/include/ui/tk/widgets/LSPWindow.h 2020-09-15 20:10:12.570193532 +0000 @@ -1,8 +1,22 @@ /* - * LSPWindow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_TK_LSPWINDOW_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ui_builder.h lsp-plugins-1.1.26/include/ui/ui_builder.h --- lsp-plugins-1.1.24/include/ui/ui_builder.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ui_builder.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * ui_builder.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 21 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 21 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _UI_UI_BUILDER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ui.h lsp-plugins-1.1.26/include/ui/ui.h --- lsp-plugins-1.1.24/include/ui/ui.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ui.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 20 окт. 2015 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 20 окт. 2015 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef _UI_UI_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ui_locale.h lsp-plugins-1.1.26/include/ui/ui_locale.h --- lsp-plugins-1.1.24/include/ui/ui_locale.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/ui_locale.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * ui_locale.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 23 окт. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 23 окт. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef INCLUDE_UI_UI_LOCALE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/IDataSink.h lsp-plugins-1.1.26/include/ui/ws/IDataSink.h --- lsp-plugins-1.1.24/include/ui/ws/IDataSink.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/IDataSink.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * IDataSink.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_IDATASINK_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/IDataSource.h lsp-plugins-1.1.26/include/ui/ws/IDataSource.h --- lsp-plugins-1.1.24/include/ui/ws/IDataSource.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/IDataSource.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * IDataSource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 авг. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 авг. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_IDATASOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/IDisplay.h lsp-plugins-1.1.26/include/ui/ws/IDisplay.h --- lsp-plugins-1.1.24/include/ui/ws/IDisplay.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/IDisplay.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * IDisplay.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_IDISPLAY_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/IEventHandler.h lsp-plugins-1.1.26/include/ui/ws/IEventHandler.h --- lsp-plugins-1.1.24/include/ui/ws/IEventHandler.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/IEventHandler.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * IEventHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_IEVENTHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/INativeWindow.h lsp-plugins-1.1.26/include/ui/ws/INativeWindow.h --- lsp-plugins-1.1.24/include/ui/ws/INativeWindow.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/INativeWindow.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * INativeWindow.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 12 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 12 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_INATIVEWINDOW_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/IR3DBackend.h lsp-plugins-1.1.26/include/ui/ws/IR3DBackend.h --- lsp-plugins-1.1.24/include/ui/ws/IR3DBackend.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/IR3DBackend.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * IR3DBackend.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 24 апр. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 24 апр. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_IR3DBACKEND_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/ISurface.h lsp-plugins-1.1.26/include/ui/ws/ISurface.h --- lsp-plugins-1.1.24/include/ui/ws/ISurface.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/ISurface.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * ISurface.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_ISURFACE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/keycodes.h lsp-plugins-1.1.26/include/ui/ws/keycodes.h --- lsp-plugins-1.1.24/include/ui/ws/keycodes.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/keycodes.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * keycodes.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_KEYCODES_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/ws.h lsp-plugins-1.1.26/include/ui/ws/ws.h --- lsp-plugins-1.1.24/include/ui/ws/ws.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/ws.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * ws.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 16 июн. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 16 июн. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_WS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/decode.h lsp-plugins-1.1.26/include/ui/ws/x11/decode.h --- lsp-plugins-1.1.24/include/ui/ws/x11/decode.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/decode.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * decode.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 8 сент. 2017 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 8 сент. 2017 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_WS_X11_DECODE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/ws.h lsp-plugins-1.1.26/include/ui/ws/x11/ws.h --- lsp-plugins-1.1.24/include/ui/ws/x11/ws.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/ws.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * ui.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_WS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11AtomList.h lsp-plugins-1.1.26/include/ui/ws/x11/X11AtomList.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11AtomList.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11AtomList.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * X11AtomList.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef WM_PREDEFINED_ATOM diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11Atoms.h lsp-plugins-1.1.26/include/ui/ws/x11/X11Atoms.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11Atoms.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11Atoms.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * X11Atoms.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 11 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 11 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_X11ATOMS_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11CairoGradient.h lsp-plugins-1.1.26/include/ui/ws/x11/X11CairoGradient.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11CairoGradient.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11CairoGradient.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * X11CairoGradient.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 19 дек. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 19 дек. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_X11CAIROGRADIENT_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11CairoSurface.h lsp-plugins-1.1.26/include/ui/ws/x11/X11CairoSurface.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11CairoSurface.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11CairoSurface.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * X11CairoSurface.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 25 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 25 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_X11CAIROSURFACE_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11Display.h lsp-plugins-1.1.26/include/ui/ws/x11/X11Display.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11Display.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11Display.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * UICore.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_X11DISPLAY_H_ diff -Nru lsp-plugins-1.1.24/include/ui/ws/x11/X11Window.h lsp-plugins-1.1.26/include/ui/ws/x11/X11Window.h --- lsp-plugins-1.1.24/include/ui/ws/x11/X11Window.h 2020-07-16 17:04:08.864453913 +0000 +++ lsp-plugins-1.1.26/include/ui/ws/x11/X11Window.h 2020-09-15 20:10:12.571193524 +0000 @@ -1,8 +1,22 @@ /* - * Window.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 10 окт. 2016 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 10 окт. 2016 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_X11_WINDOW_H_ diff -Nru lsp-plugins-1.1.24/include/ui/XMLHandler.h lsp-plugins-1.1.26/include/ui/XMLHandler.h --- lsp-plugins-1.1.24/include/ui/XMLHandler.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/XMLHandler.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * XMLHandler.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_XMLHANDLER_H_ diff -Nru lsp-plugins-1.1.24/include/ui/XMLNode.h lsp-plugins-1.1.26/include/ui/XMLNode.h --- lsp-plugins-1.1.24/include/ui/XMLNode.h 2020-07-16 17:04:08.862453931 +0000 +++ lsp-plugins-1.1.26/include/ui/XMLNode.h 2020-09-15 20:10:12.568193549 +0000 @@ -1,8 +1,22 @@ /* - * XMLNode.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 29 окт. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 29 окт. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UI_XMLNODE_H_ diff -Nru lsp-plugins-1.1.24/include/utils/common.h lsp-plugins-1.1.26/include/utils/common.h --- lsp-plugins-1.1.24/include/utils/common.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/common.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * common.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 15 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 15 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_COMMON_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/fdict.h lsp-plugins-1.1.26/include/utils/resource_gen/fdict.h --- lsp-plugins-1.1.24/include/utils/resource_gen/fdict.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/fdict.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * fdict.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_FDICT_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/json.h lsp-plugins-1.1.26/include/utils/resource_gen/json.h --- lsp-plugins-1.1.24/include/utils/resource_gen/json.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/json.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * i18n.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 28 февр. 2020 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 28 февр. 2020 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_I18N_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/presets.h lsp-plugins-1.1.26/include/utils/resource_gen/presets.h --- lsp-plugins-1.1.24/include/utils/resource_gen/presets.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/presets.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * presets.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_PRESETS_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/resource.h lsp-plugins-1.1.26/include/utils/resource_gen/resource.h --- lsp-plugins-1.1.24/include/utils/resource_gen/resource.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/resource.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * resource.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_RESOURCE_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/scene3d.h lsp-plugins-1.1.26/include/utils/resource_gen/scene3d.h --- lsp-plugins-1.1.24/include/utils/resource_gen/scene3d.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/scene3d.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * scene3d.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_SCENE3D_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/serialize.h lsp-plugins-1.1.26/include/utils/resource_gen/serialize.h --- lsp-plugins-1.1.24/include/utils/resource_gen/serialize.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/serialize.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * serialize.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_SERIALIZE_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/wdict.h lsp-plugins-1.1.26/include/utils/resource_gen/wdict.h --- lsp-plugins-1.1.24/include/utils/resource_gen/wdict.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/wdict.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * wdict.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_WDICT_H_ diff -Nru lsp-plugins-1.1.24/include/utils/resource_gen/xml.h lsp-plugins-1.1.26/include/utils/resource_gen/xml.h --- lsp-plugins-1.1.24/include/utils/resource_gen/xml.h 2020-07-16 17:04:08.873453833 +0000 +++ lsp-plugins-1.1.26/include/utils/resource_gen/xml.h 2020-09-15 20:10:12.582193430 +0000 @@ -1,8 +1,22 @@ /* - * xml.h + * Copyright (C) 2020 Linux Studio Plugins Project + * (C) 2020 Vladimir Sadovnikov * - * Created on: 13 июл. 2019 г. - * Author: sadko + * This file is part of lsp-plugins + * Created on: 13 июл. 2019 г. + * + * lsp-plugins 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 3 of the License, or + * any later version. + * + * lsp-plugins 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. + * + * You should have received a copy of the GNU Lesser General Public License + * along with lsp-plugins. If not, see . */ #ifndef UTILS_RESOURCE_GEN_XML_H_ diff -Nru lsp-plugins-1.1.24/res/demo/crossover/lr.cfg lsp-plugins-1.1.26/res/demo/crossover/lr.cfg --- lsp-plugins-1.1.24/res/demo/crossover/lr.cfg 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/res/demo/crossover/lr.cfg 2020-09-15 20:10:12.608193208 +0000 @@ -0,0 +1,406 @@ +#------------------------------------------------------------------------------- +# +# This file contains configuration of the audio plugin. +# Plugin name: Frequenzweiche LeftRight x8 (Crossover LeftRight x8) +# Package version: 1.1.24 +# Plugin version: 1.0.0 +# LV2 URI: http://lsp-plug.in/plugins/lv2/crossover_lr +# VST identifier: wvbr +# LADSPA identifier: 5002168 +# +# (C) Linux Studio Plugins Project +# http://lsp-plug.in/ +# +#------------------------------------------------------------------------------- + +# Input gain [G]: 0.00000000..10.00000000 +g_in = 1.00000000 + +# Output gain [G]: 0.00000000..10.00000000 +g_out = 0.53088468 + +# FFT reactivity [ms]: 0.00000000..1.00000000 +react = 0.20000000 + +# Shift gain [G]: 0.00000000..1000.00000000 +shift = 1.00000000 + +# Graph zoom [G]: 0.12589000..1.00000000 +zoom = 1.00000000 + +# Processor selector: 0..1 +# 0: Left +# 1: Right +sel = 1 + +# Band filter curves Left [boolean]: true/false +flt_l = true + +# Overall filter curve Left [boolean]: true/false +crv_l = true + +# Band filter curves Right [boolean]: true/false +flt_r = true + +# Overall filter curve Right [boolean]: true/false +crv_r = true + +# Input FFT graph enable Left [boolean]: true/false +ife_l = true + +# Output FFT graph enable Left [boolean]: true/false +ofe_l = true + +# Input FFT graph enable Right [boolean]: true/false +ife_r = true + +# Output FFT graph enable Right [boolean]: true/false +ofe_r = true + +# Frequency range slope 1 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1l = 0 + +# Split frequency 1 Left [Hz]: 10.00000000..20000.00000000 +sf_1l = 40.00000000 + +# Frequency range slope 2 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2l = 4 + +# Split frequency 2 Left [Hz]: 10.00000000..20000.00000000 +sf_2l = 100.00000000 + +# Frequency range slope 3 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3l = 0 + +# Split frequency 3 Left [Hz]: 10.00000000..20000.00000000 +sf_3l = 252.00000000 + +# Frequency range slope 4 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4l = 4 + +# Split frequency 4 Left [Hz]: 10.00000000..20000.00000000 +sf_4l = 632.00000000 + +# Frequency range slope 5 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5l = 0 + +# Split frequency 5 Left [Hz]: 10.00000000..20000.00000000 +sf_5l = 1587.00000000 + +# Frequency range slope 6 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6l = 4 + +# Split frequency 6 Left [Hz]: 10.00000000..20000.00000000 +sf_6l = 3984.00000000 + +# Frequency range slope 7 Left: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7l = 0 + +# Split frequency 7 Left [Hz]: 10.00000000..20000.00000000 +sf_7l = 10000.00000000 + +# Frequency range slope 1 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1r = 0 + +# Split frequency 1 Right [Hz]: 10.00000000..20000.00000000 +sf_1r = 40.00000000 + +# Frequency range slope 2 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2r = 2 + +# Split frequency 2 Right [Hz]: 10.00000000..20000.00000000 +sf_2r = 100.00000000 + +# Frequency range slope 3 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3r = 0 + +# Split frequency 3 Right [Hz]: 10.00000000..20000.00000000 +sf_3r = 252.00000000 + +# Frequency range slope 4 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4r = 2 + +# Split frequency 4 Right [Hz]: 10.00000000..20000.00000000 +sf_4r = 632.00000000 + +# Frequency range slope 5 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5r = 0 + +# Split frequency 5 Right [Hz]: 10.00000000..20000.00000000 +sf_5r = 1587.00000000 + +# Frequency range slope 6 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6r = 2 + +# Split frequency 6 Right [Hz]: 10.00000000..20000.00000000 +sf_6r = 3984.00000000 + +# Frequency range slope 7 Right: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7r = 0 + +# Split frequency 7 Right [Hz]: 10.00000000..20000.00000000 +sf_7r = 10000.00000000 + +# Solo band 0 Left [boolean]: true/false +bs_0l = false + +# Mute band 0 Left [boolean]: true/false +bm_0l = false + +# Band gain 0 Left [G]: 0.00100000..1000.00000000 +bg_0l = 1.00000000 + +# Hue 0 Left: 0.00000000..1.00000000 +hue_0l = 0.00000000 + +# Solo band 1 Left [boolean]: true/false +bs_1l = false + +# Mute band 1 Left [boolean]: true/false +bm_1l = false + +# Band gain 1 Left [G]: 0.00100000..1000.00000000 +bg_1l = 1.00000000 + +# Hue 1 Left: 0.00000000..1.00000000 +hue_1l = 0.12500000 + +# Solo band 2 Left [boolean]: true/false +bs_2l = false + +# Mute band 2 Left [boolean]: true/false +bm_2l = false + +# Band gain 2 Left [G]: 0.00100000..1000.00000000 +bg_2l = 0.35894275 + +# Hue 2 Left: 0.00000000..1.00000000 +hue_2l = 0.25000000 + +# Solo band 3 Left [boolean]: true/false +bs_3l = false + +# Mute band 3 Left [boolean]: true/false +bm_3l = false + +# Band gain 3 Left [G]: 0.00100000..1000.00000000 +bg_3l = 1.00000000 + +# Hue 3 Left: 0.00000000..1.00000000 +hue_3l = 0.37500000 + +# Solo band 4 Left [boolean]: true/false +bs_4l = false + +# Mute band 4 Left [boolean]: true/false +bm_4l = false + +# Band gain 4 Left [G]: 0.00100000..1000.00000000 +bg_4l = 0.37688974 + +# Hue 4 Left: 0.00000000..1.00000000 +hue_4l = 0.50000000 + +# Solo band 5 Left [boolean]: true/false +bs_5l = false + +# Mute band 5 Left [boolean]: true/false +bm_5l = false + +# Band gain 5 Left [G]: 0.00100000..1000.00000000 +bg_5l = 1.00000000 + +# Hue 5 Left: 0.00000000..1.00000000 +hue_5l = 0.62500000 + +# Solo band 6 Left [boolean]: true/false +bs_6l = false + +# Mute band 6 Left [boolean]: true/false +bm_6l = false + +# Band gain 6 Left [G]: 0.00100000..1000.00000000 +bg_6l = 1.00000000 + +# Hue 6 Left: 0.00000000..1.00000000 +hue_6l = 0.75000000 + +# Solo band 7 Left [boolean]: true/false +bs_7l = false + +# Mute band 7 Left [boolean]: true/false +bm_7l = false + +# Band gain 7 Left [G]: 0.00100000..1000.00000000 +bg_7l = 1.00000000 + +# Hue 7 Left: 0.00000000..1.00000000 +hue_7l = 0.87500000 + +# Solo band 0 Right [boolean]: true/false +bs_0r = false + +# Mute band 0 Right [boolean]: true/false +bm_0r = false + +# Band gain 0 Right [G]: 0.00100000..1000.00000000 +bg_0r = 1.00000000 + +# Hue 0 Right: 0.00000000..1.00000000 +hue_0r = 0.00000000 + +# Solo band 1 Right [boolean]: true/false +bs_1r = false + +# Mute band 1 Right [boolean]: true/false +bm_1r = false + +# Band gain 1 Right [G]: 0.00100000..1000.00000000 +bg_1r = 1.00000000 + +# Hue 1 Right: 0.00000000..1.00000000 +hue_1r = 0.12500000 + +# Solo band 2 Right [boolean]: true/false +bs_2r = false + +# Mute band 2 Right [boolean]: true/false +bm_2r = false + +# Band gain 2 Right [G]: 0.00100000..1000.00000000 +bg_2r = 3.38635159 + +# Hue 2 Right: 0.00000000..1.00000000 +hue_2r = 0.25000000 + +# Solo band 3 Right [boolean]: true/false +bs_3r = false + +# Mute band 3 Right [boolean]: true/false +bm_3r = false + +# Band gain 3 Right [G]: 0.00100000..1000.00000000 +bg_3r = 1.00000000 + +# Hue 3 Right: 0.00000000..1.00000000 +hue_3r = 0.37500000 + +# Solo band 4 Right [boolean]: true/false +bs_4r = false + +# Mute band 4 Right [boolean]: true/false +bm_4r = false + +# Band gain 4 Right [G]: 0.00100000..1000.00000000 +bg_4r = 3.07152128 + +# Hue 4 Right: 0.00000000..1.00000000 +hue_4r = 0.50000000 + +# Solo band 5 Right [boolean]: true/false +bs_5r = false + +# Mute band 5 Right [boolean]: true/false +bm_5r = false + +# Band gain 5 Right [G]: 0.00100000..1000.00000000 +bg_5r = 1.00000000 + +# Hue 5 Right: 0.00000000..1.00000000 +hue_5r = 0.62500000 + +# Solo band 6 Right [boolean]: true/false +bs_6r = false + +# Mute band 6 Right [boolean]: true/false +bm_6r = false + +# Band gain 6 Right [G]: 0.00100000..1000.00000000 +bg_6r = 1.00000000 + +# Hue 6 Right: 0.00000000..1.00000000 +hue_6r = 0.75000000 + +# Solo band 7 Right [boolean]: true/false +bs_7r = false + +# Mute band 7 Right [boolean]: true/false +bm_7r = false + +# Band gain 7 Right [G]: 0.00100000..1000.00000000 +bg_7r = 1.00000000 + +# Hue 7 Right: 0.00000000..1.00000000 +hue_7r = 0.87500000 + +#------------------------------------------------------------------------------- diff -Nru lsp-plugins-1.1.24/res/demo/crossover/mono.cfg lsp-plugins-1.1.26/res/demo/crossover/mono.cfg --- lsp-plugins-1.1.24/res/demo/crossover/mono.cfg 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/res/demo/crossover/mono.cfg 2020-09-15 20:10:12.608193208 +0000 @@ -0,0 +1,216 @@ +#------------------------------------------------------------------------------- +# +# This file contains configuration of the audio plugin. +# Plugin name: Frequenzweiche Mono x8 (Crossover Mono x8) +# Package version: 1.1.24 +# Plugin version: 1.0.0 +# LV2 URI: http://lsp-plug.in/plugins/lv2/crossover_mono +# VST identifier: rmnv +# LADSPA identifier: 5002166 +# +# (C) Linux Studio Plugins Project +# http://lsp-plug.in/ +# +#------------------------------------------------------------------------------- + +# Input gain [G]: 0.00000000..10.00000000 +g_in = 1.00000000 + +# Output gain [G]: 0.00000000..10.00000000 +g_out = 1.00000000 + +# FFT reactivity [ms]: 0.00000000..1.00000000 +react = 0.49665928 + +# Shift gain [G]: 0.00000000..1000.00000000 +shift = 1.00000000 + +# Graph zoom [G]: 0.12589000..1.00000000 +zoom = 1.00000000 + +# Band filter curves [boolean]: true/false +flt = true + +# Overall filter curve [boolean]: true/false +crv = true + +# Input FFT graph enable [boolean]: true/false +ife = true + +# Output FFT graph enable [boolean]: true/false +ofe = true + +# Frequency range slope 1: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1 = 3 + +# Split frequency 1 [Hz]: 10.00000000..20000.00000000 +sf_1 = 40.00000000 + +# Frequency range slope 2: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2 = 3 + +# Split frequency 2 [Hz]: 10.00000000..20000.00000000 +sf_2 = 100.00000000 + +# Frequency range slope 3: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3 = 3 + +# Split frequency 3 [Hz]: 10.00000000..20000.00000000 +sf_3 = 252.00000000 + +# Frequency range slope 4: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4 = 3 + +# Split frequency 4 [Hz]: 10.00000000..20000.00000000 +sf_4 = 632.00000000 + +# Frequency range slope 5: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5 = 3 + +# Split frequency 5 [Hz]: 10.00000000..20000.00000000 +sf_5 = 1587.00000000 + +# Frequency range slope 6: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6 = 3 + +# Split frequency 6 [Hz]: 10.00000000..20000.00000000 +sf_6 = 3984.00000000 + +# Frequency range slope 7: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7 = 3 + +# Split frequency 7 [Hz]: 10.00000000..20000.00000000 +sf_7 = 10000.00000000 + +# Solo band 0 [boolean]: true/false +bs_0 = true + +# Mute band 0 [boolean]: true/false +bm_0 = false + +# Band gain 0 [G]: 0.00100000..1000.00000000 +bg_0 = 0.15984099 + +# Hue 0: 0.00000000..1.00000000 +hue_0 = 0.00000000 + +# Solo band 1 [boolean]: true/false +bs_1 = false + +# Mute band 1 [boolean]: true/false +bm_1 = false + +# Band gain 1 [G]: 0.00100000..1000.00000000 +bg_1 = 1.00000000 + +# Hue 1: 0.00000000..1.00000000 +hue_1 = 0.12500000 + +# Solo band 2 [boolean]: true/false +bs_2 = true + +# Mute band 2 [boolean]: true/false +bm_2 = false + +# Band gain 2 [G]: 0.00100000..1000.00000000 +bg_2 = 2.07892728 + +# Hue 2: 0.00000000..1.00000000 +hue_2 = 0.25000000 + +# Solo band 3 [boolean]: true/false +bs_3 = false + +# Mute band 3 [boolean]: true/false +bm_3 = false + +# Band gain 3 [G]: 0.00100000..1000.00000000 +bg_3 = 1.00000000 + +# Hue 3: 0.00000000..1.00000000 +hue_3 = 0.37500000 + +# Solo band 4 [boolean]: true/false +bs_4 = true + +# Mute band 4 [boolean]: true/false +bm_4 = false + +# Band gain 4 [G]: 0.00100000..1000.00000000 +bg_4 = 0.58467954 + +# Hue 4: 0.00000000..1.00000000 +hue_4 = 0.50000000 + +# Solo band 5 [boolean]: true/false +bs_5 = false + +# Mute band 5 [boolean]: true/false +bm_5 = false + +# Band gain 5 [G]: 0.00100000..1000.00000000 +bg_5 = 1.00000000 + +# Hue 5: 0.00000000..1.00000000 +hue_5 = 0.62500000 + +# Solo band 6 [boolean]: true/false +bs_6 = true + +# Mute band 6 [boolean]: true/false +bm_6 = false + +# Band gain 6 [G]: 0.00100000..1000.00000000 +bg_6 = 1.62889409 + +# Hue 6: 0.00000000..1.00000000 +hue_6 = 0.75000000 + +# Solo band 7 [boolean]: true/false +bs_7 = false + +# Mute band 7 [boolean]: true/false +bm_7 = false + +# Band gain 7 [G]: 0.00100000..1000.00000000 +bg_7 = 1.00000000 + +# Hue 7: 0.00000000..1.00000000 +hue_7 = 0.87500000 + +#------------------------------------------------------------------------------- diff -Nru lsp-plugins-1.1.24/res/demo/crossover/ms.cfg lsp-plugins-1.1.26/res/demo/crossover/ms.cfg --- lsp-plugins-1.1.24/res/demo/crossover/ms.cfg 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/res/demo/crossover/ms.cfg 2020-09-15 20:10:12.608193208 +0000 @@ -0,0 +1,409 @@ +#------------------------------------------------------------------------------- +# +# This file contains configuration of the audio plugin. +# Plugin name: Frequenzweiche MidSide x8 (Crossover MidSide x8) +# Package version: 1.1.24 +# Plugin version: 1.0.0 +# LV2 URI: http://lsp-plug.in/plugins/lv2/crossover_ms +# VST identifier: vlqv +# LADSPA identifier: 5002169 +# +# (C) Linux Studio Plugins Project +# http://lsp-plug.in/ +# +#------------------------------------------------------------------------------- + +# Input gain [G]: 0.00000000..10.00000000 +g_in = 1.00000000 + +# Output gain [G]: 0.00000000..10.00000000 +g_out = 1.00000000 + +# FFT reactivity [ms]: 0.00000000..1.00000000 +react = 0.20000000 + +# Shift gain [G]: 0.00000000..1000.00000000 +shift = 1.00000000 + +# Graph zoom [G]: 0.12589000..1.00000000 +zoom = 1.00000000 + +# Processor selector: 0..1 +# 0: Middle +# 1: Side +sel = 1 + +# Mid/Side output [boolean]: true/false +msout = true + +# Band filter curves Mid [boolean]: true/false +flt_m = true + +# Overall filter curve Mid [boolean]: true/false +crv_m = true + +# Band filter curves Side [boolean]: true/false +flt_s = true + +# Overall filter curve Side [boolean]: true/false +crv_s = true + +# Input FFT graph enable Mid [boolean]: true/false +ife_m = false + +# Output FFT graph enable Mid [boolean]: true/false +ofe_m = true + +# Input FFT graph enable Mid [boolean]: true/false +ife_s = false + +# Output FFT graph enable Mid [boolean]: true/false +ofe_s = true + +# Frequency range slope 1 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1m = 0 + +# Split frequency 1 Mid [Hz]: 10.00000000..20000.00000000 +sf_1m = 40.00000000 + +# Frequency range slope 2 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2m = 2 + +# Split frequency 2 Mid [Hz]: 10.00000000..20000.00000000 +sf_2m = 100.00000000 + +# Frequency range slope 3 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3m = 0 + +# Split frequency 3 Mid [Hz]: 10.00000000..20000.00000000 +sf_3m = 252.00000000 + +# Frequency range slope 4 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4m = 2 + +# Split frequency 4 Mid [Hz]: 10.00000000..20000.00000000 +sf_4m = 632.00000000 + +# Frequency range slope 5 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5m = 0 + +# Split frequency 5 Mid [Hz]: 10.00000000..20000.00000000 +sf_5m = 1587.00000000 + +# Frequency range slope 6 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6m = 2 + +# Split frequency 6 Mid [Hz]: 10.00000000..20000.00000000 +sf_6m = 3984.00000000 + +# Frequency range slope 7 Mid: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7m = 0 + +# Split frequency 7 Mid [Hz]: 10.00000000..20000.00000000 +sf_7m = 10000.00000000 + +# Frequency range slope 1 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1s = 0 + +# Split frequency 1 Side [Hz]: 10.00000000..20000.00000000 +sf_1s = 40.00000000 + +# Frequency range slope 2 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2s = 2 + +# Split frequency 2 Side [Hz]: 10.00000000..20000.00000000 +sf_2s = 100.00000000 + +# Frequency range slope 3 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3s = 0 + +# Split frequency 3 Side [Hz]: 10.00000000..20000.00000000 +sf_3s = 252.00000000 + +# Frequency range slope 4 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4s = 2 + +# Split frequency 4 Side [Hz]: 10.00000000..20000.00000000 +sf_4s = 632.00000000 + +# Frequency range slope 5 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5s = 0 + +# Split frequency 5 Side [Hz]: 10.00000000..20000.00000000 +sf_5s = 1587.00000000 + +# Frequency range slope 6 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6s = 2 + +# Split frequency 6 Side [Hz]: 10.00000000..20000.00000000 +sf_6s = 3984.00000000 + +# Frequency range slope 7 Side: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7s = 0 + +# Split frequency 7 Side [Hz]: 10.00000000..20000.00000000 +sf_7s = 10000.00000000 + +# Solo band 0 Mid [boolean]: true/false +bs_0m = false + +# Mute band 0 Mid [boolean]: true/false +bm_0m = false + +# Band gain 0 Mid [G]: 0.00100000..1000.00000000 +bg_0m = 1.00000000 + +# Hue 0 Mid: 0.00000000..1.00000000 +hue_0m = 0.00000000 + +# Solo band 1 Mid [boolean]: true/false +bs_1m = false + +# Mute band 1 Mid [boolean]: true/false +bm_1m = false + +# Band gain 1 Mid [G]: 0.00100000..1000.00000000 +bg_1m = 1.00000000 + +# Hue 1 Mid: 0.00000000..1.00000000 +hue_1m = 0.12500000 + +# Solo band 2 Mid [boolean]: true/false +bs_2m = false + +# Mute band 2 Mid [boolean]: true/false +bm_2m = false + +# Band gain 2 Mid [G]: 0.00100000..1000.00000000 +bg_2m = 1.00000000 + +# Hue 2 Mid: 0.00000000..1.00000000 +hue_2m = 0.25000000 + +# Solo band 3 Mid [boolean]: true/false +bs_3m = false + +# Mute band 3 Mid [boolean]: true/false +bm_3m = false + +# Band gain 3 Mid [G]: 0.00100000..1000.00000000 +bg_3m = 1.00000000 + +# Hue 3 Mid: 0.00000000..1.00000000 +hue_3m = 0.37500000 + +# Solo band 4 Mid [boolean]: true/false +bs_4m = false + +# Mute band 4 Mid [boolean]: true/false +bm_4m = false + +# Band gain 4 Mid [G]: 0.00100000..1000.00000000 +bg_4m = 1.00000000 + +# Hue 4 Mid: 0.00000000..1.00000000 +hue_4m = 0.50000000 + +# Solo band 5 Mid [boolean]: true/false +bs_5m = false + +# Mute band 5 Mid [boolean]: true/false +bm_5m = false + +# Band gain 5 Mid [G]: 0.00100000..1000.00000000 +bg_5m = 1.00000000 + +# Hue 5 Mid: 0.00000000..1.00000000 +hue_5m = 0.62500000 + +# Solo band 6 Mid [boolean]: true/false +bs_6m = false + +# Mute band 6 Mid [boolean]: true/false +bm_6m = false + +# Band gain 6 Mid [G]: 0.00100000..1000.00000000 +bg_6m = 1.00000000 + +# Hue 6 Mid: 0.00000000..1.00000000 +hue_6m = 0.75000000 + +# Solo band 7 Mid [boolean]: true/false +bs_7m = false + +# Mute band 7 Mid [boolean]: true/false +bm_7m = false + +# Band gain 7 Mid [G]: 0.00100000..1000.00000000 +bg_7m = 1.00000000 + +# Hue 7 Mid: 0.00000000..1.00000000 +hue_7m = 0.87500000 + +# Solo band 0 Side [boolean]: true/false +bs_0s = false + +# Mute band 0 Side [boolean]: true/false +bm_0s = false + +# Band gain 0 Side [G]: 0.00100000..1000.00000000 +bg_0s = 0.02981064 + +# Hue 0 Side: 0.00000000..1.00000000 +hue_0s = 0.00000000 + +# Solo band 1 Side [boolean]: true/false +bs_1s = false + +# Mute band 1 Side [boolean]: true/false +bm_1s = false + +# Band gain 1 Side [G]: 0.00100000..1000.00000000 +bg_1s = 1.00000000 + +# Hue 1 Side: 0.00000000..1.00000000 +hue_1s = 0.12500000 + +# Solo band 2 Side [boolean]: true/false +bs_2s = false + +# Mute band 2 Side [boolean]: true/false +bm_2s = false + +# Band gain 2 Side [G]: 0.00100000..1000.00000000 +bg_2s = 0.12270467 + +# Hue 2 Side: 0.00000000..1.00000000 +hue_2s = 0.25000000 + +# Solo band 3 Side [boolean]: true/false +bs_3s = false + +# Mute band 3 Side [boolean]: true/false +bm_3s = false + +# Band gain 3 Side [G]: 0.00100000..1000.00000000 +bg_3s = 1.00000000 + +# Hue 3 Side: 0.00000000..1.00000000 +hue_3s = 0.37500000 + +# Solo band 4 Side [boolean]: true/false +bs_4s = false + +# Mute band 4 Side [boolean]: true/false +bm_4s = false + +# Band gain 4 Side [G]: 0.00100000..1000.00000000 +bg_4s = 1.00000000 + +# Hue 4 Side: 0.00000000..1.00000000 +hue_4s = 0.50000000 + +# Solo band 5 Side [boolean]: true/false +bs_5s = false + +# Mute band 5 Side [boolean]: true/false +bm_5s = false + +# Band gain 5 Side [G]: 0.00100000..1000.00000000 +bg_5s = 1.00000000 + +# Hue 5 Side: 0.00000000..1.00000000 +hue_5s = 0.62500000 + +# Solo band 6 Side [boolean]: true/false +bs_6s = false + +# Mute band 6 Side [boolean]: true/false +bm_6s = false + +# Band gain 6 Side [G]: 0.00100000..1000.00000000 +bg_6s = 2.29201508 + +# Hue 6 Side: 0.00000000..1.00000000 +hue_6s = 0.75000000 + +# Solo band 7 Side [boolean]: true/false +bs_7s = false + +# Mute band 7 Side [boolean]: true/false +bm_7s = false + +# Band gain 7 Side [G]: 0.00100000..1000.00000000 +bg_7s = 1.00000000 + +# Hue 7 Side: 0.00000000..1.00000000 +hue_7s = 0.87500000 + +#------------------------------------------------------------------------------- diff -Nru lsp-plugins-1.1.24/res/demo/crossover/stereo.cfg lsp-plugins-1.1.26/res/demo/crossover/stereo.cfg --- lsp-plugins-1.1.24/res/demo/crossover/stereo.cfg 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/res/demo/crossover/stereo.cfg 2020-09-15 20:10:12.608193208 +0000 @@ -0,0 +1,222 @@ +#------------------------------------------------------------------------------- +# +# This file contains configuration of the audio plugin. +# Plugin name: Frequenzweiche Stereo x8 (Crossover Stereo x8) +# Package version: 1.1.24 +# Plugin version: 1.0.0 +# LV2 URI: http://lsp-plug.in/plugins/lv2/crossover_stereo +# VST identifier: ooqb +# LADSPA identifier: 5002167 +# +# (C) Linux Studio Plugins Project +# http://lsp-plug.in/ +# +#------------------------------------------------------------------------------- + +# Input gain [G]: 0.00000000..10.00000000 +g_in = 1.00000000 + +# Output gain [G]: 0.00000000..10.00000000 +g_out = 0.21134903 + +# FFT reactivity [ms]: 0.00000000..1.00000000 +react = 0.20000000 + +# Shift gain [G]: 0.00000000..1000.00000000 +shift = 1.00000000 + +# Graph zoom [G]: 0.12589000..1.00000000 +zoom = 1.00000000 + +# Band filter curves [boolean]: true/false +flt = true + +# Overall filter curve [boolean]: true/false +crv = true + +# Input FFT graph enable Left [boolean]: true/false +ife_l = false + +# Output FFT graph enable Left [boolean]: true/false +ofe_l = false + +# Input FFT graph enable Right [boolean]: true/false +ife_r = false + +# Output FFT graph enable Right [boolean]: true/false +ofe_r = false + +# Frequency range slope 1: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_1 = 0 + +# Split frequency 1 [Hz]: 10.00000000..20000.00000000 +sf_1 = 40.00000000 + +# Frequency range slope 2: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_2 = 2 + +# Split frequency 2 [Hz]: 10.00000000..20000.00000000 +sf_2 = 100.00000000 + +# Frequency range slope 3: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_3 = 0 + +# Split frequency 3 [Hz]: 10.00000000..20000.00000000 +sf_3 = 252.00000000 + +# Frequency range slope 4: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_4 = 3 + +# Split frequency 4 [Hz]: 10.00000000..20000.00000000 +sf_4 = 632.00000000 + +# Frequency range slope 5: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_5 = 0 + +# Split frequency 5 [Hz]: 10.00000000..20000.00000000 +sf_5 = 1587.00000000 + +# Frequency range slope 6: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_6 = 3 + +# Split frequency 6 [Hz]: 10.00000000..20000.00000000 +sf_6 = 3984.00000000 + +# Frequency range slope 7: 0..4 +# 0: Off +# 1: 24 dB/oct +# 2: 48 dB/oct +# 3: 72 dB/oct +# 4: 96 dB/oct +frs_7 = 0 + +# Split frequency 7 [Hz]: 10.00000000..20000.00000000 +sf_7 = 10000.00000000 + +# Solo band 0 [boolean]: true/false +bs_0 = false + +# Mute band 0 [boolean]: true/false +bm_0 = false + +# Band gain 0 [G]: 0.00100000..1000.00000000 +bg_0 = 1.00000000 + +# Hue 0: 0.00000000..1.00000000 +hue_0 = 0.00000000 + +# Solo band 1 [boolean]: true/false +bs_1 = false + +# Mute band 1 [boolean]: true/false +bm_1 = false + +# Band gain 1 [G]: 0.00100000..1000.00000000 +bg_1 = 1.00000000 + +# Hue 1: 0.00000000..1.00000000 +hue_1 = 0.12500000 + +# Solo band 2 [boolean]: true/false +bs_2 = false + +# Mute band 2 [boolean]: true/false +bm_2 = false + +# Band gain 2 [G]: 0.00100000..1000.00000000 +bg_2 = 0.05902305 + +# Hue 2: 0.00000000..1.00000000 +hue_2 = 0.25000000 + +# Solo band 3 [boolean]: true/false +bs_3 = false + +# Mute band 3 [boolean]: true/false +bm_3 = false + +# Band gain 3 [G]: 0.00100000..1000.00000000 +bg_3 = 1.00000000 + +# Hue 3: 0.00000000..1.00000000 +hue_3 = 0.37500000 + +# Solo band 4 [boolean]: true/false +bs_4 = false + +# Mute band 4 [boolean]: true/false +bm_4 = false + +# Band gain 4 [G]: 0.00100000..1000.00000000 +bg_4 = 9.90595436 + +# Hue 4: 0.00000000..1.00000000 +hue_4 = 0.50000000 + +# Solo band 5 [boolean]: true/false +bs_5 = false + +# Mute band 5 [boolean]: true/false +bm_5 = false + +# Band gain 5 [G]: 0.00100000..1000.00000000 +bg_5 = 1.00000000 + +# Hue 5: 0.00000000..1.00000000 +hue_5 = 0.62500000 + +# Solo band 6 [boolean]: true/false +bs_6 = false + +# Mute band 6 [boolean]: true/false +bm_6 = false + +# Band gain 6 [G]: 0.00100000..1000.00000000 +bg_6 = 0.03994912 + +# Hue 6: 0.00000000..1.00000000 +hue_6 = 0.75000000 + +# Solo band 7 [boolean]: true/false +bs_7 = false + +# Mute band 7 [boolean]: true/false +bm_7 = false + +# Band gain 7 [G]: 0.00100000..1000.00000000 +bg_7 = 1.00000000 + +# Hue 7: 0.00000000..1.00000000 +hue_7 = 0.87500000 + +#------------------------------------------------------------------------------- Binary files /tmp/tmpKUasRx/vX0LzuVtd3/lsp-plugins-1.1.24/res/doc/img/plugins/crossover_lr.png and /tmp/tmpKUasRx/EZB55f9I00/lsp-plugins-1.1.26/res/doc/img/plugins/crossover_lr.png differ Binary files /tmp/tmpKUasRx/vX0LzuVtd3/lsp-plugins-1.1.24/res/doc/img/plugins/crossover_mono.png and /tmp/tmpKUasRx/EZB55f9I00/lsp-plugins-1.1.26/res/doc/img/plugins/crossover_mono.png differ Binary files /tmp/tmpKUasRx/vX0LzuVtd3/lsp-plugins-1.1.24/res/doc/img/plugins/crossover_ms.png and /tmp/tmpKUasRx/EZB55f9I00/lsp-plugins-1.1.26/res/doc/img/plugins/crossover_ms.png differ Binary files /tmp/tmpKUasRx/vX0LzuVtd3/lsp-plugins-1.1.24/res/doc/img/plugins/crossover_stereo.png and /tmp/tmpKUasRx/EZB55f9I00/lsp-plugins-1.1.26/res/doc/img/plugins/crossover_stereo.png differ diff -Nru lsp-plugins-1.1.24/res/i18n/default/actions.json lsp-plugins-1.1.26/res/i18n/default/actions.json --- lsp-plugins-1.1.24/res/i18n/default/actions.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/default/actions.json 2020-09-15 20:10:12.646192884 +0000 @@ -64,7 +64,7 @@ "save": "Save", "select_language": "Select language", - + "tap": "Tap", "to_bookmarks": "+Bookmarks", "toggle_rack_mount": "Toggle rack mount" diff -Nru lsp-plugins-1.1.24/res/i18n/default/groups.json lsp-plugins-1.1.26/res/i18n/default/groups.json --- lsp-plugins-1.1.24/res/i18n/default/groups.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/default/groups.json 2020-09-15 20:10:12.646192884 +0000 @@ -2,11 +2,11 @@ "alr": "ALR", "analysis": "Analysis", "audio_channel": "Audio Channel", - "audio_channels": "Audio Channel", + "audio_channels": "Audio Channels", "audio_output": "Audio Output", "bands": "Bands", - + "controls": "Controls", "chan": { @@ -59,10 +59,10 @@ "processor": "Processor", "processors": "Processors", - "results": "Results", - "rendering": "Rendering", + "results": "Results", + "rchan": { "distance": "Distance (right)", "monitoring": "Monitoring (right)", @@ -82,6 +82,6 @@ "test_signal": "Test Signal", "time": "Time", - + "wet_signal_eq": "Wet Signal Equalization" } \ No newline at end of file diff -Nru lsp-plugins-1.1.24/res/i18n/default/labels.json lsp-plugins-1.1.26/res/i18n/default/labels.json --- lsp-plugins-1.1.24/res/i18n/default/labels.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/default/labels.json 2020-09-15 20:10:12.646192884 +0000 @@ -51,6 +51,7 @@ "balance": "Balance", + "band": "Band", "band_hue": "Band, Hue", "bool": { @@ -79,6 +80,7 @@ "M_ute": "M", "OFF": "OFF", "ON": "ON", + "P_hase": "P", "R_ight": "R", "R_ight:": "R:", "S_ide": "S", @@ -110,6 +112,7 @@ "on": "On", "out": "Out", "output": "Output", + "phase": "Phase", "pitch": "Pitch", "pitch_left": "Pitch Left", "pitch_mid": "Pitch Mid", @@ -402,7 +405,7 @@ "save": "Save", "save_": "Save", "save_mode": "Save Mode", - + "sc": { "Ext_ernal": "Ext", "SC": "SC", @@ -470,10 +473,10 @@ "peak": "Peak", "phase": "Phase", "positive_width": "Positive Width", + "raise": "Raise", "reference": "Reference", "relative": "Relative", "rms": "RMS", - "raise": "Raise", "stereo": "Stereo", "width": "Width", "wet": "Wet", diff -Nru lsp-plugins-1.1.24/res/i18n/default/lists.json lsp-plugins-1.1.26/res/i18n/default/lists.json --- lsp-plugins-1.1.24/res/i18n/default/lists.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/default/lists.json 2020-09-15 20:10:12.646192884 +0000 @@ -17,6 +17,22 @@ "upward": "Upward" }, + "crossover": { + "sel": { + "left": "Processor Left", + "mid": "Processor Middle", + "right": "Processor Right", + "side": "Processor Side" + }, + "slope": { + "24dbo": "24 dB/oct", + "48dbo": "48 dB/oct", + "72dbo": "72 dB/oct", + "96dbo": "96 dB/oct", + "off": "Off" + } + }, + "dither": { "none": "None", "bits": { diff -Nru lsp-plugins-1.1.24/res/i18n/ru/actions.json lsp-plugins-1.1.26/res/i18n/ru/actions.json --- lsp-plugins-1.1.24/res/i18n/ru/actions.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/ru/actions.json 2020-09-15 20:10:12.647192876 +0000 @@ -63,7 +63,7 @@ "save": "Сохранить", - "select_language": "Выбрать язык", + "select_language": "Выбрать язык", "tap": "Тук", "to_bookmarks": "В закладки", diff -Nru lsp-plugins-1.1.24/res/i18n/ru/labels.json lsp-plugins-1.1.26/res/i18n/ru/labels.json --- lsp-plugins-1.1.24/res/i18n/ru/labels.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/ru/labels.json 2020-09-15 20:10:12.647192876 +0000 @@ -27,12 +27,12 @@ "yaw": "Поворот", "z_axis": "Ось Z" }, - + "Env_elope": "Огиб", "Over_Sampling": "П/Д", "Over_Sampling:": "П/Д:", "Tri_gger": "Триг", - + "absolute_threshold": "Абс порог", "active": "Активно", @@ -51,6 +51,7 @@ "balance": "Баланс", + "band": "Полоса", "band_hue": "Полоса, Тон", "bool": { @@ -79,6 +80,7 @@ "M_id:": "Ц:", "OFF": "ВЫКЛ", "ON": "ВКЛ", + "P_hase": "Ф", "R_ight": "П", "R_ight:": "П:", "S_ide": "С", @@ -110,6 +112,7 @@ "on": "Вкл", "out": "Вых", "output": "Выход", + "phase": "Фаза", "pitch": "Высота", "pitch_left": "Высота левого", "pitch_mid": "Высота центра", @@ -227,7 +230,7 @@ "trigger": "ГРАФИК ТРИГГЕРА" }, "group": "Группа", - + "hold": "Удерживать", "host_bpm": "УВМ хоста", @@ -237,7 +240,7 @@ "input_level:db": "Входной уровень (дБ)", "input:db": "Вход (дБ)", "instrument_num": "№ инструмента", - + "ir_equalizer": "Эквализация ИО", "knee": "Колено", @@ -417,7 +420,7 @@ "sc_boost": "Усиление БЦ", "sc_boost:": "Усиление БЦ:", - + "sc_preamp_makeup:db_db": "Усиление БЦ,\nКорректировка\n(дБ, дБ)", "sel_time": "Выбр время", @@ -481,7 +484,7 @@ }, "slope": "Крутизна", - + "source": "Источник", "source:": "Источник:", @@ -489,7 +492,7 @@ "idx": "{@id}", "idx:": "{@id}:", "num": "№" - }, + }, "spectrogram": "Спектрограмма", "spread": "Разброс", diff -Nru lsp-plugins-1.1.24/res/i18n/ru/lists.json lsp-plugins-1.1.26/res/i18n/ru/lists.json --- lsp-plugins-1.1.24/res/i18n/ru/lists.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/ru/lists.json 2020-09-15 20:10:12.647192876 +0000 @@ -17,6 +17,22 @@ "upward": "Повышающий" }, + "crossover": { + "sel": { + "left": "Процессор (левый)", + "mid": "Процессор (центр)", + "right": "Процессор (правый)", + "side": "Процессор (сторона)" + }, + "slope": { + "24dbo": "24 dB/oct", + "48dbo": "48 dB/oct", + "72dbo": "72 dB/oct", + "96dbo": "96 dB/oct", + "off": "Off" + } + }, + "dither": { "none": "выкл", "bits": { diff -Nru lsp-plugins-1.1.24/res/i18n/us/groups.json lsp-plugins-1.1.26/res/i18n/us/groups.json --- lsp-plugins-1.1.24/res/i18n/us/groups.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/us/groups.json 2020-09-15 20:10:12.647192876 +0000 @@ -22,7 +22,7 @@ "gain": "Gain", "general": "General", - "impulse_response": "Impulse response", + "impulse_response": "Impulse Response", "instrument_mixer": "Instrument mixer", "latency": "Latency", diff -Nru lsp-plugins-1.1.24/res/i18n/us/labels.json lsp-plugins-1.1.26/res/i18n/us/labels.json --- lsp-plugins-1.1.24/res/i18n/us/labels.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/us/labels.json 2020-09-15 20:10:12.647192876 +0000 @@ -51,6 +51,7 @@ "balance": "Balance", + "band": "Band", "band_hue": "Band, Hue", "bool": { @@ -79,6 +80,7 @@ "M_ute": "M", "OFF": "OFF", "ON": "ON", + "P_hase": "P", "R_ight": "R", "R_ight:": "R:", "S_ide": "S", @@ -110,6 +112,7 @@ "on": "On", "out": "Out", "output": "Output", + "phase": "Phase", "pitch": "Pitch", "pitch_left": "Pitch Left", "pitch_mid": "Pitch Mid", diff -Nru lsp-plugins-1.1.24/res/i18n/us/lists.json lsp-plugins-1.1.26/res/i18n/us/lists.json --- lsp-plugins-1.1.24/res/i18n/us/lists.json 2020-07-16 17:04:08.920453415 +0000 +++ lsp-plugins-1.1.26/res/i18n/us/lists.json 2020-09-15 20:10:12.647192876 +0000 @@ -17,6 +17,22 @@ "upward": "Upward" }, + "crossover": { + "sel": { + "left": "Processor Left", + "mid": "Processor Middle", + "right": "Processor Right", + "side": "Processor Side" + }, + "slope": { + "24dbo": "24 dB/oct", + "48dbo": "48 dB/oct", + "72dbo": "72 dB/oct", + "96dbo": "96 dB/oct", + "off": "Off" + } + }, + "dither": { "none": "None", "bits": { diff -Nru lsp-plugins-1.1.24/res/ui/util/crossover/lr.xml lsp-plugins-1.1.26/res/ui/util/crossover/lr.xml --- lsp-plugins-1.1.24/res/ui/util/crossover/lr.xml 1970-01-01 00:00:00.000000000 +0000 +++ lsp-plugins-1.1.26/res/ui/util/crossover/lr.xml 2020-09-15 20:10:12.629193029 +0000 @@ -0,0 +1,288 @@ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +