dvb: src: use correct unit in tuning-timeout prop description
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Wed, 28 Jun 2017 23:17:41 +0000 (16:17 -0700)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Wed, 28 Jun 2017 23:40:50 +0000 (16:40 -0700)
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

index 3226f08..c1fda01 100644 (file)
@@ -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));