From: Anthony Minessale Date: Mon, 28 Sep 2015 19:00:37 +0000 (-0500) Subject: FS-8232 #resolve [conference sending too many video refresh req] X-Git-Tag: v1.6.3~1^2~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbacc27d2984b0356920edcb2d25de5ceb80e27c;p=thirdparty%2Ffreeswitch.git FS-8232 #resolve [conference sending too many video refresh req] --- diff --git a/src/mod/applications/mod_conference/conference_video.c b/src/mod/applications/mod_conference/conference_video.c index e78aa25700..4e6e00db53 100644 --- a/src/mod/applications/mod_conference/conference_video.c +++ b/src/mod/applications/mod_conference/conference_video.c @@ -1492,8 +1492,10 @@ void *SWITCH_THREAD_FUNC conference_video_muxing_write_thread_run(switch_thread_ if (last) { int delta = now - last; - if (delta > member->conference->video_fps.ms * 2) { + if (delta > member->conference->video_fps.ms * 5000) { + printf("WTF %d %d\n", delta, member->conference->video_fps.ms * 5000); switch_core_session_request_video_refresh(member->session); + } }