summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-05-26 17:58:18 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-05-26 17:58:18 +0100
commitc3c306b486bc8af660654aae3369635ee9e0556e (patch)
tree69fe82ee88fed4f14480e7aed6afedf1b91f6666
parent5dfd112521a026a323922c2f392095eae2c91ea2 (diff)
x264enc: don't artificially limit max allowed value of "threads" property
In auto mode it will happily chose much higher values anyway, and a limit of 4 seems a bit low these days.
-rw-r--r--ext/x264/gstx264enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c
index c52bf1a8..9b6bbbd6 100644
--- a/ext/x264/gstx264enc.c
+++ b/ext/x264/gstx264enc.c
@@ -763,7 +763,7 @@ gst_x264_enc_class_init (GstX264EncClass * klass)
g_object_class_install_property (gobject_class, ARG_THREADS,
g_param_spec_uint ("threads", "Threads",
"Number of threads used by the codec (0 for automatic)",
- 0, 4, ARG_THREADS_DEFAULT,
+ 0, G_MAXINT, ARG_THREADS_DEFAULT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/* NOTE: this first string append doesn't require the ':' delimiter but the
* rest do */