CompandPoint class final

One break-point of the lavfi compand filter's transfer function.

The transfer function is a piecewise linear mapping of input dB to output dB; consecutive CompandPoints define the segments. compand interpolates between them — outside the range of the declared points the output is clipped to the nearest break.

Constructors

CompandPoint({required double inDb, required double outDb})
Creates a CompandPoint.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
inDb double
Input level in dB.
final
outDb double
Output level in dB.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({double? inDb, double? outDb}) CompandPoint
Returns a copy of this point with the given fields replaced.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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