summaryrefslogtreecommitdiff
path: root/ext/aom
diff options
context:
space:
mode:
authorWonchul Lee <chul0812@gmail.com>2019-09-06 22:21:50 +0900
committerSebastian Dröge <slomo@coaxion.net>2019-09-06 13:41:35 +0000
commitfbcbf36fe3513679981db47663c6522bdffaf9eb (patch)
treefeaad462274d36f1db08bf2f29e549730a1deaed /ext/aom
parentc881e0a505d392d233e46660271cc50e3656bf57 (diff)
downloadgstreamer-plugins-bad-fbcbf36fe3513679981db47663c6522bdffaf9eb.tar.gz
av1enc: change cpu-used range upto 5
The speed 6, 7 and 8 has been removed because it's not yet tuned correctly. https://aomedia.googlesource.com/aom/+/7ffbf92030baf6886c2486574cca16d60499bbb8
Diffstat (limited to 'ext/aom')
-rw-r--r--ext/aom/gstav1enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/aom/gstav1enc.c b/ext/aom/gstav1enc.c
index 38c732462..d192baaea 100644
--- a/ext/aom/gstav1enc.c
+++ b/ext/aom/gstav1enc.c
@@ -253,7 +253,7 @@ gst_av1_enc_class_init (GstAV1EncClass * klass)
g_object_class_install_property (gobject_class, PROP_CPU_USED,
g_param_spec_int ("cpu-used", "CPU Used",
"CPU Used. A Value greater than 0 will increase encoder speed at the expense of quality.",
- 0, 8, DEFAULT_CPU_USED, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ 0, 5, DEFAULT_CPU_USED, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
/* Rate control configurations */
g_object_class_install_property (gobject_class, PROP_DROP_FRAME,