summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Santos Cadenas <santoscadenas@gmail.com>2013-03-15 09:27:36 +0100
committerTim-Philipp Müller <tim@centricular.net>2013-03-15 11:04:29 +0000
commit2347c4e711d8b8630fc2654b6910c69adf94f164 (patch)
tree387e40464b5fdd5fae4b5b25fe6ec3206b06349b
parenta80726c8d718dbb76ea05af57c45dbb3f1e618c6 (diff)
downloadgstreamer-plugins-bad-2347c4e711d8b8630fc2654b6910c69adf94f164.tar.gz
srtp: use constant AES_128_ICM instead of AES_ICM that is not found
https://bugzilla.gnome.org/show_bug.cgi?id=695897
-rw-r--r--ext/srtp/gstsrtp.c2
1 files changed, 1 insertions, 1 deletions
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: