No subject


Wed Feb 9 06:48:29 PST 2011


Buffersink is a sink that stores a stream to a GstBuffer.  Buffersrc
is a source that uses as the source a GstBuffer.  These are meant to
be used together.  Typically you'd use them with something like:

  GstBuffer *buf;
  GstCaps *caps;
  GstElement *bufsink, *bufsrc;

...     // Run a pipeline that uses bufsink as a sink

  g_object_get (bufsink, "buffer", &buf, NULL);
  g_object_set (bufsrc, "buffer", buf, NULL);
  g_object_get (bufsink, "caps", &caps, NULL);
  g_object_set (bufsrc, "caps", caps, NULL);

  gst_element_link (bufsrc, sink);

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




More information about the gstreamer-bugs mailing list