Commit 8c032439 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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.
parent b501c2e0
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment