[Bug 751914] New: dashdemux: wrong segment duration computed by gst_mpd_client_setup_representation

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Fri Jul 3 08:58:58 PDT 2015


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

            Bug ID: 751914
           Summary: dashdemux: wrong segment duration computed by
                    gst_mpd_client_setup_representation
    Classification: Platform
           Product: GStreamer
           Version: git master
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: Normal
         Component: gst-plugins-bad
          Assignee: gstreamer-bugs at lists.freedesktop.org
          Reporter: florin.apostol at oregan.net
        QA Contact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---

similar with https://bugzilla.gnome.org/show_bug.cgi?id=751449:
segment start and duration is not correctly set.

      /* here we should have a single segment for each representation, whose
URL is encoded in the baseURL element */
      if (!gst_mpd_client_add_media_segment (stream, NULL, 1, 0, 0,
              PeriodEnd, PeriodStart, PeriodEnd)) {
        return FALSE;
      }

should be 
      if (!gst_mpd_client_add_media_segment (stream, NULL, 1, 0, 0,
              PeriodEnd - PeriodStart, PeriodStart, PeriodEnd - PeriodStart)) {

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list