gst/videomixer/videomixer.c: Also commit the missing gst_object_sync_values().

Original commit message from CVS:
* gst/videomixer/videomixer.c:
Also commit the missing gst_object_sync_values().
This commit is contained in:
Stefan Kost 2008-01-16 20:17:08 +00:00
parent 25a29e6d16
commit 8b570d9fd0
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2008-01-16 Stefan Kost <ensonic@users.sf.net>
* gst/videomixer/videomixer.c:
Also commit the missing gst_object_sync_values().
2008-01-16 Stefan Kost <ensonic@users.sf.net>
* docs/plugins/Makefile.am:

View file

@ -1031,10 +1031,10 @@ gst_videomixer_blend_buffers (GstVideoMixer * mix, GstBuffer * outbuf)
walk = g_slist_next (walk);
if (mixcol->buffer != NULL) {
gst_object_sync_values (G_OBJECT (pad),
GST_BUFFER_TIMESTAMP (mixcol->buffer));
gst_videomixer_blend_ayuv_ayuv (GST_BUFFER_DATA (mixcol->buffer),
pad->xpos, pad->ypos,
pad->in_width, pad->in_height,
pad->alpha,
pad->xpos, pad->ypos, pad->in_width, pad->in_height, pad->alpha,
GST_BUFFER_DATA (outbuf), mix->out_width, mix->out_height);
if (pad == mix->master) {
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (mixcol->buffer);