pjsua2 and conference bridge?

AB
Adi Bier
Fri, Sep 15, 2017 6:47 AM

Hi all,

I'm looking for a solution to connect a call to a conference bridge with pjsua2 (c++).
The examples are showing only to connect a call to an AudioMedia type, not a "virtual adapter" like a bridge (http://www.pjsip.org/docs/book-latest/html/call.html#receiving-incoming-calls), e.g.:

AudioMedia *aud_med = (AudioMedia *)getMedia(i);

// Connect the call audio media to sound device
AudDevManager& mgr = Endpoint::instance().audDevManager();
aud_med->startTransmit(mgr.getPlaybackDevMedia());
mgr.getCaptureDevMedia().startTransmit(*aud_med);
...

and a conference bridge is still not implemented in pjsua2?
How I can feed the bridge with the call-instance audiostream without using soundcards?
Are there solutions or a better documentation available for this?

Thank you, best regards Adi

Hi all, I'm looking for a solution to connect a call to a conference bridge with pjsua2 (c++). The examples are showing only to connect a call to an AudioMedia type, not a "virtual adapter" like a bridge (http://www.pjsip.org/docs/book-latest/html/call.html#receiving-incoming-calls), e.g.: AudioMedia *aud_med = (AudioMedia *)getMedia(i); // Connect the call audio media to sound device AudDevManager& mgr = Endpoint::instance().audDevManager(); aud_med->startTransmit(mgr.getPlaybackDevMedia()); mgr.getCaptureDevMedia().startTransmit(*aud_med); ... and a conference bridge is still not implemented in pjsua2? How I can feed the bridge with the call-instance audiostream without using soundcards? Are there solutions or a better documentation available for this? Thank you, best regards Adi