Ignore:
Timestamp:
Apr 3, 2012 10:10:11 AM (12 years ago)
Author:
nanang
Message:

Close #1479: Applied RTCP related enhancements (#1268 & #1440) into video stream.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/vid_stream.h

    r3901 r4012  
    115115    pjmedia_vid_codec_param *codec_param; /**< Optional codec param.        */ 
    116116 
     117    pj_bool_t           rtcp_sdes_bye_disabled;  
     118                                    /**< Disable automatic sending of RTCP 
     119                                         SDES and BYE.                      */ 
    117120} pjmedia_vid_stream_info; 
    118121 
     
    333336 
    334337/** 
     338 * Send RTCP SDES for the media stream. 
     339 * 
     340 * @param stream        The media stream. 
     341 * 
     342 * @return              PJ_SUCCESS on success. 
     343 */ 
     344PJ_DECL(pj_status_t) pjmedia_vid_stream_send_rtcp_sdes( 
     345                                                pjmedia_vid_stream *stream); 
     346 
     347 
     348/** 
     349 * Send RTCP BYE for the media stream. 
     350 * 
     351 * @param stream        The media stream. 
     352 * 
     353 * @return              PJ_SUCCESS on success. 
     354 */ 
     355PJ_DECL(pj_status_t) pjmedia_vid_stream_send_rtcp_bye( 
     356                                                pjmedia_vid_stream *stream); 
     357 
     358 
     359/** 
    335360 * @} 
    336361 */ 
Note: See TracChangeset for help on using the changeset viewer.