pjsua_vid_enum_codecs method
Enum all supported video codecs in the system.
@param id Array of ID to be initialized. @param count On input, specifies max elements in the array. On return, it contains actual number of elements that have been initialized.
@return PJ_SUCCESS on success, or the appropriate error code.
Implementation
int pjsua_vid_enum_codecs(
ffi.Pointer<pjsua_codec_info> id,
ffi.Pointer<ffi.UnsignedInt> count,
) {
return _pjsua_vid_enum_codecs(
id,
count,
);
}