diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-05-17 17:44:17 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-05-20 21:39:37 +0200 |
commit | 598bee55402280ff4ca6dedcbd212017a57e482e (patch) | |
tree | 1bd306bcf4d790f2e17efc332570b2fa0344775a /src/dabOutput/edi | |
parent | 01b2940c65549cab78fb39bfdb30d2825210b287 (diff) | |
download | dabmux-598bee55402280ff4ca6dedcbd212017a57e482e.tar.gz dabmux-598bee55402280ff4ca6dedcbd212017a57e482e.tar.bz2 dabmux-598bee55402280ff4ca6dedcbd212017a57e482e.zip |
rename AFPacket to AFPacketiser
Diffstat (limited to 'src/dabOutput/edi')
-rw-r--r-- | src/dabOutput/edi/AFPacket.cpp | 2 | ||||
-rw-r--r-- | src/dabOutput/edi/AFPacket.h | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/dabOutput/edi/AFPacket.cpp b/src/dabOutput/edi/AFPacket.cpp index 782ae78..0c4b8c3 100644 --- a/src/dabOutput/edi/AFPacket.cpp +++ b/src/dabOutput/edi/AFPacket.cpp @@ -39,7 +39,7 @@ // AF Packet Major (3 bits) and Minor (4 bits) version #define AFHEADER_VERSION 0x8 // MAJ=1, MIN=0 -std::vector<uint8_t> AFPacket::Assemble(TagPacket tag_packet) +AFPacket AFPacketiser::Assemble(TagPacket tag_packet) { std::vector<uint8_t> payload = tag_packet.Assemble(); diff --git a/src/dabOutput/edi/AFPacket.h b/src/dabOutput/edi/AFPacket.h index 0826a35..1451085 100644 --- a/src/dabOutput/edi/AFPacket.h +++ b/src/dabOutput/edi/AFPacket.h @@ -35,13 +35,15 @@ #define EDI_AFPACKET_PROTOCOLTYPE_TAGITEMS ('T') +typedef std::vector<uint8_t> AFPacket; + // ETSI TS 102 821, 6.1 AF packet structure -class AFPacket +class AFPacketiser { public: - AFPacket(char protocolType) : protocol_type(protocolType) {}; + AFPacketiser(char protocolType) : protocol_type(protocolType) {}; - std::vector<uint8_t> Assemble(TagPacket tag_packet); + AFPacket Assemble(TagPacket tag_packet); private: static const bool have_crc = true; |