Searched refs:stream_template (Results 1 – 6 of 6) sorted by relevance
13 + srtp_stream_t stream_template);131 + srtp_stream_ctx_t *stream_template) {142 - if (session->stream_template143 - && stream->rtp_cipher == session->stream_template->rtp_cipher) {146 + if (!stream_template || stream->rtp_cipher != stream_template->rtp_cipher) {153 - if (session->stream_template154 - && stream->rtp_auth == session->stream_template->rtp_auth) {157 + if (!stream_template || stream->rtp_auth != stream_template->rtp_auth) {164 - if (session->stream_template165 - && stream->limit == session->stream_template->limit) {[all …]
35 + str->allow_repeat_tx = stream_template->allow_repeat_tx;
616 + rdbx_get_window_size(&stream_template->rtp_rdbx));
167 srtp_stream_ctx_t *stream_template) { in srtp_stream_dealloc() argument177 if (!stream_template || stream->rtp_cipher != stream_template->rtp_cipher) { in srtp_stream_dealloc()184 if (!stream_template || stream->rtp_auth != stream_template->rtp_auth) { in srtp_stream_dealloc()191 if (!stream_template || stream->limit != stream_template->limit) { in srtp_stream_dealloc()199 if (!stream_template || stream->rtcp_cipher != stream_template->rtcp_cipher) { in srtp_stream_dealloc()209 if (!stream_template || stream->rtcp_auth != stream_template->rtcp_auth) { in srtp_stream_dealloc()233 srtp_stream_clone(const srtp_stream_ctx_t *stream_template, in srtp_stream_clone() argument248 str->rtp_cipher = stream_template->rtp_cipher; in srtp_stream_clone()249 str->rtp_auth = stream_template->rtp_auth; in srtp_stream_clone()250 str->rtcp_cipher = stream_template->rtcp_cipher; in srtp_stream_clone()[all …]
196 srtp_stream_t stream_template);240 srtp_stream_ctx_t *stream_template; /* act as template for other streams */ member
987 if (srtp->stream_template != NULL) { in srtp_session_print_policy()988 stream = srtp->stream_template; in srtp_session_print_policy()