mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
dvbbasebin: add prop setup code for guint64
Needed since we are now proxying tuning-timeout from dvbsrc.
This commit is contained in:
parent
845d33098a
commit
d564b62ee8
1 changed files with 7 additions and 0 deletions
|
@ -322,6 +322,13 @@ dvb_base_bin_class_init (DvbBaseBinClass * klass)
|
|||
g_param_spec_get_nick (pspec), g_param_spec_get_blurb (pspec),
|
||||
src_pspec->minimum, src_pspec->maximum, src_pspec->default_value,
|
||||
pspec->flags);
|
||||
} else if (param_type == G_TYPE_PARAM_UINT64) {
|
||||
GParamSpecUInt64 *src_pspec = G_PARAM_SPEC_UINT64 (pspec);
|
||||
|
||||
our_pspec = g_param_spec_uint64 (g_param_spec_get_name (pspec),
|
||||
g_param_spec_get_nick (pspec), g_param_spec_get_blurb (pspec),
|
||||
src_pspec->minimum, src_pspec->maximum, src_pspec->default_value,
|
||||
pspec->flags);
|
||||
} else if (param_type == G_TYPE_PARAM_STRING) {
|
||||
GParamSpecString *src_pspec = G_PARAM_SPEC_STRING (pspec);
|
||||
|
||||
|
|
Loading…
Reference in a new issue