From 2d511343cb50fac090dd437eda1a7ca91ade99ee Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Wed, 28 Jun 2017 16:17:41 -0700 Subject: [PATCH] dvb: src: use correct unit in tuning-timeout prop description Milliseconds was wrong and made use of this timeout quite confusing. The code uses the value as microsenconds so any meaningful number was off by orders of magnitude. --- sys/dvb/gstdvbsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c index 3226f08..c1fda01 100644 --- a/sys/dvb/gstdvbsrc.c +++ b/sys/dvb/gstdvbsrc.c @@ -770,7 +770,7 @@ gst_dvbsrc_class_init (GstDvbSrcClass * klass) g_object_class_install_property (gobject_class, ARG_DVBSRC_TUNING_TIMEOUT, g_param_spec_uint64 ("tuning-timeout", "Tuning Timeout", - "Milliseconds to wait before giving up tuning/locking on a signal", + "Microseconds to wait before giving up tuning/locking on a signal", 0, G_MAXUINT64, DEFAULT_TUNING_TIMEOUT, GST_PARAM_MUTABLE_PLAYING | G_PARAM_READWRITE)); -- 2.7.4