diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-31 15:08:44 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 11:49:08 -0800 |
commit | 6f6429c45b87a07b94309c176469063c9bb5658c (patch) | |
tree | d989106ca8aecf3ed271cc38c92d089dba1b29b7 /host | |
parent | 3df500cb195adadcfeb6fdbdc3df960e42b127ab (diff) | |
download | uhd-6f6429c45b87a07b94309c176469063c9bb5658c.tar.gz uhd-6f6429c45b87a07b94309c176469063c9bb5658c.tar.bz2 uhd-6f6429c45b87a07b94309c176469063c9bb5658c.zip |
uhd: types: Extend stream_cmd_t::num_samps to 64 bits
Newer devices may be able to provide more then 32 bits worth of samples.
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/types/stream_cmd.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/stream_cmd.hpp b/host/include/uhd/types/stream_cmd.hpp index 9cd1e581f..747fa6a3c 100644 --- a/host/include/uhd/types/stream_cmd.hpp +++ b/host/include/uhd/types/stream_cmd.hpp @@ -41,7 +41,7 @@ struct UHD_API stream_cmd_t STREAM_MODE_NUM_SAMPS_AND_DONE = int('d'), STREAM_MODE_NUM_SAMPS_AND_MORE = int('m') } stream_mode; - size_t num_samps; + uint64_t num_samps; bool stream_now; time_spec_t time_spec; |