From add8269e1774290e30305f615e9f6f53252a5136 Mon Sep 17 00:00:00 2001 From: ttrigui <44172344+ttrigui@users.noreply.github.com> Date: Thu, 4 Jun 2020 11:33:25 -0700 Subject: [PATCH] Unpin thread execution and multi thread buffer tuning (#1275) Add the option of unpinning threads from being executed on cores 0-x when -lp x is defined. Tuning the multi-threaded buffer tuning for better efficiency with low core count when running in a VOD environment. --- subprojects/gst-plugins-bad/ext/svtav1/gstsvtav1enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/svtav1/gstsvtav1enc.c b/subprojects/gst-plugins-bad/ext/svtav1/gstsvtav1enc.c index 7f594da93b..1e67845276 100644 --- a/subprojects/gst-plugins-bad/ext/svtav1/gstsvtav1enc.c +++ b/subprojects/gst-plugins-bad/ext/svtav1/gstsvtav1enc.c @@ -699,7 +699,7 @@ set_default_svt_configuration (EbSvtAv1EncConfiguration * svt_config) // thread affinity svt_config->logical_processors = PROP_CORES_DEFAULT; svt_config->target_socket = PROP_SOCKET_DEFAULT; - svt_config->unpin_lp1 = 1; + svt_config->unpin = 1; // tile based encoding svt_config->tile_columns = 0;