Home | History | Annotate | Download | only in include

Lines Matching refs:ssrc

138  * @brief ssrc_type_t describes the type of an SSRC.
140 * An ssrc_type_t enumeration is used to indicate a type of SSRC. See
145 ssrc_undefined = 0, /**< Indicates an undefined SSRC type. */
146 ssrc_specific = 1, /**< Indicates a specific SSRC value */
147 ssrc_any_inbound = 2, /**< Indicates any inbound SSRC value
150 ssrc_any_outbound = 3 /**< Indicates any outbound SSRC value
156 * @brief An ssrc_t represents a particular SSRC value, or a `wildcard' SSRC.
158 * An ssrc_t represents a particular SSRC value (if its type is
159 * ssrc_specific), or a wildcard SSRC value that will match all
166 ssrc_type_t type; /**< The type of this particular SSRC */
167 unsigned int value; /**< The value of this SSRC, if it is not a wildcard */
190 * master key for that stream, the SSRC describing that stream, or a
191 * flag indicating a `wildcard' SSRC value, and a `next' field that
195 * The wildcard value SSRC_ANY_INBOUND matches any SSRC from an
196 * inbound stream that for which there is no explicit SSRC entry in
198 * will matches any SSRC from an outbound stream that does not appear
202 * lapses result from accidental re-use of SSRC values during key
211 ssrc_t ssrc; /**< The SSRC value of stream, or the
412 * The function call srtp_remove_stream(session, ssrc) removes
413 * the SRTP stream with the SSRC value ssrc from the SRTP session
419 * @param ssrc is the SSRC value of the stream to be removed.
421 * @warning Wildcard SSRC values cannot be removed from a
431 srtp_remove_stream(srtp_t session, unsigned int ssrc);
848 * outside the `data plane', such as SSRC collisions and
864 * An SSRC collision occured.