mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
intervideosrc: Fix max value of the timeout property
Reported by: Patrik Oldsberg <patrik.oldsberg@ericsson.com>
This commit is contained in:
parent
561cab9003
commit
ec7f05dd9c
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ gst_inter_video_src_class_init (GstInterVideoSrcClass * klass)
|
|||
g_object_class_install_property (gobject_class, PROP_TIMEOUT,
|
||||
g_param_spec_uint64 ("timeout", "Timeout",
|
||||
"Timeout after which to start outputting black frames",
|
||||
0, G_MAXUINT, DEFAULT_TIMEOUT,
|
||||
0, G_MAXUINT64, DEFAULT_TIMEOUT,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue