- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjmedia/include/pjmedia/stream.h
r4739 r5513 34 34 #include <pjmedia/transport.h> 35 35 #include <pjmedia/vid_codec.h> 36 #include <pjmedia/stream_common.h> 36 37 #include <pj/sock.h> 37 38 … … 343 344 * @param stream The media stream. 344 345 * @param ascii_digit String containing digits to be sent to remote as 345 * described on RFC 2833 section 3.10. Character 'R' is 346 * described on RFC 2833 section 3.10. 347 * If PJMEDIA_HAS_DTMF_FLASH is enabled, character 'R' is 346 348 * used to represent the event type 16 (flash) as stated 347 349 * in RFC 4730. … … 430 432 pjmedia_stream_send_rtcp_bye( pjmedia_stream *stream ); 431 433 434 435 /** 436 * Get the RTP session information of the media stream. This function can be 437 * useful for app with custom media transport to inject/filter some 438 * outgoing/incoming proprietary packets into normal audio RTP traffics. 439 * This will return the original pointer to the internal states of the stream, 440 * and generally it is not advisable for app to modify them. 441 * 442 * @param stream The media stream. 443 * 444 * @param session_info The stream session info. 445 * 446 * @return PJ_SUCCESS on success. 447 */ 448 PJ_DECL(pj_status_t) 449 pjmedia_stream_get_rtp_session_info(pjmedia_stream *stream, 450 pjmedia_stream_rtp_sess_info *session_info); 451 452 432 453 /** 433 454 * @}
Note: See TracChangeset
for help on using the changeset viewer.