aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2013-07-19 14:03:30 -0700
committerJosh Blum <josh@joshknows.com>2013-07-19 14:03:30 -0700
commit7eaabcb3f8faf2587b17cf57f962ec62d30e2fcf (patch)
tree4e603c2bfe83780ee02d2924327ff24b57879de3 /host/lib
parentbb73a21495e15b6221472cb1838b609a91f9c59c (diff)
downloaduhd-7eaabcb3f8faf2587b17cf57f962ec62d30e2fcf.tar.gz
uhd-7eaabcb3f8faf2587b17cf57f962ec62d30e2fcf.tar.bz2
uhd-7eaabcb3f8faf2587b17cf57f962ec62d30e2fcf.zip
b100: call demuxer realloc sid
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/b100/io_impl.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/usrp/b100/io_impl.cpp b/host/lib/usrp/b100/io_impl.cpp
index c4a4e422e..86edb4ed6 100644
--- a/host/lib/usrp/b100/io_impl.cpp
+++ b/host/lib/usrp/b100/io_impl.cpp
@@ -158,6 +158,7 @@ rx_streamer::sptr b100_impl::get_rx_stream(const uhd::stream_args_t &args_){
const size_t dsp = args.channels[chan_i];
_rx_dsps[dsp]->set_nsamps_per_packet(spp); //seems to be a good place to set this
_rx_dsps[dsp]->setup(args);
+ _recv_demuxer->realloc_sid(B100_RX_SID_BASE + dsp);
my_streamer->set_xport_chan_get_buff(chan_i, boost::bind(
&recv_packet_demuxer_3000::get_recv_buff, _recv_demuxer, B100_RX_SID_BASE + dsp, _1
), true /*flush*/);