summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/usrp_sink_impl.h
diff options
context:
space:
mode:
authorBen Reynwar <ben@reynwar.net>2013-05-19 02:55:33 -0700
committerBen Reynwar <ben@reynwar.net>2013-05-19 02:55:33 -0700
commitbb01988e75d50d82cbb44c1a49c86c1d08f05665 (patch)
tree0528dac14476d37f2cde7374a8fcb3428f879c69 /gr-uhd/lib/usrp_sink_impl.h
parente4f0319eced22c112f7e6a4cc45bc2036d285332 (diff)
parent0fa219774dcf9141ae91204f948c029b05673f3f (diff)
Merged in next_docs branch.
Diffstat (limited to 'gr-uhd/lib/usrp_sink_impl.h')
-rw-r--r--gr-uhd/lib/usrp_sink_impl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-uhd/lib/usrp_sink_impl.h b/gr-uhd/lib/usrp_sink_impl.h
index b75dc1dc6d..c714eb53eb 100644
--- a/gr-uhd/lib/usrp_sink_impl.h
+++ b/gr-uhd/lib/usrp_sink_impl.h
@@ -20,7 +20,7 @@
* Boston, MA 02110-1301, USA.
*/
-#include <uhd/usrp_sink.h>
+#include <gnuradio/uhd/usrp_sink.h>
#include <uhd/convert.hpp>
static const pmt::pmt_t SOB_KEY = pmt::string_to_symbol("tx_sob");
@@ -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);
}
/***********************************************************************
@@ -134,7 +134,7 @@ namespace gr {
bool _start_time_set;
//stream tags related stuff
- std::vector<gr_tag_t> _tags;
+ std::vector<tag_t> _tags;
};
} /* namespace uhd */