diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-11 10:29:33 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-03 20:37:12 -0700 |
commit | fce49fd66f577b92482af6ad516944befa31b861 (patch) | |
tree | 2c58e9f23facd1b43945981f759ed1b15a5e084d /host/lib/transport/super_send_packet_handler.hpp | |
parent | 0946176f513dd58407869e3b019207ff3eef24f5 (diff) | |
download | uhd-fce49fd66f577b92482af6ad516944befa31b861.tar.gz uhd-fce49fd66f577b92482af6ad516944befa31b861.tar.bz2 uhd-fce49fd66f577b92482af6ad516944befa31b861.zip |
uhd: added one packet mode to rx streamer
Diffstat (limited to 'host/lib/transport/super_send_packet_handler.hpp')
-rw-r--r-- | host/lib/transport/super_send_packet_handler.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/transport/super_send_packet_handler.hpp b/host/lib/transport/super_send_packet_handler.hpp index 1ac178ad2..5b5ee2981 100644 --- a/host/lib/transport/super_send_packet_handler.hpp +++ b/host/lib/transport/super_send_packet_handler.hpp @@ -128,7 +128,7 @@ public: const uhd::tx_streamer::buffs_type &buffs, const size_t nsamps_per_buff, const uhd::tx_metadata_t &metadata, - double timeout + const double timeout ){ //translate the metadata to vrt if packet info vrt::if_packet_info_t if_packet_info; @@ -215,7 +215,7 @@ private: const uhd::tx_streamer::buffs_type &buffs, const size_t nsamps_per_buff, vrt::if_packet_info_t &if_packet_info, - double timeout, + const double timeout, const size_t buffer_offset_bytes = 0 ){ //load the rest of the if_packet_info in here @@ -269,7 +269,7 @@ public: const tx_streamer::buffs_type &buffs, const size_t nsamps_per_buff, const uhd::tx_metadata_t &metadata, - double timeout + const double timeout ){ return send_packet_handler::send(buffs, nsamps_per_buff, metadata, timeout); } |