ma_resampler_process_pcm_frames function

ma_result ma_resampler_process_pcm_frames(
  1. Pointer<ma_resampler> pResampler,
  2. Pointer<Void> pFramesIn,
  3. Pointer<ma_uint64> pFrameCountIn,
  4. Pointer<Void> pFramesOut,
  5. Pointer<ma_uint64> pFrameCountOut,
)

Implementation

ma_result ma_resampler_process_pcm_frames(
  ffi.Pointer<ma_resampler> pResampler,
  ffi.Pointer<ffi.Void> pFramesIn,
  ffi.Pointer<ma_uint64> pFrameCountIn,
  ffi.Pointer<ffi.Void> pFramesOut,
  ffi.Pointer<ma_uint64> pFrameCountOut,
) => ma_result.fromValue(
  _ma_resampler_process_pcm_frames(
    pResampler,
    pFramesIn,
    pFrameCountIn,
    pFramesOut,
    pFrameCountOut,
  ),
);