Changeset 6097 for pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Oct 25, 2019 1:42:02 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r6094 r6097 511 511 { 512 512 /** 513 * The media stream, read-only.513 * The audio media stream, read-only. 514 514 */ 515 515 pjmedia_stream *stream; 516 516 517 517 /** 518 * Stream index in the media session, read-only.518 * Stream index in the audio media session, read-only. 519 519 */ 520 520 unsigned stream_idx; … … 531 531 532 532 /** 533 * On input, it specifies the media port of the stream. Application533 * On input, it specifies the audio media port of the stream. Application 534 534 * may modify this pointer to point to different media port to be 535 535 * registered to the conference bridge. … … 961 961 962 962 /** 963 * Notify application when media session is created and before it is963 * Notify application when audio media session is created and before it is 964 964 * registered to the conference bridge. Application may return different 965 * media port if it has added media processing port to the stream. This966 * media port then will be added to the conference bridge instead.965 * audio media port if it has added media processing port to the stream. 966 * This media port then will be added to the conference bridge instead. 967 967 * 968 968 * Note: if implemented, #on_stream_created2() callback will be called … … 970 970 * 971 971 * @param call_id Call identification. 972 * @param strm Media stream.973 * @param stream_idx Stream index in the media session.974 * @param p_port On input, it specifies the media port of the972 * @param strm Audio media stream. 973 * @param stream_idx Stream index in the audio media session. 974 * @param p_port On input, it specifies the audio media port of the 975 975 * stream. Application may modify this pointer to 976 976 * point to different media port to be registered … … 983 983 984 984 /** 985 * Notify application when media session is created and before it is985 * Notify application when audio media session is created and before it is 986 986 * registered to the conference bridge. Application may return different 987 * media port if it has added media processing port to the stream. This988 * media port then will be added to the conference bridge instead.987 * audio media port if it has added media processing port to the stream. 988 * This media port then will be added to the conference bridge instead. 989 989 * 990 990 * @param call_id Call identification. … … 995 995 996 996 /** 997 * Notify application when media session has been unregistered from the998 * conference bridge and about to be destroyed.997 * Notify application when audio media session has been unregistered from 998 * the conference bridge and about to be destroyed. 999 999 * 1000 1000 * @param call_id Call identification. 1001 * @param strm Media stream.1002 * @param stream_idx Stream index in the media session.1001 * @param strm Audio media stream. 1002 * @param stream_idx Stream index in the audio media session. 1003 1003 */ 1004 1004 void (*on_stream_destroyed)(pjsua_call_id call_id,
Note: See TracChangeset
for help on using the changeset viewer.