diff options
author | Aaron Rossetto <aaron.rossetto@ni.com> | 2019-09-27 14:56:25 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:32 -0800 |
commit | 2f97f8bd0167d4179427efa8a955046fbf417e91 (patch) | |
tree | 255c660b8bdff86047937a75a0f3b3798b1da73b /host/lib/types | |
parent | 41f142050fb39ad533f82256b574b5c08c160bc1 (diff) | |
download | uhd-2f97f8bd0167d4179427efa8a955046fbf417e91.tar.gz uhd-2f97f8bd0167d4179427efa8a955046fbf417e91.tar.bz2 uhd-2f97f8bd0167d4179427efa8a955046fbf417e91.zip |
transport: Implement eov indications for Rx and Tx streams
Diffstat (limited to 'host/lib/types')
-rw-r--r-- | host/lib/types/types.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/types/types.cpp b/host/lib/types/types.cpp index aa87f30a5..7e947a4f8 100644 --- a/host/lib/types/types.cpp +++ b/host/lib/types/types.cpp @@ -24,11 +24,11 @@ stream_cmd_t::stream_cmd_t(const stream_mode_t &stream_mode): /*********************************************************************** * metadata **********************************************************************/ -tx_metadata_t::tx_metadata_t(void): - has_time_spec(false), - time_spec(time_spec_t()), - start_of_burst(false), - end_of_burst(false) +tx_metadata_t::tx_metadata_t(void) + : has_time_spec(false) + , time_spec(time_spec_t()) + , start_of_burst(false) + , end_of_burst(false) { /* NOP */ } |