AudioRenderer class abstract

Defines a common interface for audio rendering.
Implementers
Available extensions

Constructors

AudioRenderer.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
render(List<double> left, List<double> right) → void
Renders the waveform.
renderInterleaved(List<double> destination, {int offset = 0, int? length}) → void

Available on AudioRenderer, provided by the AudioRenderEx extension

Renders the waveform as a stereo interleaved signal.
renderInterleavedInt16(ArrayInt16 destination, {int offset = 0, int? length}) → void

Available on AudioRenderer, provided by the AudioRenderEx extension

Renders the waveform as a stereo interleaved signal with 16-bit quantization.
renderMono(List<double> destination, {int offset = 0}) → void

Available on AudioRenderer, provided by the AudioRenderEx extension

Renders the waveform as a monaural signal.
renderMonoInt16(ArrayInt16 destination, {int offset = 0, int? length}) → void

Available on AudioRenderer, provided by the AudioRenderEx extension

Renders the waveform as a monaural signal with 16-bit quantization.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited