snd_ctl_convert_to_dB method

int snd_ctl_convert_to_dB(
  1. Pointer<snd_ctl_t> ctl,
  2. Pointer<snd_ctl_elem_id_t> id,
  3. int volume,
  4. Pointer<Long> db_gain
)

Implementation

int snd_ctl_convert_to_dB(
  ffi.Pointer<snd_ctl_t> ctl,
  ffi.Pointer<snd_ctl_elem_id_t> id,
  int volume,
  ffi.Pointer<ffi.Long> db_gain,
) {
  return _snd_ctl_convert_to_dB(
    ctl,
    id,
    volume,
    db_gain,
  );
}