snd_pcm_frames_to_bytes method

int snd_pcm_frames_to_bytes(
  1. Pointer<snd_pcm_> pcm,
  2. int frames
)

Implementation

int snd_pcm_frames_to_bytes(
  ffi.Pointer<snd_pcm_> pcm,
  int frames,
) {
  return _snd_pcm_frames_to_bytes(
    pcm,
    frames,
  );
}