aboutsummaryrefslogtreecommitdiffstats
path: root/etisnoop/etisnoop.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-11-17 13:49:03 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-11-17 13:49:03 +0100
commit1653da0d76e06bdf47eda212fa0b35a620f5a982 (patch)
tree99327dd551e13b7e9ced49615d68bffda9f385be /etisnoop/etisnoop.cpp
parentfbca1380e3391aa42ae454b1edc5ef18709f3955 (diff)
downloadmmbtools-aux-1653da0d76e06bdf47eda212fa0b35a620f5a982.tar.gz
mmbtools-aux-1653da0d76e06bdf47eda212fa0b35a620f5a982.tar.bz2
mmbtools-aux-1653da0d76e06bdf47eda212fa0b35a620f5a982.zip
ETISnoop correctly decode audio and write aac and wav files
Diffstat (limited to 'etisnoop/etisnoop.cpp')
-rw-r--r--etisnoop/etisnoop.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/etisnoop/etisnoop.cpp b/etisnoop/etisnoop.cpp
index 5e3188c..321e086 100644
--- a/etisnoop/etisnoop.cpp
+++ b/etisnoop/etisnoop.cpp
@@ -482,6 +482,15 @@ int eti_analyse(eti_analyse_config_t& config)
printf("-------------------------------------------------------------------------------------------------------------\n");
}
}
+
+
+ std::map<int, DabPlusSnoop>::iterator it;
+ for (it = config.streams_to_decode.begin();
+ it != config.streams_to_decode.end();
+ ++it) {
+ it->second.close();
+ }
+
return 0;
}