diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-28 12:49:54 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-03-28 12:53:09 +0200 |
commit | a9ec4d62a89dd53aa295af02c7d5f57ef936359b (patch) | |
tree | 6a11de050ed6d983485a13519738289bb9231aa1 /ext/spc | |
parent | 3963204e34e8a1722bdea11e36df72ec94f0afe3 (diff) | |
download | gstreamer-plugins-bad-a9ec4d62a89dd53aa295af02c7d5f57ef936359b.tar.gz |
update for buffer changes
Diffstat (limited to 'ext/spc')
-rw-r--r-- | ext/spc/gstspc.c | 2 |
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; } |