aboutsummaryrefslogtreecommitdiffstats
path: root/src/AVTInput.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-15 16:14:11 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-15 16:14:11 +0100
commit85e65ee17160ade86b2179d27b387b27f7e4396f (patch)
tree874cc798474247296003ed8855b3f6245bca15c4 /src/AVTInput.h
parent86bc3fc5e0ed8cdf8db9bfa7f5488162022f0a85 (diff)
downloadODR-SourceCompanion-85e65ee17160ade86b2179d27b387b27f7e4396f.tar.gz
ODR-SourceCompanion-85e65ee17160ade86b2179d27b387b27f7e4396f.tar.bz2
ODR-SourceCompanion-85e65ee17160ade86b2179d27b387b27f7e4396f.zip
Fix PAD UDP send bug
Diffstat (limited to 'src/AVTInput.h')
-rw-r--r--src/AVTInput.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AVTInput.h b/src/AVTInput.h
index 0f58418..2921160 100644
--- a/src/AVTInput.h
+++ b/src/AVTInput.h
@@ -105,7 +105,7 @@ class AVTInput
Socket::UDPSocket _output_socket;
Socket::UDPPacket _output_packet;
Socket::UDPSocket _input_pad_socket;
- Socket::UDPPacket _input_pad_packet;
+ Socket::UDPPacket _pad_packet;
OrderedQueue _ordered;
std::queue<std::vector<uint8_t> > _padFrameQueue;
@@ -128,7 +128,7 @@ class AVTInput
void _sendCtrlMessage();
void _sendPADFrame();
- void _interpretMessage(const uint8_t* data, size_t size);
+ void _interpretMessage(const uint8_t *data, size_t size);
bool _checkMessage();
void _purgeMessages();