wavex v0.4.6 Wavex.Error.ByteRateMismatch
A mismatched byte rate value.
iex> to_string(%Wavex.Error.ByteRateMismatch{expected: 44_100, actual: 88_200})
"expected byte rate 44100, got: 88200"
Link to this section Summary
Link to this section Types
Link to this type
t()
t() :: %Wavex.Error.ByteRateMismatch{
actual: non_neg_integer(),
expected: non_neg_integer()
}