diff options
author | jbrjake <[email protected]> | 2007-03-18 15:26:01 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-03-18 15:26:01 +0000 |
commit | df6924eaf9dcc86e19582f3cab91304ec739d63e (patch) | |
tree | f1edfb10a84744b62e5a11ed1e5768fb312f4413 /libhb/muxcommon.c | |
parent | 91b712aaaebff79b14d8c341b96a807440001db3 (diff) |
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://svn.handbrake.fr/HandBrake/trunk@437 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r-- | libhb/muxcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index 70e384e8a..3fc13b8c7 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 */ |