diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-05-11 21:03:36 +0200 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-05-11 21:03:36 +0200 |
| commit | 19d907c885081a3218d81705fd45870b10f99d8d (patch) | |
| tree | 2a56f22a1b4d5ba1d2d2619725899d5f49e260e9 /lib/edioutput/TagPacket.h | |
| parent | 3a8a2aa8b682545a2a18bf24975555c7eb07152c (diff) | |
| download | dabmux-19d907c885081a3218d81705fd45870b10f99d8d.tar.gz dabmux-19d907c885081a3218d81705fd45870b10f99d8d.tar.bz2 dabmux-19d907c885081a3218d81705fd45870b10f99d8d.zip | |
Common: update common code with EDI input changes
Diffstat (limited to 'lib/edioutput/TagPacket.h')
| -rw-r--r-- | lib/edioutput/TagPacket.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/edioutput/TagPacket.h b/lib/edioutput/TagPacket.h index 1e40ce7..b53b718 100644 --- a/lib/edioutput/TagPacket.h +++ b/lib/edioutput/TagPacket.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 + Copyright (C) 2020 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org @@ -39,6 +39,9 @@ namespace edi { // Assemble function that puts the bytestream together and adds // padding such that the total length is a multiple of 8 Bytes. // +// Alternatively, a raw tagpacket can be used instead of the +// items list +// // ETSI TS 102 821, 5.1 Tag Packet class TagPacket { @@ -48,6 +51,8 @@ class TagPacket std::list<TagItem*> tag_items; + std::vector<uint8_t> raw_tagpacket; + private: unsigned int m_alignment; }; |
