Function psp::sys::sceAudioInput

source ·
#[no_mangle]
pub unsafe extern "C" fn sceAudioInput(
    sample_count: i32,
    freq: AudioInputFrequency,
    buf: *mut c_void
)
Expand description

Perform audio input

§Parameters

  • sample_count: Number of samples.
  • freq: One of AudioInputFrequency.
  • buf: Pointer to where the audio data will be stored.

§Return value

0 on success, <0 on error.