From 1aa9f76c496fcaccaa38dbaef329c7d6f76161cc Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Mon, 17 Oct 2005 08:46:30 +0000 Subject: configure.ac: Adding videomixer. Original commit message from CVS: 2005-10-17 Julien MOUTTE * configure.ac: Adding videomixer. * ext/libpng/gstpngdec.c: (gst_pngdec_class_init), (user_read_data), (gst_pngdec_chain): More debugging. * gst/alpha/Makefile.am: Adding alphacolor * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init), (gst_alpha_color_class_init), (gst_alpha_color_init), (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps), (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip), (plugin_init): Ported to 0.9 using in place base tranform. * gst/videomixer/Makefile.am: * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type), (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps), (gst_videomixer_pad_link), (gst_videomixer_pad_unlink), (gst_videomixer_pad_init), (gst_videomixer_class_init), (gst_videomixer_init), (gst_videomixer_getcaps), (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers), (gst_videomixer_update_queues), (gst_videomixer_collected), (gst_videomixer_change_state): Ported to 0.9 using collectpads. --- ext/libpng/gstpngdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/libpng/gstpngdec.c b/ext/libpng/gstpngdec.c index f5b51b97..e0d2270f 100644 --- a/ext/libpng/gstpngdec.c +++ b/ext/libpng/gstpngdec.c @@ -326,7 +326,7 @@ gst_pngdec_chain (GstPad * pad, GstBuffer * buf) gst_buffer_unref (buf); /* Pushing */ - GST_LOG ("pushing our raw RGB frame"); + GST_LOG ("pushing our raw RGB frame of %d bytes", GST_BUFFER_SIZE (out)); ret = gst_pad_push (pngdec->srcpad, out); beach: -- cgit