From: Anthony Minessale Date: Wed, 19 Nov 2014 23:37:33 +0000 (-0600) Subject: FS-7500: make play_yuv silent since opus echo tends to kill chrome X-Git-Tag: v1.6.2~614^2~581 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1093139271b326e382db5c9a58ff65aa1e3ba925;p=thirdparty%2Ffreeswitch.git FS-7500: make play_yuv silent since opus echo tends to kill chrome --- diff --git a/src/mod/applications/mod_fsv/mod_fsv.c b/src/mod/applications/mod_fsv/mod_fsv.c index 640045b0a9..e621ad15a4 100644 --- a/src/mod/applications/mod_fsv/mod_fsv.c +++ b/src/mod/applications/mod_fsv/mod_fsv.c @@ -670,7 +670,8 @@ SWITCH_STANDARD_APP(play_yuv_function) } } - if (read_frame) switch_core_session_write_frame(session, read_frame, SWITCH_IO_FLAG_NONE, 0); + /* echo of opus tends to seg chrome */ + //if (read_frame) switch_core_session_write_frame(session, read_frame, SWITCH_IO_FLAG_NONE, 0); sprintf(ts_str, "%" SWITCH_TIME_T_FMT, switch_micro_time_now() / 1000); text(img->planes[SWITCH_PLANE_PACKED], width, 20, 20, ts_str);