[gstreamer-bugs] [Bug 148993] - Gstreamer fails to play Faac created aac file
bugzilla-daemon at bugzilla.gnome.org
bugzilla-daemon at bugzilla.gnome.org
Thu Sep 30 05:45:54 PDT 2004
http://bugzilla.gnome.org/show_bug.cgi?id=148993
GStreamer | gst-plugins | Ver: 0.8.4
------- Additional Comments From sc5 at hermes.usherb.ca 2004-09-30 08:45 -------
Are you sure I need to unref the buffers? Running `gst-launch --trace` doesn't
show me any live buffer at the end and the documentation says that the buffers
are unreffed for join() but not for merge().
GstBuffer *
gst_buffer_join (GstBuffer * buf1, GstBuffer * buf2)
{
GstBuffer *result;
/* we're just a specific case of the more general gst_buffer_span() */
result = gst_buffer_span (buf1, 0, buf2, buf1->size + buf2->size);
gst_buffer_unref (buf1);
gst_buffer_unref (buf2);
return result;
}
------- 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