diff options
Diffstat (limited to 'host/lib/include/uhdlib/transport/rx_streamer_impl.hpp')
-rw-r--r-- | host/lib/include/uhdlib/transport/rx_streamer_impl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/transport/rx_streamer_impl.hpp b/host/lib/include/uhdlib/transport/rx_streamer_impl.hpp index c57a8e0d1..0691138e6 100644 --- a/host/lib/include/uhdlib/transport/rx_streamer_impl.hpp +++ b/host/lib/include/uhdlib/transport/rx_streamer_impl.hpp @@ -69,7 +69,7 @@ private: /*! * Implementation of rx streamer API */ -template <typename transport_t> +template <typename transport_t, bool ignore_seq_err = false> class rx_streamer_impl : public rx_streamer { public: @@ -352,7 +352,7 @@ private: std::vector<uhd::convert::converter::sptr> _converters; // Implementation of frame buffer management and packet info - rx_streamer_zero_copy<transport_t> _zero_copy_streamer; + rx_streamer_zero_copy<transport_t, ignore_seq_err> _zero_copy_streamer; // Container for buffer pointers used in recv method std::vector<const void*> _in_buffs; |