mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
default value (-1) was out of bound
Original commit message from CVS: default value (-1) was out of bound
This commit is contained in:
parent
b43171e2a4
commit
35c03af85e
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ gst_xvidenc_class_init (GstXvidEncClass * klass)
|
||||||
g_object_class_install_property (gobject_class, ARG_MAXKEYINTERVAL,
|
g_object_class_install_property (gobject_class, ARG_MAXKEYINTERVAL,
|
||||||
g_param_spec_int ("max_key_interval", "Max. Key Interval",
|
g_param_spec_int ("max_key_interval", "Max. Key Interval",
|
||||||
"Maximum number of frames between two keyframes",
|
"Maximum number of frames between two keyframes",
|
||||||
0, G_MAXINT, 0, G_PARAM_READWRITE));
|
-1, G_MAXINT, -1, G_PARAM_READWRITE));
|
||||||
|
|
||||||
g_object_class_install_property (gobject_class, ARG_BUFSIZE,
|
g_object_class_install_property (gobject_class, ARG_BUFSIZE,
|
||||||
g_param_spec_ulong ("buffer_size", "Buffer Size",
|
g_param_spec_ulong ("buffer_size", "Buffer Size",
|
||||||
|
|
Loading…
Reference in a new issue