summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2012-01-26 18:26:02 +0000
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2012-01-26 18:26:02 +0000
commit4d73fe793adc8b81a64d6accaef0ca020fb40efa (patch)
treeaf36c2d3790075f59348171d1c667aa476cafbd5
parent714e556ef1b82533627a56eca865474831613dd0 (diff)
Revert "qtdemux: fix GstDateTime/GDateTime mixup"
This reverts commit 53261261120b4c008de61691c70e94354b28004a. The GstDateTime->GDateTime change in core was apparently accidental, and is now reverted.
-rw-r--r--gst/isomp4/qtdemux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c
index 0b917b72d..dce6626b6 100644
--- a/gst/isomp4/qtdemux.c
+++ b/gst/isomp4/qtdemux.c
@@ -8825,7 +8825,7 @@ qtdemux_parse_tree (GstQTDemux * qtdemux)
GNode *mvex;
gint64 duration;
guint64 creation_time;
- GDateTime *datetime = NULL;
+ GstDateTime *datetime = NULL;
gint version;
mvhd = qtdemux_tree_get_child_by_type (qtdemux->moov_node, FOURCC_mvhd);
@@ -8859,7 +8859,7 @@ qtdemux_parse_tree (GstQTDemux * qtdemux)
if (now.tv_sec + 24 * 3600 < creation_time) {
GST_DEBUG_OBJECT (qtdemux, "discarding bogus future creation time");
} else {
- datetime = g_date_time_new_from_unix_local (creation_time);
+ datetime = gst_date_time_new_from_unix_epoch_local_time (creation_time);
}
} else {
GST_WARNING_OBJECT (qtdemux, "Can't handle datetimes before 1970 yet, "
@@ -8873,7 +8873,7 @@ qtdemux_parse_tree (GstQTDemux * qtdemux)
/* Use KEEP as explicit tags should have a higher priority than mvhd tag */
gst_tag_list_add (qtdemux->tag_list, GST_TAG_MERGE_KEEP, GST_TAG_DATE_TIME,
datetime, NULL);
- g_date_time_unref (datetime);
+ gst_date_time_unref (datetime);
}
GST_INFO_OBJECT (qtdemux, "timescale: %u", qtdemux->timescale);