diff options
Diffstat (limited to 'src/dabOutput')
-rw-r--r-- | src/dabOutput/dabOutput.h | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputFifo.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputFile.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputRaw.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputSimul.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputTcp.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputUdp.cpp | 8 | ||||
-rw-r--r-- | src/dabOutput/dabOutputZMQ.cpp | 8 |
8 files changed, 32 insertions, 32 deletions
diff --git a/src/dabOutput/dabOutput.h b/src/dabOutput/dabOutput.h index bbf27e3..d076041 100644 --- a/src/dabOutput/dabOutput.h +++ b/src/dabOutput/dabOutput.h @@ -8,20 +8,20 @@ An object-oriented version of the output channels. */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __DAB_OUTPUT_H diff --git a/src/dabOutput/dabOutputFifo.cpp b/src/dabOutput/dabOutputFifo.cpp index ea0f538..de9579e 100644 --- a/src/dabOutput/dabOutputFifo.cpp +++ b/src/dabOutput/dabOutputFifo.cpp @@ -8,20 +8,20 @@ Fifo output is very similar to file, except it doesn't seek */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include <cstdio> #include <cstring> diff --git a/src/dabOutput/dabOutputFile.cpp b/src/dabOutput/dabOutputFile.cpp index 79dbeee..f26ddfd 100644 --- a/src/dabOutput/dabOutputFile.cpp +++ b/src/dabOutput/dabOutputFile.cpp @@ -8,20 +8,20 @@ File output */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include <cstdio> #include <cstring> diff --git a/src/dabOutput/dabOutputRaw.cpp b/src/dabOutput/dabOutputRaw.cpp index eb70712..137f079 100644 --- a/src/dabOutput/dabOutputRaw.cpp +++ b/src/dabOutput/dabOutputRaw.cpp @@ -8,20 +8,20 @@ RAW output used for farsync */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include <cstdio> #include <cstring> diff --git a/src/dabOutput/dabOutputSimul.cpp b/src/dabOutput/dabOutputSimul.cpp index 176649b..b40a757 100644 --- a/src/dabOutput/dabOutputSimul.cpp +++ b/src/dabOutput/dabOutputSimul.cpp @@ -8,20 +8,20 @@ SIMUL throttling output. It guarantees correct frame generation rate */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include "dabOutput.h" #include <cstring> diff --git a/src/dabOutput/dabOutputTcp.cpp b/src/dabOutput/dabOutputTcp.cpp index 427018e..5f1943d 100644 --- a/src/dabOutput/dabOutputTcp.cpp +++ b/src/dabOutput/dabOutputTcp.cpp @@ -8,20 +8,20 @@ TCP output */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include <cstring> #include <cstdio> diff --git a/src/dabOutput/dabOutputUdp.cpp b/src/dabOutput/dabOutputUdp.cpp index 607fe71..9664a2d 100644 --- a/src/dabOutput/dabOutputUdp.cpp +++ b/src/dabOutput/dabOutputUdp.cpp @@ -8,20 +8,20 @@ UDP output */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #include <cstring> diff --git a/src/dabOutput/dabOutputZMQ.cpp b/src/dabOutput/dabOutputZMQ.cpp index 24fa6dc..2644edf 100644 --- a/src/dabOutput/dabOutputZMQ.cpp +++ b/src/dabOutput/dabOutputZMQ.cpp @@ -17,20 +17,20 @@ */ /* - This file is part of CRC-DabMux. + This file is part of ODR-DabMux. - CRC-DabMux is free software: you can redistribute it and/or modify + ODR-DabMux is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - CRC-DabMux is distributed in the hope that it will be useful, + ODR-DabMux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. + along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H # include "config.h" |