diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-06-19 21:19:12 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-06-19 21:19:12 +0200 |
commit | 4c57b684f2e0df27225b57effad2129e85770a32 (patch) | |
tree | e6c328ea7a2b4ead70e1b5197d942633aa04cced | |
parent | d9dd22788b8b55e6500e73a3cdc172041dde21b5 (diff) | |
download | dabmux-4c57b684f2e0df27225b57effad2129e85770a32.tar.gz dabmux-4c57b684f2e0df27225b57effad2129e85770a32.tar.bz2 dabmux-4c57b684f2e0df27225b57effad2129e85770a32.zip |
Improve list of outputs supported
-rw-r--r-- | src/utils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 1e006f7..e7ef224 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -99,7 +99,7 @@ void header_message() fprintf(stderr, "Her Majesty the Queen in Right of Canada\n"); fprintf(stderr, "(Communications Research Centre Canada)\n\n"); - fprintf(stderr, "Copyright (C) 2021 Matthias P. Braendli\n"); + fprintf(stderr, "Copyright (C) 2024 Matthias P. Braendli\n"); fprintf(stderr, "LICENCE: GPLv3+\n\n"); fprintf(stderr, "http://opendigitalradio.org\n\n"); @@ -107,7 +107,7 @@ void header_message() 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:\n" << + std::cerr << "Outputs supported: " << #if defined(HAVE_OUTPUT_FILE) " file" << #endif @@ -126,7 +126,7 @@ void header_message() #if defined(HAVE_OUTPUT_SIMUL) " simul" << #endif - "\n\n"; + " edi zmq\n\n"; } |