From 6d3a854cb147a36751a7c3e984ffefdba4076367 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 8 Jul 2002 19:39:12 +0000 Subject: [PATCH] use _merge instead of _append Original commit message from CVS: use _merge instead of _append --- gst/ac3parse/gstac3parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/ac3parse/gstac3parse.c b/gst/ac3parse/gstac3parse.c index 3bf40b48dd..4ff4fbd02b 100644 --- a/gst/ac3parse/gstac3parse.c +++ b/gst/ac3parse/gstac3parse.c @@ -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); }