diff options
author | johnallen <[email protected]> | 2007-01-07 22:53:13 +0000 |
---|---|---|
committer | johnallen <[email protected]> | 2007-01-07 22:53:13 +0000 |
commit | dc22ce2c46ee62a46963d92ccb4a7fc26bd21d26 (patch) | |
tree | 8647a1eb087754096c5183012f7ca7409b88d817 /libhb/reader.c | |
parent | 7c524f73450b318c1b45ac584e68f2abb88a5935 (diff) |
Documentation begins.
Added method documentation for hb.c as well as a few methods in sync.c and work.c
More to come.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@97 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/reader.c')
-rw-r--r-- | libhb/reader.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/reader.c b/libhb/reader.c index 47ec9d546..ed4a675ff 100644 --- a/libhb/reader.c +++ b/libhb/reader.c @@ -100,7 +100,8 @@ static void ReaderFunc( void * _r ) while( !*r->die && !r->job->done && hb_fifo_is_full( fifo ) ) { - hb_snooze( 50 ); + hb_snooze( 1 ); + //hb_log("sleep: ReaderFunc"); } hb_fifo_push( fifo, buf ); } |