diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-02-17 12:26:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-02-17 12:26:28 +0100 |
commit | c6ddb4451138005bbf678ee75d6de690a165faa2 (patch) | |
tree | c831f55fc1bd1f371a270034f2b46bc4ebc94e0d /lib/edi/ETIDecoder.hpp | |
parent | cf26226714f73ce0d2b833bc579dbb00b9297d88 (diff) | |
download | dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.tar.gz dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.tar.bz2 dabmod-c6ddb4451138005bbf678ee75d6de690a165faa2.zip |
Update EDI lib: fix SAD and take latest changes
Diffstat (limited to 'lib/edi/ETIDecoder.hpp')
-rw-r--r-- | lib/edi/ETIDecoder.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/edi/ETIDecoder.hpp b/lib/edi/ETIDecoder.hpp index 9624c48..37a564f 100644 --- a/lib/edi/ETIDecoder.hpp +++ b/lib/edi/ETIDecoder.hpp @@ -49,7 +49,7 @@ struct eti_fc_data { struct eti_stc_data { uint8_t stream_index; uint8_t scid; - uint8_t sad; + uint16_t sad; uint8_t tpl; std::vector<uint8_t> mst; @@ -101,7 +101,7 @@ class DataCollector { */ class ETIDecoder { public: - ETIDecoder(DataCollector& data_collector); + ETIDecoder(DataCollector& data_collector, bool verbose); /* Push bytes into the decoder. The buf can contain more * than a single packet. This is useful when reading from streams |