pjsua_ext_snd_dev_create method
int
pjsua_ext_snd_dev_create(
- Pointer<
pjmedia_snd_port_param> param, - Pointer<
Pointer< p_sndpjsua_ext_snd_dev> >
Create an extra sound device and register it to conference bridge.
@param param Sound device port param. Currently this only supports mono channel, so channel count must be set to 1. @param p_snd The extra sound device instance.
@return PJ_SUCCESS on success or the appropriate error code.
Implementation
int pjsua_ext_snd_dev_create(
ffi.Pointer<pjmedia_snd_port_param> param,
ffi.Pointer<ffi.Pointer<pjsua_ext_snd_dev>> p_snd,
) {
return _pjsua_ext_snd_dev_create(
param,
p_snd,
);
}