diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-17 13:49:03 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-11-17 13:49:03 +0100 |
commit | c619de03546ac1d5b562350891302e7e010407a8 (patch) | |
tree | 54c7f2040d99d6d4ee889f7fbc7eb81f351bfbef /etisnoop.cpp | |
parent | 90e2e9e59dd38d075c6f95629f1087e24954a327 (diff) | |
download | etisnoop-c619de03546ac1d5b562350891302e7e010407a8.tar.gz etisnoop-c619de03546ac1d5b562350891302e7e010407a8.tar.bz2 etisnoop-c619de03546ac1d5b562350891302e7e010407a8.zip |
ETISnoop correctly decode audio and write aac and wav files
Diffstat (limited to 'etisnoop.cpp')
-rw-r--r-- | etisnoop.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/etisnoop.cpp b/etisnoop.cpp index 5e3188c..321e086 100644 --- a/etisnoop.cpp +++ b/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; } |