diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-06-03 09:51:48 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-06-03 09:52:01 +0200 |
commit | 1d5d7ca96aaafbac9cab5511858173a2712dce87 (patch) | |
tree | 1dce36d601ee14995f0021c8f28ae72ccefe5afc | |
parent | 73bfda18f43bee945c8ca1c0e57f6cc6be89ad5c (diff) | |
download | dabmux-1d5d7ca96aaafbac9cab5511858173a2712dce87.tar.gz dabmux-1d5d7ca96aaafbac9cab5511858173a2712dce87.tar.bz2 dabmux-1d5d7ca96aaafbac9cab5511858173a2712dce87.zip |
Update header message
-rw-r--r-- | src/utils.cpp | 39 |
1 files changed, 12 insertions, 27 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 253b703..ae56ef0 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -3,7 +3,7 @@ 2011, 2012 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2020 + Copyright (C) 2021 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org @@ -95,34 +95,19 @@ void header_message() #endif __DATE__, __TIME__); fprintf(stderr, "\n\n"); - fprintf(stderr, - "Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012\n"); - fprintf(stderr, - "Her Majesty the Queen in Right of Canada\n"); - fprintf(stderr, - "(Communications Research Centre Canada)\n\n"); - fprintf(stderr, - "Copyright (C) 2020 Matthias P. Braendli\n"); - fprintf(stderr, - "LICENCE: GPLv3+\n\n"); - fprintf(stderr, - "http://opendigitalradio.org\n\n"); + fprintf(stderr, "Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012\n"); + fprintf(stderr, "Her Majesty the Queen in Right of Canada\n"); + fprintf(stderr, "(Communications Research Centre Canada)\n\n"); - std::cerr << "Input URLs supported:" << std::endl << - " prbs" << - " udp" << - " file" << - " zmq" << - std::endl; + fprintf(stderr, "Copyright (C) 2021 Matthias P. Braendli\n"); + fprintf(stderr, "LICENCE: GPLv3+\n\n"); - std::cerr << "Inputs format supported:" << std::endl << - " raw" << - " mpeg" << - " packet" << - " epm" << - std::endl; + fprintf(stderr, "http://opendigitalradio.org\n\n"); + + fprintf(stderr, "Input URLs supported: prbs udp file zmq\n"); + fprintf(stderr, "Inputs format supported: raw mpeg packet epm\n"); - std::cerr << "Output URLs supported:" << std::endl << + std::cerr << "Output URLs supported:\n" << #if defined(HAVE_OUTPUT_FILE) " file" << #endif @@ -141,7 +126,7 @@ void header_message() #if defined(HAVE_OUTPUT_SIMUL) " simul" << #endif - std::endl << std::endl; + "\n\n"; } |