ISampleBufferGeneric
Description
- Derived from
- Extended by
-
SampleBuffer abstract
Base interface for ISampleBuffer implementations, defining operations that depend on the sample type.
Public / Methods
Public / Attributes
Samples
The samples of this buffer.
The buffer stores ISampleBuffer.TupleSize values per sample in row-major order.
The returned array can be indexed as follows:
Samples[Offset + y * Stride + x * TupleSize + 0] := 1st value of sample at (x,y). Samples[Offset + y * Stride + x * TupleSize + 1] := 2nd value of sample at (x,y). ... Samples[Offset + y * Stride + x * TupleSize + TupleSize - 1] := last value of sample.
where x and y are the coordinates of the sample to access.