Home
last modified time | relevance | path

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

/third_party/gstreamer/gstreamer/gst/
Dgstdatetime.c775 gfloat gmt_offset; in __gst_date_time_serialize() local
822 gmt_offset = gst_date_time_get_time_zone_offset (datetime); in __gst_date_time_serialize()
823 if (gmt_offset == 0) { in __gst_date_time_serialize()
828 tzhour = (guint) ABS (gmt_offset); in __gst_date_time_serialize()
829 tzminute = (guint) ((ABS (gmt_offset) - tzhour) * 60); in __gst_date_time_serialize()
831 g_string_append_c (s, (gmt_offset >= 0) ? '+' : '-'); in __gst_date_time_serialize()
968 gint gmt_offset = -1; in gst_date_time_new_from_iso8601_string() local
997 gmt_offset = gmt_offset_hour * 60 + gmt_offset_min; in gst_date_time_new_from_iso8601_string()
999 tzoffset = gmt_offset / 60.0; in gst_date_time_new_from_iso8601_string()
1001 GST_LOG ("Timezone offset: %f (%d minutes)", tzoffset, gmt_offset); in gst_date_time_new_from_iso8601_string()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgstxmptag.c1554 gfloat gmt_offset = 0; in gst_value_serialize_xmp() local
1570 gmt_offset = gst_date_time_get_time_zone_offset (datetime); in gst_value_serialize_xmp()
1571 if (gmt_offset == 0) { in gst_value_serialize_xmp()
1576 gmt_offset_hour = ABS (gmt_offset); in gst_value_serialize_xmp()
1577 gmt_offset_min = (ABS (gmt_offset) - gmt_offset_hour) * 60; in gst_value_serialize_xmp()
1581 gmt_offset >= 0 ? '+' : '-', gmt_offset_hour, gmt_offset_min); in gst_value_serialize_xmp()
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstxmlhelper.c876 gint gmt_offset = -1; in gst_xml_helper_get_prop_dateTime() local
905 gmt_offset = gmt_offset_hour * 60 + gmt_offset_min; in gst_xml_helper_get_prop_dateTime()
907 tzoffset = gmt_offset / 60.0; in gst_xml_helper_get_prop_dateTime()
909 GST_LOG ("Timezone offset: %f (%d minutes)", tzoffset, gmt_offset); in gst_xml_helper_get_prop_dateTime()