[gstreamer-bugs] [Bug 345830] [qtdemux] better edit lists handling

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Fri Feb 12 20:16:35 PST 2010


https://bugzilla.gnome.org/show_bug.cgi?id=345830
  GStreamer | gst-plugins-good | git

--- Comment #10 from Thiago Sousa Santos <thiago.sousa.santos at collabora.co.uk> 2010-02-13 04:16:25 UTC ---
These checks in the segment activation function where preventing the new
segment event from being pushed. Removing these checks makes the second sample
play in sync.

But now I need to understand why they were there in the first place. The first
one is still out of sync.


==
   if (G_UNLIKELY (offset < segment->time)) {
     GST_WARNING_OBJECT (qtdemux, "offset < segment->time %" G_GUINT64_FORMAT,
         segment->time);
     return FALSE;
   }

   /* segment lies beyond total indicated duration */
   if (G_UNLIKELY (segment->duration != -1 && segment->time >
segment->duration)
     GST_WARNING_OBJECT (qtdemux, "segment->duration %" G_GUINT64_FORMAT
         " < segment->time %" G_GUINT64_FORMAT, segment->duration,
         segment->time);
     return FALSE;
   }
==

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.




More information about the Gstreamer-bugs mailing list