pub unsafe extern "C-unwind" fn AudioConverterGetProperty(
in_audio_converter: *mut OpaqueAudioConverter,
in_property_id: u32,
io_property_data_size: NonNull<u32>,
out_property_data: NonNull<c_void>,
) -> i32Expand description
Returns an AudioConverter property value.
Parameter inAudioConverter: The AudioConverter to query.
Parameter inPropertyID: The property to fetch.
Parameter ioPropertyDataSize: On entry, the size of the memory pointed to by outPropertyData. On
successful exit, the size of the property value.
Parameter outPropertyData: On exit, the property value.
Returns: An OSStatus result code.
ยงSafety
in_audio_convertermust be a valid pointer.io_property_data_sizemust be a valid pointer.out_property_datamust be a valid pointer.