diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dabplussnoop.cpp | 2 | ||||
-rw-r--r-- | src/etisnoop.cpp | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/dabplussnoop.cpp b/src/dabplussnoop.cpp index 2f28982..b064d11 100644 --- a/src/dabplussnoop.cpp +++ b/src/dabplussnoop.cpp @@ -338,7 +338,7 @@ void StreamSnoop::push(uint8_t* streamdata, size_t streamsize) // First dump to subchannel file (superframe+parity word) if (m_dump_to_file and m_raw_data_stream_fd == nullptr) { stringstream dump_filename; - dump_filename << "stream-" << m_index << ".msc"; + dump_filename << "stream-" << m_index << ".dab"; m_raw_data_stream_fd = fopen(dump_filename.str().c_str(), "w"); diff --git a/src/etisnoop.cpp b/src/etisnoop.cpp index 45f4f9e..d727146 100644 --- a/src/etisnoop.cpp +++ b/src/etisnoop.cpp @@ -94,7 +94,9 @@ void usage(void) " -i the file contains RAW ETI\n" " -I the file contains FIC\n" " -v increase verbosity (can be given more than once)\n" - " -d N decode subchannel N into .msc file and if DAB+, decode to .wav file\n" + " -d N decode subchannel N into stream-N.dab file\n" + " if DAB+: decode audio to stream-N.wav file and extract PAD to stream-N.dab\n" + " (superframes with RS coding)\n" " -s <filename.yaml>\n" " statistics mode: decode all subchannels and measure audio level, write statistics to file\n" " -n N stop analysing after N ETI frames\n" |