aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorandimik <andimik@yahoo.de>2021-04-06 21:37:45 +0200
committerGitHub <noreply@github.com>2021-04-06 21:37:45 +0200
commit3e04686157ed9e648b49a26c91dfbe9786225cc3 (patch)
tree0a14596ea25392257507da909e98c5be46ceae26 /src
parentf1e452b6ad9db7d68d3fa0a0d8a1eeca3e978b38 (diff)
downloadetisnoop-3e04686157ed9e648b49a26c91dfbe9786225cc3.tar.gz
etisnoop-3e04686157ed9e648b49a26c91dfbe9786225cc3.tar.bz2
etisnoop-3e04686157ed9e648b49a26c91dfbe9786225cc3.zip
changed extension from .msc to .dab
otherwise XPADxpert detects the .msc as DAB+ without RS code see https://user-images.githubusercontent.com/24510556/111703624-372d5600-883e-11eb-94cf-b78ddf60e4d4.png
Diffstat (limited to 'src')
-rw-r--r--src/dabplussnoop.cpp2
1 files changed, 1 insertions, 1 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");