Ignore:
Timestamp:
May 19, 2011 8:05:23 AM (13 years ago)
Author:
ming
Message:

Fixed #1268: Option for automatic/manual sending of RTCP SDES/BYE for the stream.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjmedia/include/pjmedia/stream.h

    r3553 r3571  
    134134                                         is enabled?                        */ 
    135135#endif 
     136    pj_bool_t           rtcp_sdes_bye_disabled;  
     137                                    /**< Disable automatic sending of RTCP 
     138                                         SDES and BYE.                      */ 
    136139}; 
    137140 
     
    373376 
    374377/** 
     378 * Send RTCP SDES for the media stream. 
     379 * 
     380 * @param stream        The media stream. 
     381 * 
     382 * @return              PJ_SUCCESS on success. 
     383 */ 
     384PJ_DECL(pj_status_t)  
     385pjmedia_stream_send_rtcp_sdes( pjmedia_stream *stream ); 
     386 
     387/** 
     388 * Send RTCP BYE for the media stream. 
     389 * 
     390 * @param stream        The media stream. 
     391 * 
     392 * @return              PJ_SUCCESS on success. 
     393 */ 
     394PJ_DECL(pj_status_t) 
     395pjmedia_stream_send_rtcp_bye( pjmedia_stream *stream ); 
     396 
     397/** 
    375398 * @} 
    376399 */ 
Note: See TracChangeset for help on using the changeset viewer.