mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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.
This commit is contained in:
parent
5dfd112521
commit
c3c306b486
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue