summaryrefslogtreecommitdiffstats
path: root/src/input/Udp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/Udp.cpp')
-rw-r--r--src/input/Udp.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/Udp.cpp b/src/input/Udp.cpp
index a7f9013..2cb49e7 100644
--- a/src/input/Udp.cpp
+++ b/src/input/Udp.cpp
@@ -289,13 +289,15 @@ void Sti_d_Rtp::receive_packet()
index += NST*4+4;
const size_t dataSize = STL - 2*CRCSTF;
+
const size_t frameNumber = DFCTH*250 + DFCTL;
+ (void)frameNumber;
// TODO must align framenumber with ETI
+ // TODO reordering
vec_u8 data(dataSize);
copy(buf+index, buf+index+dataSize, data.begin());
- // TODO reordering
m_queue.push_back(data);
}