From: Seven Du Date: Thu, 12 Mar 2020 14:01:56 +0000 (+0800) Subject: [mod_video_filter] Disable waiting video ready which blocks the channel 10 seconds... X-Git-Tag: v1.10.6^2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21a536e774cfb389505831a8cfca72ec0e50564f;p=thirdparty%2Ffreeswitch.git [mod_video_filter] Disable waiting video ready which blocks the channel 10 seconds in early media --- diff --git a/src/mod/applications/mod_video_filter/mod_video_filter.c b/src/mod/applications/mod_video_filter/mod_video_filter.c index 3cd8c84ce9..613f8d9195 100644 --- a/src/mod/applications/mod_video_filter/mod_video_filter.c +++ b/src/mod/applications/mod_video_filter/mod_video_filter.c @@ -970,7 +970,7 @@ SWITCH_STANDARD_APP(video_replace_start_function) return; } - switch_channel_wait_for_flag(channel, CF_VIDEO_READY, SWITCH_TRUE, 10000, NULL); + // switch_channel_wait_for_flag(channel, CF_VIDEO_READY, SWITCH_TRUE, 10000, NULL); context = (video_replace_context_t *) switch_core_session_alloc(session, sizeof(*context)); switch_assert(context != NULL);