summaryrefslogtreecommitdiffstats
path: root/libhb/hb.c
diff options
context:
space:
mode:
authorjohnallen <[email protected]>2007-01-08 03:18:40 +0000
committerjohnallen <[email protected]>2007-01-08 03:18:40 +0000
commit18189c197f5d5e04e8e8cd37de0caedb1a469a38 (patch)
treeb0fbfe562fd5d8c371033d316fe455eb89c3eb45 /libhb/hb.c
parentdc22ce2c46ee62a46963d92ccb4a7fc26bd21d26 (diff)
added worker thread sleep throttling.
each of the work object threads now self adjust their sleep interval based on the "fullness" of their fifo. 80% is the choose threshold. Work objects with a fifo fullness of greater than 80% increase their sleep interval. This allows other work object with less than 80% fullness more CPU usage. Also adjusted thread_func, reader, and muxer sleep intervals to more reasonable values. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@98 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r--libhb/hb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/hb.c b/libhb/hb.c
index 28f3245cb..977e3dc71 100644
--- a/libhb/hb.c
+++ b/libhb/hb.c
@@ -98,7 +98,7 @@ hb_handle_t * hb_init_real( int verbose, int update_check )
"update_thread" );
break;
}
- hb_snooze( 50 );
+ hb_snooze( 500 );
}
}
@@ -664,7 +664,7 @@ static void thread_func( void * _h )
hb_unlock( h->state_lock );
}
- hb_snooze( 50 );
+ hb_snooze( 1000 );
}
if( h->work_thread )