From 2347c4e711d8b8630fc2654b6910c69adf94f164 Mon Sep 17 00:00:00 2001 From: Jose Antonio Santos Cadenas Date: Fri, 15 Mar 2013 09:27:36 +0100 Subject: srtp: use constant AES_128_ICM instead of AES_ICM that is not found https://bugzilla.gnome.org/show_bug.cgi?id=695897 --- ext/srtp/gstsrtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/srtp/gstsrtp.c b/ext/srtp/gstsrtp.c index cf07d26a9..30f765c94 100644 --- a/ext/srtp/gstsrtp.c +++ b/ext/srtp/gstsrtp.c @@ -173,7 +173,7 @@ set_crypto_policy_cipher_auth (guint cipher, guint auth, { switch (cipher) { case GST_SRTP_CIPHER_AES_128_ICM: - policy->cipher_type = AES_ICM; + policy->cipher_type = AES_128_ICM; policy->cipher_key_len = 30; break; case GST_SRTP_CIPHER_NULL: -- cgit v1.2.1