[Bug 666926] New: Build failure in lame plugin

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Tue Dec 27 14:29:12 PST 2011


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

           Summary: Build failure in lame plugin
    Classification: Platform
           Product: GStreamer
           Version: git
        OS/Version: Windows
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-plugins-ugly
        AssignedTo: gstreamer-bugs at lists.freedesktop.org
        ReportedBy: lrn1986 at gmail.com
         QAContact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---


gstlame.c: In function 'gst_lame_finish_frames':
gstlame.c:1121:7: error: too many arguments for format

The offending lines are:

      GST_DEBUG_OBJECT (lame,
          "unexpected mp3 header with (rate, layer): (%u, %u)",
          rate, version, layer);

The fix is obvious:

      GST_DEBUG_OBJECT (lame,
          "unexpected mp3 header with (rate, version, layer): (%u, %u, %u)",
          rate, version, layer);

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- 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