wavex v0.10.0 Wavex.Error.RIFFSizeMismatch

A RIFF size that does not correspond to the file size. RIFF size must be equal to file size - 8.

iex> to_string(%Wavex.Error.RIFFSizeMismatch{expected: 202, actual: 200})
"expected RIFF size 202, got: 200"

Link to this section Summary

Link to this section Types

Link to this type t()
t() :: %Wavex.Error.RIFFSizeMismatch{
  actual: non_neg_integer(),
  expected: non_neg_integer()
}