[gstreamer-bugs] [Bug 600707] New: autoconvert depends on function from core 0.10.26

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Wed Nov 4 09:20:57 PST 2009


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

           Summary: autoconvert depends on function from core 0.10.26
    Classification: Desktop
           Product: GStreamer
           Version: git
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: blocker
          Priority: Normal
         Component: gst-plugins-bad
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: tester at tester.ca
         QAContact: gstreamer-bugs at lists.sourceforge.net
      GNOME target: ---
     GNOME version: ---


autoconvert uses gst_plugin_feature_list_copy() which was added in core after
0.10.25, so it can't be used in -bad until there is a new core release. I guess
you can copy-paste the function in autoconvert for now.

While I'm looking at it, gst_plugin_feature_list_copy() seems overly
complicated.
You can replace it with:

newlist = g_list_copy(oldlist);
g_list_foreach(newlist, (GFunc) g_object_ref, NULL);

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