summaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-04-17 13:39:09 -0700
committerJosh Blum <josh@joshknows.com>2012-04-17 13:39:09 -0700
commita345c19cc2d4e9556b46b48d75b8ccc35b95ba45 (patch)
treeb1334b000e1aa92684f34d74b9d6bd3514230c98 /host
parentb221b3e34d4c0eaaeb3ab66778e5b82dfd0f5230 (diff)
downloaduhd-a345c19cc2d4e9556b46b48d75b8ccc35b95ba45.tar.gz
uhd-a345c19cc2d4e9556b46b48d75b8ccc35b95ba45.tar.bz2
uhd-a345c19cc2d4e9556b46b48d75b8ccc35b95ba45.zip
recv: only inspect tsf on timestamp error check
Diffstat (limited to 'host')
-rw-r--r--host/lib/transport/super_recv_packet_handler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/transport/super_recv_packet_handler.hpp b/host/lib/transport/super_recv_packet_handler.hpp
index 74fbe82fb..205c7a3a3 100644
--- a/host/lib/transport/super_recv_packet_handler.hpp
+++ b/host/lib/transport/super_recv_packet_handler.hpp
@@ -306,7 +306,7 @@ private:
#endif
//3) check for out of order timestamps
- if (info.ifpi.has_tsi and info.ifpi.has_tsf and prev_buffer_info[index].time > info.time){
+ if (info.ifpi.has_tsf and prev_buffer_info[index].time > info.time){
return PACKET_TIMESTAMP_ERROR;
}