From: Michael Jerris Date: Wed, 22 Apr 2015 16:43:43 +0000 (-0500) Subject: CID:1024555: remove logically dead code X-Git-Tag: v1.6.2~614^2~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1550d548db48d0536406ec948580cf4d6270acde;p=thirdparty%2Ffreeswitch.git CID:1024555: remove logically dead code --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index c745d11e8a..955849b429 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -3903,7 +3903,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_jitter_buffer(switch_rtp_t * stfu_n_destroy(&rtp_session->jb); } - rtp_session->jb = stfu_n_init(queue_frames, max_queue_frames ? max_queue_frames : 50, samples_per_packet, samples_per_second, max_drift); + rtp_session->jb = stfu_n_init(queue_frames, max_queue_frames, samples_per_packet, samples_per_second, max_drift); READ_DEC(rtp_session);