Searched refs:stream_template (Results 1 – 10 of 10) 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 …]
202 if (session->stream_template in srtp_stream_dealloc()203 && stream->rtp_cipher == session->stream_template->rtp_cipher) { in srtp_stream_dealloc()212 if (session->stream_template in srtp_stream_dealloc()213 && stream->rtp_auth == session->stream_template->rtp_auth) { in srtp_stream_dealloc()222 if (session->stream_template in srtp_stream_dealloc()223 && stream->limit == session->stream_template->limit) { in srtp_stream_dealloc()233 if (session->stream_template in srtp_stream_dealloc()234 && stream->rtcp_cipher == session->stream_template->rtcp_cipher) { in srtp_stream_dealloc()246 if (session->stream_template in srtp_stream_dealloc()247 && stream->rtcp_auth == session->stream_template->rtcp_auth) { in srtp_stream_dealloc()[all …]
196 srtp_stream_t stream_template);240 srtp_stream_ctx_t *stream_template; /* act as template for other streams */ member
233 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()
1042 if (srtp->stream_template != NULL) { in srtp_session_print_policy()1043 stream = srtp->stream_template; in srtp_session_print_policy()
597 srtp_stream_ctx_t* srtp_context = session_->stream_template; in GetRtpAuthParams()