qtdemux: fix stream time conversion
authorThiago Santos <thiagoss@osg.samsung.com>
Fri, 9 Jan 2015 14:40:40 +0000 (11:40 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Fri, 9 Jan 2015 14:40:40 +0000 (11:40 -0300)
Use the right macro to convert to the correct scale or the
segment information will be wrong

https://bugzilla.gnome.org/show_bug.cgi?id=742572

gst/isomp4/qtdemux.c

index 63a4623..cc1c4e7 100644 (file)
@@ -2485,7 +2485,7 @@ check_update_duration (GstQTDemux * qtdemux, GstClockTime duration)
   for (i = 0; i < qtdemux->n_streams; i++) {
     QtDemuxStream *stream = qtdemux->streams[i];
     if (stream) {
-      movdur = QTSTREAMTIME_TO_GSTTIME (stream, duration);
+      movdur = GSTTIME_TO_QTSTREAMTIME (stream, duration);
       if (movdur > stream->duration) {
         GST_DEBUG_OBJECT (qtdemux,
             "Updating stream #%d duration to %" GST_TIME_FORMAT, i,