From fdcc08b5c1eb8a0a9259fc4ac18e1c342bd973b6 Mon Sep 17 00:00:00 2001 From: paulc Date: Mon, 9 Jan 2012 21:09:09 +0000 Subject: [PATCH] Changed default value of "anyssrc", accept any incoming SSRC by default even if changes unsignaled. git-svn-id: http://voip.null.ro/svn/yate@4801 acf43c95-373e-0410-b603-e72c3f656dc1 --- conf.d/yrtpchan.conf.sample | 2 +- modules/yrtpchan.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.d/yrtpchan.conf.sample b/conf.d/yrtpchan.conf.sample index a6c5ab26..f36ce70f 100644 --- a/conf.d/yrtpchan.conf.sample +++ b/conf.d/yrtpchan.conf.sample @@ -21,7 +21,7 @@ ;autoaddr=enable ; anyssrc: bool: Accept any incoming SSRC, even if it changes frequently -;anyssrc=disable +;anyssrc=enable ; padding: int: Pad the RTP payload to a multiple of this setting ; Supported values are between 2 and 128 diff --git a/modules/yrtpchan.cpp b/modules/yrtpchan.cpp index 2f33a15e..424d0112 100644 --- a/modules/yrtpchan.cpp +++ b/modules/yrtpchan.cpp @@ -1824,7 +1824,7 @@ void YRTPPlugin::initialize() s_tos = cfg.getIntValue("general","tos",dict_tos); s_localip = cfg.getValue("general","localip"); s_autoaddr = cfg.getBoolValue("general","autoaddr",true); - s_anyssrc = cfg.getBoolValue("general","anyssrc",false); + s_anyssrc = cfg.getBoolValue("general","anyssrc",true); s_padding = cfg.getIntValue("general","padding",0); s_rtcp = cfg.getBoolValue("general","rtcp",true); s_interval = cfg.getIntValue("general","rtcp_interval",4500);