use _merge instead of _append

Original commit message from CVS:
use _merge instead of _append
This commit is contained in:
Wim Taymans 2002-07-08 19:39:12 +00:00
parent 4866d8a7cb
commit 6d3a854cb1

View file

@ -214,7 +214,7 @@ gst_ac3parse_chain (GstPad *pad, GstBuffer *buf)
/* deal with partial frame from previous buffer */
if (ac3parse->partialbuf) {
ac3parse->partialbuf = gst_buffer_append(ac3parse->partialbuf, buf);;
ac3parse->partialbuf = gst_buffer_merge(ac3parse->partialbuf, buf);;
/* and the one we received.. */
gst_buffer_unref(buf);
}