]> granicus.if.org Git - handbrake/commitdiff
cli: Don't throttle non-tty output. #1067
authorBradley Sepos <bradley@bradleysepos.com>
Mon, 25 Dec 2017 00:02:18 +0000 (19:02 -0500)
committerBradley Sepos <bradley@bradleysepos.com>
Mon, 25 Dec 2017 00:02:18 +0000 (19:02 -0500)
test/test.c

index 2cfca80cfc8d943975206bb779a5d275d3754a4c..3b599134edc2dec781673b821d18af4eaca1f258 100644 (file)
@@ -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 );
     }