Changeset 3841 for pjproject/trunk/pjmedia/include/pjmedia/stream.h
- Timestamp:
- Oct 24, 2011 9:28:13 AM (13 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk
- Property svn:mergeinfo changed
-
pjproject/trunk/pjmedia/include/pjmedia/stream.h
r3837 r3841 136 136 is enabled? */ 137 137 #endif 138 pj_bool_t rtcp_sdes_bye_disabled; 139 /**< Disable automatic sending of RTCP 140 SDES and BYE. */ 138 141 } pjmedia_stream_info; 139 142 … … 405 408 406 409 /** 410 * Send RTCP SDES for the media stream. 411 * 412 * @param stream The media stream. 413 * 414 * @return PJ_SUCCESS on success. 415 */ 416 PJ_DECL(pj_status_t) 417 pjmedia_stream_send_rtcp_sdes( pjmedia_stream *stream ); 418 419 /** 420 * Send RTCP BYE for the media stream. 421 * 422 * @param stream The media stream. 423 * 424 * @return PJ_SUCCESS on success. 425 */ 426 PJ_DECL(pj_status_t) 427 pjmedia_stream_send_rtcp_bye( pjmedia_stream *stream ); 428 429 /** 407 430 * @} 408 431 */
Note: See TracChangeset
for help on using the changeset viewer.