aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-05-31 15:08:44 -0700
committerMartin Braun <martin.braun@ettus.com>2019-11-26 11:49:08 -0800
commit6f6429c45b87a07b94309c176469063c9bb5658c (patch)
treed989106ca8aecf3ed271cc38c92d089dba1b29b7 /host
parent3df500cb195adadcfeb6fdbdc3df960e42b127ab (diff)
downloaduhd-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.hpp2
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;