From cb928cdf37390c07c68289a1ec72ebb828d07192 Mon Sep 17 00:00:00 2001 From: Anthony Minessale <anthm@freeswitch.org> Date: Sat, 16 Aug 2014 01:52:03 +0500 Subject: [PATCH] fix typo --- src/switch_core_media.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/switch_core_media.c b/src/switch_core_media.c index 505f024c3e..8e095744b0 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -5091,11 +5091,11 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_activate_rtp(switch_core_sessi } if ((val = switch_channel_get_variable(session->channel, "rtp_manual_rtp_bugs"))) { - switch_core_media_parse_rtp_bugs(&a_engine->rtp_bugs, val); + switch_core_media_parse_rtp_bugs(&a_engine->manual_rtp_bugs, val); } if (switch_channel_test_flag(session->channel, CF_WEBRTC)) { - smh->mparams->manual_rtp_bugs = RTP_BUG_SEND_LINEAR_TIMESTAMPS; + smh->mparams->manual_rtp_bugs |= RTP_BUG_SEND_LINEAR_TIMESTAMPS; } switch_rtp_intentional_bugs(a_engine->rtp_session, a_engine->rtp_bugs | smh->mparams->manual_rtp_bugs);