diff options
author | sr55 <[email protected]> | 2011-02-26 17:22:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-02-26 17:22:36 +0000 |
commit | 0761f1109607f4500722c979bf3d0b021742e862 (patch) | |
tree | 24567f7334c3f507e19a735e0cd63ec9a8e7ba24 /libhb/hb.c | |
parent | 48aebee9e159dd5b8e4e91af0f221d8b00ddbe8f (diff) |
Remove depreciated cpu count from the api
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3813 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 60b0bcc33..46720c138 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -40,8 +40,6 @@ struct hb_handle_s int work_error; hb_thread_t * work_thread; - int cpu_count; - hb_lock_t * state_lock; hb_state_t state; @@ -331,10 +329,6 @@ hb_handle_t * hb_init( int verbose, int update_check ) */ hb_buffer_pool_init(); - /* CPU count detection */ - hb_log( "hb_init: checking cpu count" ); - h->cpu_count = hb_get_cpu_count(); - h->list_title = hb_list_init(); h->jobs = hb_list_init(); @@ -435,10 +429,6 @@ hb_handle_t * hb_init_dl( int verbose, int update_check ) } } - /* CPU count detection */ - hb_log( "hb_init: checking cpu count" ); - h->cpu_count = hb_get_cpu_count(); - h->list_title = hb_list_init(); h->jobs = hb_list_init(); h->current_job = NULL; @@ -1496,8 +1486,7 @@ void hb_start( hb_handle_t * h ) h->paused = 0; h->work_die = 0; - h->work_thread = hb_work_init( h->jobs, h->cpu_count, - &h->work_die, &h->work_error, &h->current_job ); + h->work_thread = hb_work_init( h->jobs, &h->work_die, &h->work_error, &h->current_job ); } /** |