docs: Add documentation for RCE_RTCP_MUX flag

This commit is contained in:
Heikki Tampio 2024-01-30 10:36:09 +02:00
parent d2b6e93132
commit 7b071c1c58
2 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,7 @@ session->create_stream(..., RCE_SRTP | RCE_SRTP_KMNGMNT_ZRTP | RCE_SRTP_NULL_CIP
| RCE_ZRTP_MULTISTREAM_MODE | Select which streams do not perform Diffie-Hellman with ZRTP. Currently, ZRTP only works reliably with one stream performing DH and one not performing it |
| RCE_FRAMERATE | Try to keep the sent framerate as constant as possible (default fps is 30) |
| RCE_PACE_FRAGMENT_SENDING | Pace the sending of framents to frame interval to help receiver receive packets (default frame interval is 1/30) |
| RCE_RTCP_MUX | Use a single UDP port for both RTP and RTCP transmission (default RTCP port is +1) |
### RTP Context Configuration (RCC) flags

View File

@ -276,6 +276,7 @@ enum RTP_CTX_ENABLE_FLAGS {
/** Paces the sending of frame fragments within frame interval (default 1/30 s) */
RCE_PACE_FRAGMENT_SENDING = 1 << 20,
/** Use a single UDP port for both RTP and RTCP transmission (default RTCP port is +1) **/
RCE_RTCP_MUX = 1 << 21,
/// \cond DO_NOT_DOCUMENT