summaryrefslogtreecommitdiffstats
path: root/src/dabOutput
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-02-07 07:58:16 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-02-07 08:18:28 +0100
commit400df39cb1c7565b5fc8f3dbfef0c054b4bb65f4 (patch)
treed9a6745f774c5cf05e8417be3f19e890158c0040 /src/dabOutput
parentec94a07844bbfe16138d30a788ec04bd6e588328 (diff)
downloaddabmux-400df39cb1c7565b5fc8f3dbfef0c054b4bb65f4.tar.gz
dabmux-400df39cb1c7565b5fc8f3dbfef0c054b4bb65f4.tar.bz2
dabmux-400df39cb1c7565b5fc8f3dbfef0c054b4bb65f4.zip
rename CRC-DabMux to ODR-DabMux
Diffstat (limited to 'src/dabOutput')
-rw-r--r--src/dabOutput/dabOutput.h8
-rw-r--r--src/dabOutput/dabOutputFifo.cpp8
-rw-r--r--src/dabOutput/dabOutputFile.cpp8
-rw-r--r--src/dabOutput/dabOutputRaw.cpp8
-rw-r--r--src/dabOutput/dabOutputSimul.cpp8
-rw-r--r--src/dabOutput/dabOutputTcp.cpp8
-rw-r--r--src/dabOutput/dabOutputUdp.cpp8
-rw-r--r--src/dabOutput/dabOutputZMQ.cpp8
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"