From: Bradley Sepos Date: Mon, 25 Dec 2017 00:02:18 +0000 (-0500) Subject: cli: Don't throttle non-tty output. #1067 X-Git-Tag: 1.1.0~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87c14947448aa4d51b4c4f552dadf9b18bf463ce;p=handbrake cli: Don't throttle non-tty output. #1067 --- diff --git a/test/test.c b/test/test.c index 2cfca80cf..3b599134e 100644 --- a/test/test.c +++ b/test/test.c @@ -396,14 +396,7 @@ void EventLoop(hb_handle_t *h, hb_dict_t *preset_dict) } } #endif - if (stdout_tty == 0) - { - hb_snooze(2000); - } - else - { - hb_snooze(200); - } + hb_snooze(200); HandleEvents( h, preset_dict ); }