From: Anthony Minessale Date: Sat, 23 May 2015 03:08:19 +0000 (-0500) Subject: FS-7500 just send refresh and not full reset on uuid_video_refresh X-Git-Tag: v1.6.2~614^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abd6943cf54004a2922ed708c7ed109ff05ee7d0;p=thirdparty%2Ffreeswitch.git FS-7500 just send refresh and not full reset on uuid_video_refresh --- diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index 60bcda10d0..67e5eb0416 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -3934,8 +3934,7 @@ SWITCH_STANDARD_API(uuid_video_refresh_function) switch_core_session_t *lsession = NULL; if ((lsession = switch_core_session_locate(argv[0]))) { - switch_core_session_video_reinit(lsession); - switch_channel_video_sync(switch_core_session_get_channel(lsession)); + switch_core_session_request_video_refresh(lsession); status = SWITCH_STATUS_SUCCESS; switch_core_session_rwunlock(lsession); }