diff --git a/src/util/samplebuffer.h b/src/util/samplebuffer.h index c58d9b0f768c..b6bd544473cb 100644 --- a/src/util/samplebuffer.h +++ b/src/util/samplebuffer.h @@ -102,6 +102,8 @@ class SampleBuffer final { // Fills the whole buffer with the same value void fill(CSAMPLE value); + /// Deprecated: use std::span, SampleBuffer::span() const and + /// mixxx::spanutil::spanFromPtrLen from util/span.h instead. class ReadableSlice { public: ReadableSlice() @@ -143,6 +145,8 @@ class SampleBuffer final { SINT m_length; }; + /// Deprecated: use std::span, SampleBuffer::span() and + /// mixxx::spanutil::spanFromPtrLen from util/span.h instead. class WritableSlice { public: WritableSlice()