From 8c032439f9efb3cc5bcadb05cd12b770b1459bf6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 15 Jun 2008 15:52:51 +0300 Subject: [PATCH] RTP: always enable Roll-Over-Counter carriage It is pretty much impossible to receive broadcast SRTP without this. If/when someone needs to disable this, let me know. --- modules/demux/rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/rtp.c b/modules/demux/rtp.c index 8f917efce2..cbcaf3ddae 100644 --- a/modules/demux/rtp.c +++ b/modules/demux/rtp.c @@ -241,7 +241,7 @@ static int Open (vlc_object_t *obj) if (key) { p_sys->srtp = srtp_create (SRTP_ENCR_AES_CM, SRTP_AUTH_HMAC_SHA1, 10, - SRTP_PRF_AES_CM, 0); + SRTP_PRF_AES_CM, SRTP_RCC_MODE1); if (p_sys->srtp == NULL) { free (key); -- 2.39.5