pjsua_vid_enum_codecs method

int pjsua_vid_enum_codecs(
  1. Pointer<pjsua_codec_info> id,
  2. Pointer<UnsignedInt> count
)

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,
  );
}