yl_fft_spec function

  1. @Native<Void Function(Pointer<Float>, Int, Pointer<Float>, UnsignedInt, Float)>(ffi.Pointer<ffi.Float>, ffi.Int, ffi.Pointer<ffi.Float>, ffi.UnsignedInt, ffi.Float)>()
void yl_fft_spec(
  1. Pointer<Float> input,
  2. int length,
  3. Pointer<Float> out_bins,
  4. int mode,
  5. double db_floor,
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.Float>,
    ffi.Int,
    ffi.Pointer<ffi.Float>,
    ffi.UnsignedInt,
    ffi.Float,
  )
>()
external void yl_fft_spec(
  ffi.Pointer<ffi.Float> input,
  int length,
  ffi.Pointer<ffi.Float> out_bins,
  int mode,
  double db_floor,
);