summaryrefslogtreecommitdiff
path: root/ext/spc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spc')
-rw-r--r--ext/spc/gstspc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spc/gstspc.c b/ext/spc/gstspc.c
index 916718235..60ad33d3e 100644
--- a/ext/spc/gstspc.c
+++ b/ext/spc/gstspc.c
@@ -179,7 +179,7 @@ gst_spc_dec_chain (GstPad * pad, GstBuffer * buffer)
GstSpcDec *spc = GST_SPC_DEC (gst_pad_get_parent (pad));
if (spc->buf) {
- spc->buf = gst_buffer_join (spc->buf, buffer);
+ spc->buf = gst_buffer_append (spc->buf, buffer);
} else {
spc->buf = buffer;
}