yl_mel_ctx_create function

  1. @Native<Pointer<Void> Function(Int, Int, Int, Float, Float, UnsignedInt, UnsignedInt)>(ffi.Int, ffi.Int, ffi.Int, ffi.Float, ffi.Float, ffi.UnsignedInt, ffi.UnsignedInt)>()
Pointer<Void> yl_mel_ctx_create(
  1. int sr,
  2. int n_fft,
  3. int n_mels,
  4. double fmin,
  5. double fmax,
  6. int scale,
  7. int norm,
)

Implementation

@ffi.Native<
  ffi.Pointer<ffi.Void> Function(
    ffi.Int,
    ffi.Int,
    ffi.Int,
    ffi.Float,
    ffi.Float,
    ffi.UnsignedInt,
    ffi.UnsignedInt,
  )
>()
external ffi.Pointer<ffi.Void> yl_mel_ctx_create(
  int sr,
  int n_fft,
  int n_mels,
  double fmin,
  double fmax,
  int scale,
  int norm,
);