transcode_to_flac method

int transcode_to_flac(
  1. Pointer<Char> src,
  2. Pointer<Char> dst,
  3. int samplerate,
  4. int bitspersample,
)

Implementation

int transcode_to_flac(
  ffi.Pointer<ffi.Char> src,
  ffi.Pointer<ffi.Char> dst,
  int samplerate,
  int bitspersample,
) {
  return _transcode_to_flac(
    src,
    dst,
    samplerate,
    bitspersample,
  );
}