Searched refs:rtcp_auth (Results 1 – 7 of 7) sorted by relevance
/third_party/gstreamer/gstplugins_bad/ext/srtp/ |
D | gstsrtpdec.c | 230 GstSrtpAuthType rtcp_auth; member 246 stream->rtcp_auth != GST_SRTP_AUTH_NULL) 551 const gchar *rtp_cipher, *rtp_auth, *rtcp_cipher, *rtcp_auth; in get_stream_from_caps() local 566 rtcp_auth = gst_structure_get_string (s, "srtcp-auth"); in get_stream_from_caps() 567 if (!rtp_cipher || !rtp_auth || !rtcp_cipher || !rtcp_auth) in get_stream_from_caps() 577 stream->rtcp_auth = enum_value_from_nick (GST_TYPE_SRTP_AUTH_TYPE, rtcp_auth); in get_stream_from_caps() 580 (gint) stream->rtcp_cipher == -1 || (gint) stream->rtcp_auth == -1) { in get_stream_from_caps() 592 && stream->rtcp_auth == GST_SRTP_AUTH_NULL) { in get_stream_from_caps() 707 set_crypto_policy_cipher_auth (stream->rtcp_cipher, stream->rtcp_auth, in init_session_stream() 924 stream->rtcp_auth == old_stream->rtcp_auth && in update_session_stream_from_caps()
|
D | gstsrtpenc.c | 139 filter->rtcp_auth != GST_SRTP_AUTH_NULL) 363 filter->rtcp_auth = DEFAULT_RTCP_AUTH; in gst_srtp_enc_init() 431 set_crypto_policy_cipher_auth (filter->rtcp_cipher, filter->rtcp_auth, in gst_srtp_enc_create_session() 738 filter->rtcp_auth = g_value_get_enum (value); in gst_srtp_enc_set_property() 739 GST_INFO_OBJECT (object, "Set property: rtcp auth=%d", filter->rtcp_auth); in gst_srtp_enc_set_property() 791 g_value_set_enum (value, filter->rtcp_auth); in gst_srtp_enc_get_property() 909 enum_nick_from_value (GST_TYPE_SRTP_AUTH_TYPE, filter->rtcp_auth), NULL); in gst_srtp_enc_sink_setcaps() 1398 filter->rtcp_auth != GST_SRTP_AUTH_NULL) { in gst_srtp_enc_change_state() 1415 && filter->rtcp_auth == GST_SRTP_AUTH_NULL) { in gst_srtp_enc_change_state()
|
D | gstsrtpenc.h | 78 guint rtcp_auth; member
|
/third_party/ffmpeg/libavformat/ |
D | srtp.c | 108 derive_key(s->aes, s->master_salt, 0x04, s->rtcp_auth, sizeof(s->rtcp_auth)); in ff_srtp_set_crypto() 147 av_hmac_init(s->hmac, rtcp ? s->rtcp_auth : s->rtp_auth, sizeof(s->rtp_auth)); in ff_srtp_decrypt() 313 av_hmac_init(s->hmac, rtcp ? s->rtcp_auth : s->rtp_auth, sizeof(s->rtp_auth)); in ff_srtp_encrypt()
|
D | srtp.h | 38 uint8_t rtp_auth[20], rtcp_auth[20]; member
|
/third_party/gstreamer/gstplugins_bad/ext/dtls/ |
D | gstdtlssrtpenc.c | 504 guint rtp_cipher = 1, rtcp_cipher = 1, rtp_auth = 1, rtcp_auth = 1; in gst_dtls_srtp_enc_remove_dtls_element() local 513 "rtp-auth", &rtp_auth, "rtcp-auth", &rtcp_auth, NULL); in gst_dtls_srtp_enc_remove_dtls_element() 515 if (!rtp_cipher && !rtcp_cipher && !rtp_auth && !rtcp_auth) { in gst_dtls_srtp_enc_remove_dtls_element()
|
/third_party/gstreamer/gstplugins_good/gst/rtsp/ |
D | gstrtspsrc.c | 3824 GValue rtcp_cipher = G_VALUE_INIT, rtcp_auth = G_VALUE_INIT; in request_rtcp_encoder() local 3829 g_value_init (&rtcp_auth, authtype); in request_rtcp_encoder() 3834 gst_value_deserialize (&rtcp_auth, str); in request_rtcp_encoder() 3840 &rtcp_auth); in request_rtcp_encoder() 3844 &rtcp_auth); in request_rtcp_encoder() 3848 g_value_unset (&rtcp_auth); in request_rtcp_encoder()
|