[Bug 751716] New: dashdemux: %u is not correctly parsed for segment templates

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Tue Jun 30 05:20:23 PDT 2015


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

            Bug ID: 751716
           Summary: dashdemux: %u is not correctly parsed for segment
                    templates
    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: ---

promote_format_to_uint64 function:

  /* After any 0 and alphanumeric values, there must be
   * an d, x or u. Otherwise validation would have failed
   */
  g_assert (p[0] == 'd' || p[0] == 'x' || p[0] != 'u');

should be:
  g_assert (p[0] == 'd' || p[0] == 'x' || p[0] == 'u');

-- 
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