]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7500: make play_yuv silent since opus echo tends to kill chrome
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 19 Nov 2014 23:37:33 +0000 (17:37 -0600)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:46:45 +0000 (12:46 -0500)
src/mod/applications/mod_fsv/mod_fsv.c

index 640045b0a930c3e0732849de44837173824b7b48..e621ad15a43dd0f17ab3e00ec0308258c718f557 100644 (file)
@@ -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);