mgcp/rtp: Only patch SSRC once after MDCX if enabled

Currently the output SSRC is always forced to be the same if SSRC
patching is enabled.

This patch modifies this to optionally restrict the number of SSRC
changes that will be corrected.

Note that the configuration only allows for the 'once' mode and 'off'.

Sponsored-by: On-Waves ehf
diff --git a/openbsc/src/libmgcp/mgcp_protocol.c b/openbsc/src/libmgcp/mgcp_protocol.c
index c703bec..b8e1ecd 100644
--- a/openbsc/src/libmgcp/mgcp_protocol.c
+++ b/openbsc/src/libmgcp/mgcp_protocol.c
@@ -619,8 +619,10 @@
 {
 	struct mgcp_trunk_config *tcfg = endp->tcfg;
 
+	int patch_ssrc = expect_ssrc_change && tcfg->force_constant_ssrc;
+
 	rtp->force_constant_timing = tcfg->force_constant_timing;
-	rtp->force_constant_ssrc = tcfg->force_constant_ssrc;
+	rtp->force_constant_ssrc = patch_ssrc ? 1 : 0;
 
 	LOGP(DMGCP, LOGL_DEBUG,
 	     "Configuring RTP endpoint: local port %d%s%s\n",