Searched refs:gmt_offset_min (Results 1 – 3 of 3) sorted by relevance
/third_party/gstreamer/gstreamer/gst/ |
D | gstdatetime.c | 883 gint gmt_offset_hour = -99, gmt_offset_min = -99; in gst_date_time_new_from_iso8601_string() local 986 ret_tz = sscanf (pos, "%d:%d", &gmt_offset_hour, &gmt_offset_min); in gst_date_time_new_from_iso8601_string() 988 ret_tz = sscanf (pos, "%02d%02d", &gmt_offset_hour, &gmt_offset_min); in gst_date_time_new_from_iso8601_string() 995 gmt_offset_min *= -1; in gst_date_time_new_from_iso8601_string() 997 gmt_offset = gmt_offset_hour * 60 + gmt_offset_min; in gst_date_time_new_from_iso8601_string() 1018 g_assert (gmt_offset_min != -99); in gst_date_time_new_from_iso8601_string() 1022 (60 * gmt_offset_hour) + gmt_offset_min); in gst_date_time_new_from_iso8601_string()
|
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstxmlhelper.c | 824 gint gmt_offset_hour = -99, gmt_offset_min = -99; in gst_xml_helper_get_prop_dateTime() local 894 ret_tz = sscanf (pos, "%d:%d", &gmt_offset_hour, &gmt_offset_min); in gst_xml_helper_get_prop_dateTime() 896 ret_tz = sscanf (pos, "%02d%02d", &gmt_offset_hour, &gmt_offset_min); in gst_xml_helper_get_prop_dateTime() 903 gmt_offset_min *= -1; in gst_xml_helper_get_prop_dateTime() 905 gmt_offset = gmt_offset_hour * 60 + gmt_offset_min; in gst_xml_helper_get_prop_dateTime()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | gstxmptag.c | 1555 gint gmt_offset_hour, gmt_offset_min; in gst_value_serialize_xmp() local 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()
|