mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
tools: fix printing of partial dates in gst-launch
This commit is contained in:
parent
04142a9653
commit
f938cf9257
1 changed files with 2 additions and 3 deletions
|
@ -412,9 +412,8 @@ print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
|
|||
GstDateTime *dt = NULL;
|
||||
|
||||
gst_tag_list_get_date_time_index (list, tag, i, &dt);
|
||||
if (gst_date_time_get_hour (dt) < 0) {
|
||||
str = g_strdup_printf ("%02u-%02u-%04u", gst_date_time_get_day (dt),
|
||||
gst_date_time_get_month (dt), gst_date_time_get_year (dt));
|
||||
if (!gst_date_time_has_time (dt)) {
|
||||
str = gst_date_time_to_iso8601_string (dt);
|
||||
} else {
|
||||
gdouble tz_offset = gst_date_time_get_time_zone_offset (dt);
|
||||
gchar tz_str[32];
|
||||
|
|
Loading…
Reference in a new issue