[Bug 676665] New: Cannot do full round-trip with uri property when playbin2 is freshly created

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Wed May 23 10:03:47 PDT 2012


https://bugzilla.gnome.org/show_bug.cgi?id=676665
  GStreamer | gst-plugins-base | 0.10.x

           Summary: Cannot do full round-trip with uri property when
                    playbin2 is freshly created
    Classification: Platform
           Product: GStreamer
           Version: 0.10.x
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gst-plugins-base
        AssignedTo: gstreamer-bugs at lists.freedesktop.org
        ReportedBy: mail at jensge.org
         QAContact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---


#include <gst/gst.h>

int main(int argc, char *argv[])
{
    GstElement *e;
    char *u;

    gst_init (&argc, &argv);

    e = gst_element_factory_make ("playbin2", NULL);

    g_object_set (e, "uri", "http://www.google.de", NULL);
    g_object_get (e, "uri", &u, NULL);

    g_print ("=> U: %s\n", u);
    g_free (u);
}

Output:
=> U: (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