summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/usrp_sink_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-uhd/lib/usrp_sink_impl.h')
-rw-r--r--gr-uhd/lib/usrp_sink_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-uhd/lib/usrp_sink_impl.h b/gr-uhd/lib/usrp_sink_impl.h
index d2058fb4a8..d573b3e881 100644
--- a/gr-uhd/lib/usrp_sink_impl.h
+++ b/gr-uhd/lib/usrp_sink_impl.h
@@ -30,7 +30,7 @@ static const pmt::pmt_t TIME_KEY = pmt::string_to_symbol("tx_time");
namespace gr {
namespace uhd {
- inline gr_io_signature_sptr
+ inline io_signature::sptr
args_to_io_sig(const ::uhd::stream_args_t &args)
{
const size_t nchan = std::max<size_t>(args.channels.size(), 1);
@@ -43,7 +43,7 @@ namespace gr {
if(args.cpu_format == "sc16")
size = 4;
#endif
- return gr_make_io_signature(nchan, nchan, size);
+ return io_signature::make(nchan, nchan, size);
}
/***********************************************************************
@@ -132,7 +132,7 @@ namespace gr {
bool _start_time_set;
//stream tags related stuff
- std::vector<gr_tag_t> _tags;
+ std::vector<tag_t> _tags;
};
} /* namespace uhd */