From 8b570d9fd09a7e6319e0304cff42244071174aa9 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 16 Jan 2008 20:17:08 +0000 Subject: 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(). --- gst/videomixer/videomixer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/videomixer') diff --git a/gst/videomixer/videomixer.c b/gst/videomixer/videomixer.c index 74e0d0b0..2d3baa77 100644 --- a/gst/videomixer/videomixer.c +++ b/gst/videomixer/videomixer.c @@ -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); -- cgit