summaryrefslogtreecommitdiffstats
path: root/host/lib/transport
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-12 11:14:38 -0700
committerJosh Blum <josh@joshknows.com>2010-07-12 11:14:38 -0700
commit8a81fe1a4cd39439d76d17ef65ba1cc696c3ca6d (patch)
treeb32bc7d5b1e4ebbbb74acaf044e603d5b32e6e3d /host/lib/transport
parent5e7af879c890c1168ba957ca9158428eeb387c94 (diff)
downloaduhd-8a81fe1a4cd39439d76d17ef65ba1cc696c3ca6d.tar.gz
uhd-8a81fe1a4cd39439d76d17ef65ba1cc696c3ca6d.tar.bz2
uhd-8a81fe1a4cd39439d76d17ef65ba1cc696c3ca6d.zip
uhd: setup metadata for fragment case (not in general case)
usrp2: print rev number in mboard name
Diffstat (limited to 'host/lib/transport')
-rw-r--r--host/lib/transport/vrt_packet_handler.hpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/host/lib/transport/vrt_packet_handler.hpp b/host/lib/transport/vrt_packet_handler.hpp
index c5c63b089..6623957ac 100644
--- a/host/lib/transport/vrt_packet_handler.hpp
+++ b/host/lib/transport/vrt_packet_handler.hpp
@@ -146,9 +146,6 @@ namespace vrt_packet_handler{
const handle_overrun_t &handle_overrun,
size_t vrt_header_offset_words32
){
- metadata.has_time_spec = false; //false unless set in the helper
- metadata.error_code = uhd::rx_metadata_t::ERROR_CODE_NONE;
-
//perform a receive if no rx data is waiting to be copied
if (state.size_of_copy_buffs == 0){
state.fragment_offset_in_samps = 0;
@@ -169,11 +166,18 @@ namespace vrt_packet_handler{
return 0;
}
}
+ //defaults for the metadata when this is a fragment
+ else{
+ metadata.has_time_spec = false;
+ metadata.start_of_burst = false;
+ metadata.end_of_burst = false;
+ metadata.error_code = uhd::rx_metadata_t::ERROR_CODE_NONE;
+ }
//extract the number of samples available to copy
size_t bytes_per_item = otw_type.get_sample_size();
- size_t bytes_available = state.size_of_copy_buffs;
- size_t nsamps_to_copy = std::min(total_samps, bytes_available/bytes_per_item);
+ size_t nsamps_available = state.size_of_copy_buffs/bytes_per_item;
+ size_t nsamps_to_copy = std::min(total_samps, nsamps_available);
size_t bytes_to_copy = nsamps_to_copy*bytes_per_item;
for (size_t i = 0; i < state.width; i++){