Changeset 6097
- Timestamp:
- Oct 25, 2019 1:42:02 AM (5 years ago)
- Location:
- pjproject/trunk/pjsip/include
- Files:
-
- 2 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, -
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r6051 r6097 679 679 { 680 680 /** 681 * Media stream, read-only.681 * Audio media stream, read-only. 682 682 */ 683 683 MediaStream stream; 684 684 685 685 /** 686 * Stream index in the media session, read-only.686 * Stream index in the audio media session, read-only. 687 687 */ 688 688 unsigned streamIdx; … … 699 699 700 700 /** 701 * On input, it specifies the media port of the stream. Application701 * On input, it specifies the audio media port of the stream. Application 702 702 * may modify this pointer to point to different media port to be 703 703 * registered to the conference bridge. … … 713 713 { 714 714 /** 715 * Media stream.715 * Audio media stream. 716 716 */ 717 717 MediaStream stream; 718 718 719 719 /** 720 * Stream index in the media session.720 * Stream index in the audio media session. 721 721 */ 722 722 unsigned streamIdx; … … 1712 1712 1713 1713 /** 1714 * Notify application when media session is created and before it is1714 * Notify application when audio media session is created and before it is 1715 1715 * registered to the conference bridge. Application may return different 1716 * media port if it has added media processing port to the stream. This1717 * media port then will be added to the conference bridge instead.1716 * audio media port if it has added media processing port to the stream. 1717 * This media port then will be added to the conference bridge instead. 1718 1718 * 1719 1719 * @param prm Callback parameter. … … 1723 1723 1724 1724 /** 1725 * Notify application when media session has been unregistered from the1726 * conference bridge and about to be destroyed.1725 * Notify application when audio media session has been unregistered from 1726 * the conference bridge and about to be destroyed. 1727 1727 * 1728 1728 * @param prm Callback parameter.
Note: See TracChangeset
for help on using the changeset viewer.