From db826481ba2d3f3c811a22bec87b92aefbc75d43 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Sun, 18 Mar 2007 15:26:01 +0000 Subject: [PATCH] Reverts an hb_snooze call's length from 200 to 50, like titer intended it. Should be slightly faster (maybe 1 fps), hopefully might fix some other random problems. It's located in the part of muxcommon.c that waits til the audio and video buffers are full before muxing packets. If the buffers aren't full, it snoozes. So I think it gets run 1 or more times for every frame. The snooze value got altered back in revision 98. git-svn-id: svn://localhost/HandBrake/trunk@437 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/muxcommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index 70e384e8..3fc13b8c 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -108,7 +108,7 @@ static void MuxerFunc( void * _mux ) break; } - hb_snooze( 200 ); + hb_snooze( 50 ); } /* Create file, write headers */ -- 2.11.0