Changeset 5479 for pjproject/trunk/pjmedia/include/pjmedia/vid_stream.h
- Timestamp:
- Nov 4, 2016 2:57:20 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/vid_stream.h
r5410 r5479 32 32 #include <pjmedia/transport.h> 33 33 #include <pjmedia/vid_codec.h> 34 #include <pjmedia/stream_common.h> 34 35 #include <pj/sock.h> 35 36 … … 446 447 pjmedia_vid_stream *stream); 447 448 449 /** 450 * Get the RTP session information of the video media stream. This function 451 * can be useful for app with custom media transport to inject/filter some 452 * outgoing/incoming proprietary packets into normal video RTP traffics. 453 * This will return the original pointer to the internal states of the stream, 454 * and generally it is not advisable for app to modify them. 455 * 456 * @param stream The video media stream. 457 * 458 * @param session_info The stream session info. 459 * 460 * @return PJ_SUCCESS on success. 461 */ 462 PJ_DECL(pj_status_t) 463 pjmedia_vid_stream_get_rtp_session_info(pjmedia_vid_stream *stream, 464 pjmedia_stream_rtp_sess_info *session_info); 465 448 466 449 467 /**
Note: See TracChangeset
for help on using the changeset viewer.