summaryrefslogtreecommitdiffstats
path: root/libhb/hb.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/hb.c')
-rw-r--r--libhb/hb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb.c b/libhb/hb.c
index 49f1cb9e6..3d669f2b2 100644
--- a/libhb/hb.c
+++ b/libhb/hb.c
@@ -532,7 +532,7 @@ int hb_check_update( hb_handle_t * h, char ** version )
void hb_set_cpu_count( hb_handle_t * h, int cpu_count )
{
cpu_count = MAX( 1, cpu_count );
- cpu_count = MIN( cpu_count, 8 );
+ cpu_count = MIN( cpu_count, 64 );
h->cpu_count = cpu_count;
}