diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-19 14:48:39 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-19 14:48:39 +0200 |
commit | 5ad4acef6721a67b8156cd6f7b45ad59849ca09b (patch) | |
tree | adeedaa825f2ef2aa4f9b30265d007b6e7abe8ef /contrib/edioutput/AFPacket.h | |
parent | c92c05d1199a2380d8c8c79a89c7e1f3159a2603 (diff) | |
download | ODR-AudioEnc-5ad4acef6721a67b8156cd6f7b45ad59849ca09b.tar.gz ODR-AudioEnc-5ad4acef6721a67b8156cd6f7b45ad59849ca09b.tar.bz2 ODR-AudioEnc-5ad4acef6721a67b8156cd6f7b45ad59849ca09b.zip |
Common 44ae39c: Make SEQ and PSEQ available on EDI receive and improve error handling
Diffstat (limited to 'contrib/edioutput/AFPacket.h')
-rw-r--r-- | contrib/edioutput/AFPacket.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/edioutput/AFPacket.h b/contrib/edioutput/AFPacket.h index f2c4e35..6e6ec47 100644 --- a/contrib/edioutput/AFPacket.h +++ b/contrib/edioutput/AFPacket.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 + Copyright (C) 2021 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org @@ -28,7 +28,6 @@ #pragma once -#include "config.h" #include <vector> #include <cstdint> #include "TagItems.h" @@ -49,10 +48,12 @@ class AFPacketiser AFPacket Assemble(TagPacket tag_packet); + void OverrideSeq(uint16_t seq); + private: - static const bool have_crc = true; + static const bool m_have_crc = true; - uint16_t seq = 0; //counter that overflows at 0xFFFF + uint16_t m_seq = 0; //counter that overflows at 0xFFFF bool m_verbose; }; |