Function psp::sys::sceAudioSRCChReserve

source ·
#[no_mangle]
pub unsafe extern "C" fn sceAudioSRCChReserve(
    sample_count: i32,
    freq: AudioOutputFrequency,
    channels: i32
) -> i32
Expand description

Reserve the audio output

§Parameters

  • sample_count: The number of samples to output in one output call (min 17, max 4111).
  • freq: One of AudioOutputFrequency.
  • channels: Number of channels. Pass 2 (stereo).

§Return value

0 on success, <0 on error.