ma_decode_from_vfs function

ma_result ma_decode_from_vfs(
  1. Pointer<Void> pVFS,
  2. Pointer<Char> pFilePath,
  3. Pointer<ma_decoder_config> pConfig,
  4. Pointer<ma_uint64> pFrameCountOut,
  5. Pointer<Pointer<Void>> ppPCMFramesOut,
)

Implementation

ma_result ma_decode_from_vfs(
  ffi.Pointer<ma_vfs> pVFS,
  ffi.Pointer<ffi.Char> pFilePath,
  ffi.Pointer<ma_decoder_config> pConfig,
  ffi.Pointer<ma_uint64> pFrameCountOut,
  ffi.Pointer<ffi.Pointer<ffi.Void>> ppPCMFramesOut,
) => ma_result.fromValue(
  _ma_decode_from_vfs(pVFS, pFilePath, pConfig, pFrameCountOut, ppPCMFramesOut),
);