aboutsummaryrefslogtreecommitdiffstats
path: root/lib/edi/ETIDecoder.hpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-07-01 13:32:22 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-07-01 13:32:22 +0200
commit91181df0cfb2a5e33d16c8458a84978c14a005ba (patch)
treedad9f67a9399538bd73f2878a376dab4df4b6d43 /lib/edi/ETIDecoder.hpp
parent6992225da8c43fc16f5de1a02d218f80e9e60bf1 (diff)
downloaddabmod-91181df0cfb2a5e33d16c8458a84978c14a005ba.tar.gz
dabmod-91181df0cfb2a5e33d16c8458a84978c14a005ba.tar.bz2
dabmod-91181df0cfb2a5e33d16c8458a84978c14a005ba.zip
Common 649e0cb: Replace edi tagpacket callback by AF packet callback
Diffstat (limited to 'lib/edi/ETIDecoder.hpp')
-rw-r--r--lib/edi/ETIDecoder.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/edi/ETIDecoder.hpp b/lib/edi/ETIDecoder.hpp
index 3949a14..1ad6c64 100644
--- a/lib/edi/ETIDecoder.hpp
+++ b/lib/edi/ETIDecoder.hpp
@@ -58,7 +58,7 @@ struct eti_stc_data {
};
struct ReceivedTagPacket {
- std::vector<uint8_t> tagpacket;
+ std::vector<uint8_t> afpacket;
frame_timestamp_t timestamp;
seq_info_t seq;
};
@@ -133,7 +133,7 @@ class ETIDecoder {
bool decode_estn(const std::vector<uint8_t>& value, const tag_name_t& n);
bool decode_stardmy(const std::vector<uint8_t>& value, const tag_name_t& n);
- bool decode_tagpacket(const std::vector<uint8_t>& value);
+ bool decode_afpacket(std::vector<uint8_t>&& value);
void packet_completed();