Home
last modified time | relevance | path

Searched refs:clock_gvalue (Results 1 – 1 of 1) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstmessage.c1606 const GValue *clock_gvalue; in gst_message_parse_clock_provide() local
1613 clock_gvalue = gst_structure_id_get_value (structure, GST_QUARK (CLOCK)); in gst_message_parse_clock_provide()
1614 g_return_if_fail (clock_gvalue != NULL); in gst_message_parse_clock_provide()
1615 g_return_if_fail (G_VALUE_TYPE (clock_gvalue) == GST_TYPE_CLOCK); in gst_message_parse_clock_provide()
1622 *clock = (GstClock *) g_value_get_object (clock_gvalue); in gst_message_parse_clock_provide()
1638 const GValue *clock_gvalue; in gst_message_parse_clock_lost() local
1645 clock_gvalue = gst_structure_id_get_value (structure, GST_QUARK (CLOCK)); in gst_message_parse_clock_lost()
1646 g_return_if_fail (clock_gvalue != NULL); in gst_message_parse_clock_lost()
1647 g_return_if_fail (G_VALUE_TYPE (clock_gvalue) == GST_TYPE_CLOCK); in gst_message_parse_clock_lost()
1650 *clock = (GstClock *) g_value_get_object (clock_gvalue); in gst_message_parse_clock_lost()
[all …]