From 033950af51e08982e1e51e39b4dc172d8abf1d7a Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Wed, 20 Feb 2008 08:56:15 +0000 Subject: Ticket #489: New PJSUA callbacks to notify application when media stream is created and destroyed git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1806 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip/include/pjsua-lib/pjsua.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'pjsip/include') diff --git a/pjsip/include/pjsua-lib/pjsua.h b/pjsip/include/pjsua-lib/pjsua.h index ca93208e..1e857b51 100644 --- a/pjsip/include/pjsua-lib/pjsua.h +++ b/pjsip/include/pjsua-lib/pjsua.h @@ -602,6 +602,44 @@ typedef struct pjsua_callback */ void (*on_call_media_state)(pjsua_call_id call_id); + + /** + * Notify application when media session is created and before it is + * registered to the conference bridge. Application may return different + * media port if it has added media processing port to the stream. This + * media port then will be added to the conference bridge instead. + * + * @param call_id Call identification. + * @param sess Media session for the call. + * @param stream_idx Stream index in the media session. + * @param p_port On input, it specifies the media port of the + * stream. Application may modify this pointer to + * point to different media port to be registered + * to the conference bridge. + * + * \par Python: + * Not applicable. + */ + void (*on_stream_created)(pjsua_call_id call_id, + pjmedia_session *sess, + unsigned stream_idx, + pjmedia_port **p_port); + + /** + * Notify application when media session has been unregistered from the + * conference bridge and about to be destroyed. + * + * @param call_id Call identification. + * @param sess Media session for the call. + * @param stream_idx Stream index in the media session. + * + * \par Python: + * Not applicable. + */ + void (*on_stream_destroyed)(pjsua_call_id call_id, + pjmedia_session *sess, + unsigned stream_idx); + /** * Notify application upon incoming DTMF digits. * -- cgit v1.2.3