summaryrefslogtreecommitdiffstats
path: root/host/lib/transport
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/transport')
-rw-r--r--host/lib/transport/super_recv_packet_handler.hpp2
-rw-r--r--host/lib/transport/super_send_packet_handler.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/transport/super_recv_packet_handler.hpp b/host/lib/transport/super_recv_packet_handler.hpp
index de7b4b34c..83c8988e8 100644
--- a/host/lib/transport/super_recv_packet_handler.hpp
+++ b/host/lib/transport/super_recv_packet_handler.hpp
@@ -123,7 +123,7 @@ public:
//! Set the conversion routine for all channels
void set_converter(const uhd::convert::id_type &id){
- _io_buffs.resize(id.num_inputs);
+ _io_buffs.resize(id.num_outputs);
_converter = uhd::convert::get_converter(id);
_bytes_per_otw_item = uhd::convert::get_bytes_per_item(id.input_markup);
_bytes_per_cpu_item = uhd::convert::get_bytes_per_item(id.output_markup);
diff --git a/host/lib/transport/super_send_packet_handler.hpp b/host/lib/transport/super_send_packet_handler.hpp
index 42bac5e21..1ac178ad2 100644
--- a/host/lib/transport/super_send_packet_handler.hpp
+++ b/host/lib/transport/super_send_packet_handler.hpp
@@ -99,7 +99,7 @@ public:
//! Set the conversion routine for all channels
void set_converter(const uhd::convert::id_type &id){
- _io_buffs.resize(id.num_outputs);
+ _io_buffs.resize(id.num_inputs);
_converter = uhd::convert::get_converter(id);
_bytes_per_otw_item = uhd::convert::get_bytes_per_item(id.output_markup);
_bytes_per_cpu_item = uhd::convert::get_bytes_per_item(id.input_markup);