snd_ctl_convert_from_dB method

int snd_ctl_convert_from_dB(
  1. Pointer<snd_ctl_t> ctl,
  2. Pointer<snd_ctl_elem_id_t> id,
  3. int db_gain,
  4. Pointer<Long> value,
  5. int xdir,
)

Implementation

int snd_ctl_convert_from_dB(
  ffi.Pointer<snd_ctl_t> ctl,
  ffi.Pointer<snd_ctl_elem_id_t> id,
  int db_gain,
  ffi.Pointer<ffi.Long> value,
  int xdir,
) {
  return _snd_ctl_convert_from_dB(
    ctl,
    id,
    db_gain,
    value,
    xdir,
  );
}