]> git.sesse.net Git - x264/commitdiff
Limit autodetection of threads number according to the source height
authorAnton Mitrofanov <BugMaster@narod.ru>
Thu, 16 Jul 2015 21:22:29 +0000 (00:22 +0300)
committerHenrik Gramner <henrik@gramner.com>
Sat, 25 Jul 2015 20:52:54 +0000 (22:52 +0200)
encoder/encoder.c

index 4450d709b9abdcbdad5ecd932f2fba7ce000fb0e..7e946bfdefd221d857b2654fb79cbe8333705a04 100644 (file)
@@ -537,7 +537,13 @@ static int x264_validate_parameters( x264_t *h, int b_open )
     }
 
     if( h->param.i_threads == X264_THREADS_AUTO )
+    {
         h->param.i_threads = x264_cpu_num_processors() * (h->param.b_sliced_threads?2:3)/2;
+        /* Avoid too many threads as they don't improve performance and
+         * complicate VBV. Capped at an arbitrary 2 rows per thread. */
+        int max_threads = X264_MAX( 1, (h->param.i_height+15)/16 / 2 );
+        h->param.i_threads = X264_MIN( h->param.i_threads, max_threads );
+    }
     int max_sliced_threads = X264_MAX( 1, (h->param.i_height+15)/16 / 4 );
     if( h->param.i_threads > 1 )
     {