mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
systemclock: add a missing G_PARAM_STATIC_STRINGS
This commit is contained in:
parent
80727c1177
commit
a09bd97bc6
1 changed files with 2 additions and 1 deletions
|
@ -142,7 +142,8 @@ gst_system_clock_class_init (GstSystemClockClass * klass)
|
||||||
g_object_class_install_property (gobject_class, PROP_CLOCK_TYPE,
|
g_object_class_install_property (gobject_class, PROP_CLOCK_TYPE,
|
||||||
g_param_spec_enum ("clock-type", "Clock type",
|
g_param_spec_enum ("clock-type", "Clock type",
|
||||||
"The type of underlying clock implementation used",
|
"The type of underlying clock implementation used",
|
||||||
GST_TYPE_CLOCK_TYPE, DEFAULT_CLOCK_TYPE, G_PARAM_READWRITE));
|
GST_TYPE_CLOCK_TYPE, DEFAULT_CLOCK_TYPE,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
gstclock_class->get_internal_time = gst_system_clock_get_internal_time;
|
gstclock_class->get_internal_time = gst_system_clock_get_internal_time;
|
||||||
gstclock_class->get_resolution = gst_system_clock_get_resolution;
|
gstclock_class->get_resolution = gst_system_clock_get_resolution;
|
||||||
|
|
Loading…
Reference in a new issue