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 /gst/dvdspu/gstdvdspu.c | |
parent | 3963204e34e8a1722bdea11e36df72ec94f0afe3 (diff) | |
download | gstreamer-plugins-bad-a9ec4d62a89dd53aa295af02c7d5f57ef936359b.tar.gz |
update for buffer changes
Diffstat (limited to 'gst/dvdspu/gstdvdspu.c')
-rw-r--r-- | gst/dvdspu/gstdvdspu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/dvdspu/gstdvdspu.c b/gst/dvdspu/gstdvdspu.c index 2088581f0..98dcc2fb4 100644 --- a/gst/dvdspu/gstdvdspu.c +++ b/gst/dvdspu/gstdvdspu.c @@ -912,7 +912,7 @@ gst_dvd_spu_subpic_chain (GstPad * pad, GstObject * parent, GstBuffer * buf) if (GST_BUFFER_TIMESTAMP_IS_VALID (buf)) GST_WARNING_OBJECT (dvdspu, "Joining subpicture buffer with timestamp to previous"); - dvdspu->partial_spu = gst_buffer_join (dvdspu->partial_spu, buf); + dvdspu->partial_spu = gst_buffer_append (dvdspu->partial_spu, buf); } else { /* If we don't yet have a buffer, wait for one with a timestamp, * since that will avoid collecting the 2nd half of a partial buf */ |