summaryrefslogtreecommitdiff
path: root/gst/inter
diff options
context:
space:
mode:
authorArun Raghavan <arun@centricular.com>2015-01-21 23:37:10 +0530
committerArun Raghavan <git@arunraghavan.net>2015-01-22 11:07:50 +0530
commitec7f05dd9cbff173d4898c242be12a5b47a27eda (patch)
tree0f537ae6a659664f73a279599b6d5d5b0ca9e9f8 /gst/inter
parent561cab9003ac6158972ede77fe4ebb08787f2191 (diff)
intervideosrc: Fix max value of the timeout property
Reported by: Patrik Oldsberg <patrik.oldsberg@ericsson.com>
Diffstat (limited to 'gst/inter')
-rw-r--r--gst/inter/gstintervideosrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/inter/gstintervideosrc.c b/gst/inter/gstintervideosrc.c
index 1c032ccbf..3c49c10a4 100644
--- a/gst/inter/gstintervideosrc.c
+++ b/gst/inter/gstintervideosrc.c
@@ -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));
}