summaryrefslogtreecommitdiff
path: root/gr-uhd/lib
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2012-01-26 14:06:37 -0800
committerJohnathan Corgan <jcorgan@corganenterprises.com>2012-01-26 14:06:37 -0800
commitb207aa2d76a8171681b0ff0a3b5342e8f0703ba9 (patch)
tree483cd40a119bdf26fd2ba5b27332d592966b49fc /gr-uhd/lib
parent2d80e59c2b26de65e5266b8c6fb4be118a7428a0 (diff)
uhd: add utility function to convert raw gr_message to async_metadata_t
Diffstat (limited to 'gr-uhd/lib')
-rw-r--r--gr-uhd/lib/gr_uhd_amsg_source.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/gr-uhd/lib/gr_uhd_amsg_source.cc b/gr-uhd/lib/gr_uhd_amsg_source.cc
index f2958f1153..08941584bd 100644
--- a/gr-uhd/lib/gr_uhd_amsg_source.cc
+++ b/gr-uhd/lib/gr_uhd_amsg_source.cc
@@ -75,6 +75,11 @@ protected:
bool _running;
};
+uhd::async_metadata_t uhd_amsg_source::msg_to_async_metadata_t(const gr_message_sptr msg)
+{
+ return *(uhd::async_metadata_t *)msg->msg();
+}
+
/***********************************************************************
* Make UHD Asynchronous Message Source
**********************************************************************/