configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
*/
|
|
|
|
|
2007-04-24 09:12:42 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-alphacolor
|
|
|
|
*
|
|
|
|
* The alphacolor element does memory-efficient (in-place) colourspace
|
2010-04-08 10:56:30 +00:00
|
|
|
* conversion from RGBA to AYUV or AYUV to RGBA while preserving the
|
|
|
|
* alpha channel.
|
|
|
|
*
|
|
|
|
* Sample pipeline:
|
|
|
|
* |[
|
2012-08-26 21:39:55 +00:00
|
|
|
* gst-launch-1.0 videotestsrc ! "video/x-raw,format=(fourcc)AYUV" ! \
|
2011-07-04 16:06:48 +00:00
|
|
|
* alphacolor ! videoconvert ! autovideosink
|
2010-04-08 10:56:30 +00:00
|
|
|
* ]|
|
2007-04-24 09:12:42 +00:00
|
|
|
*/
|
|
|
|
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2007-04-24 09:12:42 +00:00
|
|
|
|
|
|
|
#include "gstalphacolor.h"
|
|
|
|
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2006-06-22 19:31:04 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (alpha_color_debug);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
#define GST_CAT_DEFAULT alpha_color_debug
|
|
|
|
|
|
|
|
/* elementfactory information */
|
gst/alpha/gstalphacolor.c: Double-check that RGB input caps are really RGBA caps (apparently the core doesn't always ...
Original commit message from CVS:
* gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
(gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
Double-check that RGB input caps are really RGBA caps (apparently
the core doesn't always catch it if those caps aren't a subset of
our template caps, also see #421543). Fixes #429319 in a way.
Also, don't leak the pad template in the transform_caps function.
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/alphacolor.c: (setup_alphacolor),
(cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
(create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
(GST_START_TEST), (alphacolor_suite):
Add some basic unit tests for alphacolor.
2007-04-25 15:31:53 +00:00
|
|
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-07-04 16:06:48 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("{ RGBA, BGRA, ARGB, ABGR, AYUV }"))
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
);
|
|
|
|
|
gst/alpha/gstalphacolor.c: Double-check that RGB input caps are really RGBA caps (apparently the core doesn't always ...
Original commit message from CVS:
* gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
(gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
Double-check that RGB input caps are really RGBA caps (apparently
the core doesn't always catch it if those caps aren't a subset of
our template caps, also see #421543). Fixes #429319 in a way.
Also, don't leak the pad template in the transform_caps function.
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/alphacolor.c: (setup_alphacolor),
(cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
(create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
(GST_START_TEST), (alphacolor_suite):
Add some basic unit tests for alphacolor.
2007-04-25 15:31:53 +00:00
|
|
|
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-07-04 16:06:48 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("{ RGBA, BGRA, ARGB, ABGR, AYUV }"))
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
);
|
|
|
|
|
2011-04-25 10:49:36 +00:00
|
|
|
G_DEFINE_TYPE (GstAlphaColor, gst_alpha_color, GST_TYPE_VIDEO_FILTER);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
|
|
|
static GstCaps *gst_alpha_color_transform_caps (GstBaseTransform * btrans,
|
2011-06-07 09:20:00 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter);
|
2011-12-21 22:51:03 +00:00
|
|
|
|
|
|
|
static gboolean gst_alpha_color_set_info (GstVideoFilter * filter,
|
|
|
|
GstCaps * incaps, GstVideoInfo * in_info, GstCaps * outcaps,
|
|
|
|
GstVideoInfo * out_info);
|
|
|
|
static GstFlowReturn gst_alpha_color_transform_frame_ip (GstVideoFilter *
|
|
|
|
filter, GstVideoFrame * frame);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
|
|
|
static void
|
2011-04-25 10:49:36 +00:00
|
|
|
gst_alpha_color_class_init (GstAlphaColorClass * klass)
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
{
|
2011-04-25 10:49:36 +00:00
|
|
|
GstElementClass *gstelement_class = (GstElementClass *) klass;
|
|
|
|
GstBaseTransformClass *gstbasetransform_class =
|
|
|
|
(GstBaseTransformClass *) klass;
|
2011-12-21 22:51:03 +00:00
|
|
|
GstVideoFilterClass *gstvideofilter_class = (GstVideoFilterClass *) klass;
|
2011-04-25 10:49:36 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (alpha_color_debug, "alphacolor", 0,
|
|
|
|
"ARGB<->AYUV colorspace conversion preserving the alpha channels");
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2012-04-09 23:51:41 +00:00
|
|
|
gst_element_class_set_static_metadata (gstelement_class, "Alpha color filter",
|
2010-09-02 12:34:50 +00:00
|
|
|
"Filter/Converter/Video",
|
2010-03-15 17:50:11 +00:00
|
|
|
"ARGB from/to AYUV colorspace conversion preserving the alpha channel",
|
2011-07-04 16:06:48 +00:00
|
|
|
"Wim Taymans <wim.taymans@gmail.com>");
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (gstelement_class, &sink_template);
|
|
|
|
gst_element_class_add_static_pad_template (gstelement_class, &src_template);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
|
|
|
gstbasetransform_class->transform_caps =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alpha_color_transform_caps);
|
2012-04-02 09:13:09 +00:00
|
|
|
gstbasetransform_class->transform_ip_on_passthrough = FALSE;
|
2011-12-21 22:51:03 +00:00
|
|
|
|
|
|
|
gstvideofilter_class->set_info = GST_DEBUG_FUNCPTR (gst_alpha_color_set_info);
|
|
|
|
gstvideofilter_class->transform_frame_ip =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alpha_color_transform_frame_ip);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-04-25 10:49:36 +00:00
|
|
|
gst_alpha_color_init (GstAlphaColor * alpha)
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
{
|
2010-03-15 17:07:29 +00:00
|
|
|
GstBaseTransform *btrans = GST_BASE_TRANSFORM (alpha);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2012-03-16 21:52:02 +00:00
|
|
|
gst_base_transform_set_in_place (btrans, TRUE);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_alpha_color_transform_caps (GstBaseTransform * btrans,
|
2011-06-07 09:20:00 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter)
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
{
|
2012-03-10 09:51:44 +00:00
|
|
|
GstCaps *tmpl_caps = NULL;
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
GstCaps *result = NULL, *local_caps = NULL;
|
|
|
|
guint i;
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2010-03-15 17:50:11 +00:00
|
|
|
local_caps = gst_caps_new_empty ();
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
|
2010-03-15 17:50:11 +00:00
|
|
|
for (i = 0; i < gst_caps_get_size (caps); i++) {
|
|
|
|
GstStructure *structure =
|
|
|
|
gst_structure_copy (gst_caps_get_structure (caps, i));
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
|
|
|
|
/* Remove any specific parameter from the structure */
|
|
|
|
gst_structure_remove_field (structure, "format");
|
2012-04-13 14:54:31 +00:00
|
|
|
gst_structure_remove_field (structure, "colorimetry");
|
2010-03-19 15:44:00 +00:00
|
|
|
gst_structure_remove_field (structure, "chroma-site");
|
2010-03-15 17:50:11 +00:00
|
|
|
|
2012-01-04 12:26:45 +00:00
|
|
|
gst_structure_set_name (structure, "video/x-raw");
|
2012-03-29 15:21:43 +00:00
|
|
|
gst_caps_append_structure (local_caps, structure);
|
2005-10-17 17:18:56 +00:00
|
|
|
}
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
/* Get the appropriate template */
|
|
|
|
if (direction == GST_PAD_SINK) {
|
gst/alpha/gstalphacolor.c: Double-check that RGB input caps are really RGBA caps (apparently the core doesn't always ...
Original commit message from CVS:
* gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
(gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
Double-check that RGB input caps are really RGBA caps (apparently
the core doesn't always catch it if those caps aren't a subset of
our template caps, also see #421543). Fixes #429319 in a way.
Also, don't leak the pad template in the transform_caps function.
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/alphacolor.c: (setup_alphacolor),
(cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
(create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
(GST_START_TEST), (alphacolor_suite):
Add some basic unit tests for alphacolor.
2007-04-25 15:31:53 +00:00
|
|
|
tmpl_caps = gst_static_pad_template_get_caps (&src_template);
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
} else if (direction == GST_PAD_SRC) {
|
gst/alpha/gstalphacolor.c: Double-check that RGB input caps are really RGBA caps (apparently the core doesn't always ...
Original commit message from CVS:
* gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
(gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
Double-check that RGB input caps are really RGBA caps (apparently
the core doesn't always catch it if those caps aren't a subset of
our template caps, also see #421543). Fixes #429319 in a way.
Also, don't leak the pad template in the transform_caps function.
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/alphacolor.c: (setup_alphacolor),
(cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
(create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
(GST_START_TEST), (alphacolor_suite):
Add some basic unit tests for alphacolor.
2007-04-25 15:31:53 +00:00
|
|
|
tmpl_caps = gst_static_pad_template_get_caps (&sink_template);
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Intersect with our template caps */
|
gst/alpha/gstalphacolor.c: Double-check that RGB input caps are really RGBA caps (apparently the core doesn't always ...
Original commit message from CVS:
* gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
(gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
Double-check that RGB input caps are really RGBA caps (apparently
the core doesn't always catch it if those caps aren't a subset of
our template caps, also see #421543). Fixes #429319 in a way.
Also, don't leak the pad template in the transform_caps function.
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* tests/check/elements/alphacolor.c: (setup_alphacolor),
(cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
(create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
(GST_START_TEST), (alphacolor_suite):
Add some basic unit tests for alphacolor.
2007-04-25 15:31:53 +00:00
|
|
|
result = gst_caps_intersect (local_caps, tmpl_caps);
|
2012-03-10 09:51:44 +00:00
|
|
|
gst_caps_unref (tmpl_caps);
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
gst_caps_unref (local_caps);
|
2012-03-12 09:43:57 +00:00
|
|
|
|
2012-03-12 10:47:35 +00:00
|
|
|
result = gst_caps_simplify (result);
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
|
2010-03-15 17:07:29 +00:00
|
|
|
GST_LOG_OBJECT (btrans, "transformed %" GST_PTR_FORMAT " to %" GST_PTR_FORMAT,
|
|
|
|
caps, result);
|
ext/libpng/gstpngdec.*: Complete rewrite of pngdec. It's now very nice and handle push/pull based model. if you have ...
Original commit message from CVS:
2005-10-19 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
(gst_pngdec_init), (user_error_fn), (user_warning_fn),
(user_info_callback), (user_endrow_callback),
(user_end_callback),
(user_read_data), (gst_pngdec_caps_create_and_set),
(gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
(gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
(gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
(gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
* ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
very nice and handle push/pull based model. if you have filesrc
connected to it, it will do random access to load the png file.
If you have a network source that can't do _getrange, it does
progressive loading through the chain function.
* gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
(transform_rgb), (transform_bgr): Fix caps negotiation correctly
thanks to Master Wim Taymans ;-)
2005-10-18 22:44:11 +00:00
|
|
|
|
2011-06-07 09:20:00 +00:00
|
|
|
if (filter) {
|
|
|
|
GstCaps *intersection;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (btrans, "Using filter caps %" GST_PTR_FORMAT, filter);
|
|
|
|
intersection =
|
|
|
|
gst_caps_intersect_full (filter, result, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (result);
|
|
|
|
result = intersection;
|
|
|
|
GST_DEBUG_OBJECT (btrans, "Intersection %" GST_PTR_FORMAT, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-03-19 15:44:00 +00:00
|
|
|
/* Generated by -bad/ext/cog/generate_tables */
|
|
|
|
static const int cog_ycbcr_to_rgb_matrix_8bit_hdtv[] = {
|
|
|
|
298, 0, 459, -63514,
|
|
|
|
298, -55, -136, 19681,
|
|
|
|
298, 541, 0, -73988,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int cog_ycbcr_to_rgb_matrix_8bit_sdtv[] = {
|
|
|
|
298, 0, 409, -57068,
|
|
|
|
298, -100, -208, 34707,
|
|
|
|
298, 516, 0, -70870,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const gint cog_rgb_to_ycbcr_matrix_8bit_hdtv[] = {
|
|
|
|
47, 157, 16, 4096,
|
|
|
|
-26, -87, 112, 32768,
|
|
|
|
112, -102, -10, 32768,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const gint cog_rgb_to_ycbcr_matrix_8bit_sdtv[] = {
|
|
|
|
66, 129, 25, 4096,
|
|
|
|
-38, -74, 112, 32768,
|
|
|
|
112, -94, -18, 32768,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const gint cog_ycbcr_sdtv_to_ycbcr_hdtv_matrix_8bit[] = {
|
|
|
|
256, -30, -53, 10600,
|
|
|
|
0, 261, 29, -4367,
|
|
|
|
0, 19, 262, -3289,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const gint cog_ycbcr_hdtv_to_ycbcr_sdtv_matrix_8bit[] = {
|
|
|
|
256, 25, 49, -9536,
|
|
|
|
0, 253, -28, 3958,
|
|
|
|
0, -19, 252, 2918,
|
|
|
|
};
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2010-03-15 18:16:18 +00:00
|
|
|
#define DEFINE_ARGB_AYUV_FUNCTIONS(name, A, R, G, B) \
|
|
|
|
static void \
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_##name##_ayuv (GstVideoFrame * frame, const gint *matrix) \
|
2010-03-15 18:16:18 +00:00
|
|
|
{ \
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data; \
|
|
|
|
gsize size; \
|
2010-03-19 15:44:00 +00:00
|
|
|
gint y, u, v; \
|
|
|
|
gint yc[4]; \
|
|
|
|
gint uc[4]; \
|
|
|
|
gint vc[4]; \
|
|
|
|
\
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);\
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);\
|
|
|
|
\
|
2010-03-19 15:44:00 +00:00
|
|
|
memcpy (yc, matrix, 4 * sizeof (gint)); \
|
|
|
|
memcpy (uc, matrix + 4, 4 * sizeof (gint)); \
|
|
|
|
memcpy (vc, matrix + 8, 4 * sizeof (gint)); \
|
2010-03-15 18:16:18 +00:00
|
|
|
\
|
|
|
|
while (size > 0) { \
|
2010-03-19 15:44:00 +00:00
|
|
|
y = (data[R] * yc[0] + data[G] * yc[1] + data[B] * yc[2] + yc[3]) >> 8; \
|
|
|
|
u = (data[R] * uc[0] + data[G] * uc[1] + data[B] * uc[2] + uc[3]) >> 8; \
|
|
|
|
v = (data[R] * vc[0] + data[G] * vc[1] + data[B] * vc[2] + vc[3]) >> 8; \
|
2010-03-15 18:16:18 +00:00
|
|
|
\
|
|
|
|
data[0] = data[A]; \
|
|
|
|
data[1] = y; \
|
|
|
|
data[2] = u; \
|
|
|
|
data[3] = v; \
|
|
|
|
\
|
|
|
|
data += 4; \
|
|
|
|
size -= 4; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static void \
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_ayuv_##name (GstVideoFrame * frame, const gint *matrix) \
|
2010-03-15 18:16:18 +00:00
|
|
|
{ \
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data; \
|
|
|
|
gsize size; \
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b; \
|
|
|
|
gint rc[4]; \
|
|
|
|
gint gc[4]; \
|
|
|
|
gint bc[4]; \
|
|
|
|
\
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);\
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);\
|
|
|
|
\
|
2010-03-19 15:44:00 +00:00
|
|
|
memcpy (rc, matrix, 4 * sizeof (gint)); \
|
|
|
|
memcpy (gc, matrix + 4, 4 * sizeof (gint)); \
|
|
|
|
memcpy (bc, matrix + 8, 4 * sizeof (gint)); \
|
2010-03-15 18:16:18 +00:00
|
|
|
\
|
|
|
|
while (size > 0) { \
|
2010-03-19 15:44:00 +00:00
|
|
|
r = (data[1] * rc[0] + data[2] * rc[1] + data[3] * rc[2] + rc[3]) >> 8; \
|
|
|
|
g = (data[1] * gc[0] + data[2] * gc[1] + data[3] * gc[2] + gc[3]) >> 8; \
|
|
|
|
b = (data[1] * bc[0] + data[2] * bc[1] + data[3] * bc[2] + bc[3]) >> 8; \
|
2010-03-15 18:16:18 +00:00
|
|
|
\
|
|
|
|
data[A] = data[0]; \
|
2010-03-19 15:44:00 +00:00
|
|
|
data[R] = CLAMP (r, 0, 255); \
|
|
|
|
data[G] = CLAMP (g, 0, 255); \
|
|
|
|
data[B] = CLAMP (b, 0, 255); \
|
2010-03-15 18:16:18 +00:00
|
|
|
\
|
|
|
|
data += 4; \
|
|
|
|
size -= 4; \
|
|
|
|
} \
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
}
|
|
|
|
|
2010-03-16 20:23:11 +00:00
|
|
|
DEFINE_ARGB_AYUV_FUNCTIONS (rgba, 3, 0, 1, 2);
|
2010-03-15 18:16:18 +00:00
|
|
|
DEFINE_ARGB_AYUV_FUNCTIONS (bgra, 3, 2, 1, 0);
|
2010-03-15 19:37:51 +00:00
|
|
|
DEFINE_ARGB_AYUV_FUNCTIONS (argb, 0, 1, 2, 3);
|
|
|
|
DEFINE_ARGB_AYUV_FUNCTIONS (abgr, 0, 3, 2, 1);
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2010-03-15 17:50:11 +00:00
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_ayuv_ayuv (GstVideoFrame * frame, const gint * matrix)
|
2010-03-19 15:44:00 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint y, u, v;
|
|
|
|
gint yc[4];
|
|
|
|
gint uc[4];
|
|
|
|
gint vc[4];
|
|
|
|
|
|
|
|
if (matrix == NULL)
|
|
|
|
return;
|
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-19 15:44:00 +00:00
|
|
|
memcpy (yc, matrix, 4 * sizeof (gint));
|
|
|
|
memcpy (uc, matrix + 4, 4 * sizeof (gint));
|
|
|
|
memcpy (vc, matrix + 8, 4 * sizeof (gint));
|
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
y = (data[1] * yc[0] + data[2] * yc[1] + data[3] * yc[2] + yc[3]) >> 8;
|
|
|
|
u = (data[1] * uc[0] + data[2] * uc[1] + data[3] * uc[2] + uc[3]) >> 8;
|
|
|
|
v = (data[1] * vc[0] + data[2] * vc[1] + data[3] * vc[2] + vc[3]) >> 8;
|
|
|
|
|
|
|
|
data[1] = y;
|
|
|
|
data[2] = u;
|
|
|
|
data[3] = v;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_argb_bgra (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 17:50:11 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 17:50:11 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 17:50:11 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[1];
|
|
|
|
g = data[2];
|
2010-03-15 19:37:51 +00:00
|
|
|
b = data[3];
|
2010-03-15 17:50:11 +00:00
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
data[3] = data[0];
|
|
|
|
data[0] = b;
|
|
|
|
data[1] = g;
|
|
|
|
data[2] = r;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define transform_abgr_rgba transform_argb_bgra
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_argb_abgr (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 19:37:51 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 19:37:51 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[1];
|
|
|
|
g = data[2];
|
|
|
|
b = data[3];
|
|
|
|
|
|
|
|
/* data[0] = data[0]; */
|
|
|
|
data[1] = b;
|
|
|
|
data[2] = g;
|
|
|
|
data[3] = r;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define transform_abgr_argb transform_argb_abgr
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_rgba_bgra (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 19:37:51 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 19:37:51 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[0];
|
|
|
|
g = data[1];
|
|
|
|
b = data[2];
|
|
|
|
|
|
|
|
/* data[3] = data[3] */ ;
|
|
|
|
data[0] = b;
|
2010-03-15 17:50:11 +00:00
|
|
|
data[1] = g;
|
|
|
|
data[2] = r;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
#define transform_bgra_rgba transform_rgba_bgra
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_argb_rgba (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 19:37:51 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 19:37:51 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[1];
|
|
|
|
g = data[2];
|
|
|
|
b = data[3];
|
|
|
|
|
|
|
|
data[3] = data[0];
|
|
|
|
data[0] = r;
|
|
|
|
data[1] = g;
|
|
|
|
data[2] = b;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define transform_abgr_bgra transform_argb_rgba
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_bgra_argb (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 19:37:51 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 19:37:51 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[2];
|
|
|
|
g = data[1];
|
|
|
|
b = data[0];
|
|
|
|
|
|
|
|
data[0] = data[3];
|
|
|
|
data[1] = r;
|
|
|
|
data[2] = g;
|
|
|
|
data[3] = b;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define transform_rgba_abgr transform_bgra_argb
|
|
|
|
|
|
|
|
static void
|
2011-07-04 16:06:48 +00:00
|
|
|
transform_rgba_argb (GstVideoFrame * frame, const gint * matrix)
|
2010-03-15 19:37:51 +00:00
|
|
|
{
|
2011-07-04 16:06:48 +00:00
|
|
|
guint8 *data;
|
|
|
|
gsize size;
|
2010-03-19 15:44:00 +00:00
|
|
|
gint r, g, b;
|
2010-03-15 19:37:51 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
data = GST_VIDEO_FRAME_PLANE_DATA (frame, 0);
|
|
|
|
size = GST_VIDEO_FRAME_SIZE (frame);
|
|
|
|
|
2010-03-15 19:37:51 +00:00
|
|
|
while (size > 0) {
|
|
|
|
r = data[0];
|
|
|
|
g = data[1];
|
|
|
|
b = data[2];
|
|
|
|
|
|
|
|
data[0] = data[3];
|
|
|
|
data[1] = r;
|
|
|
|
data[2] = g;
|
|
|
|
data[3] = b;
|
|
|
|
|
|
|
|
data += 4;
|
|
|
|
size -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define transform_bgra_abgr transform_rgba_argb
|
|
|
|
|
2010-03-19 15:44:00 +00:00
|
|
|
static gboolean
|
2011-12-21 22:51:03 +00:00
|
|
|
gst_alpha_color_set_info (GstVideoFilter * filter, GstCaps * incaps,
|
|
|
|
GstVideoInfo * in_info, GstCaps * outcaps, GstVideoInfo * out_info)
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
{
|
2011-12-21 22:51:03 +00:00
|
|
|
GstAlphaColor *alpha = GST_ALPHA_COLOR (filter);
|
2010-03-19 15:44:00 +00:00
|
|
|
gboolean in_sdtv, out_sdtv;
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
|
|
|
|
2011-12-21 22:51:03 +00:00
|
|
|
if (GST_VIDEO_INFO_WIDTH (in_info) != GST_VIDEO_INFO_WIDTH (out_info) ||
|
|
|
|
GST_VIDEO_INFO_HEIGHT (in_info) != GST_VIDEO_INFO_HEIGHT (out_info))
|
2011-07-04 16:06:48 +00:00
|
|
|
goto invalid_caps;
|
2010-03-19 15:44:00 +00:00
|
|
|
|
2012-04-13 14:54:31 +00:00
|
|
|
in_sdtv = in_info->colorimetry.matrix == GST_VIDEO_COLOR_MATRIX_BT601;
|
|
|
|
out_sdtv = out_info->colorimetry.matrix == GST_VIDEO_COLOR_MATRIX_BT601;
|
2010-03-19 15:44:00 +00:00
|
|
|
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (in_info)) {
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (out_info)) {
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_argb_bgra;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
2010-03-15 19:37:51 +00:00
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_argb_abgr;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_argb_rgba;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_argb_ayuv;
|
|
|
|
alpha->matrix =
|
|
|
|
out_sdtv ? cog_rgb_to_ycbcr_matrix_8bit_sdtv :
|
|
|
|
cog_rgb_to_ycbcr_matrix_8bit_hdtv;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (out_info)) {
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_bgra_argb;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_bgra_abgr;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_bgra_rgba;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_bgra_ayuv;
|
|
|
|
alpha->matrix =
|
|
|
|
out_sdtv ? cog_rgb_to_ycbcr_matrix_8bit_sdtv :
|
|
|
|
cog_rgb_to_ycbcr_matrix_8bit_hdtv;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2010-03-15 19:37:51 +00:00
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (out_info)) {
|
2010-03-15 19:37:51 +00:00
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_abgr_rgba;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_abgr_argb;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_abgr_bgra;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_abgr_ayuv;
|
|
|
|
alpha->matrix =
|
|
|
|
out_sdtv ? cog_rgb_to_ycbcr_matrix_8bit_sdtv :
|
|
|
|
cog_rgb_to_ycbcr_matrix_8bit_hdtv;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (out_info)) {
|
2010-03-15 19:37:51 +00:00
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_rgba_argb;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_rgba_abgr;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_rgba_bgra;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_rgba_ayuv;
|
|
|
|
alpha->matrix =
|
|
|
|
out_sdtv ? cog_rgb_to_ycbcr_matrix_8bit_sdtv :
|
|
|
|
cog_rgb_to_ycbcr_matrix_8bit_hdtv;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2011-12-21 22:51:03 +00:00
|
|
|
switch (GST_VIDEO_INFO_FORMAT (out_info)) {
|
2010-03-15 17:50:11 +00:00
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
2010-03-19 15:44:00 +00:00
|
|
|
if (in_sdtv == out_sdtv) {
|
|
|
|
alpha->process = transform_ayuv_ayuv;
|
|
|
|
alpha->matrix = NULL;
|
|
|
|
} else {
|
|
|
|
alpha->process = transform_ayuv_ayuv;
|
|
|
|
alpha->matrix =
|
|
|
|
out_sdtv ? cog_ycbcr_hdtv_to_ycbcr_sdtv_matrix_8bit :
|
|
|
|
cog_ycbcr_sdtv_to_ycbcr_hdtv_matrix_8bit;
|
|
|
|
}
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_ARGB:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_ayuv_argb;
|
|
|
|
alpha->matrix =
|
|
|
|
in_sdtv ? cog_ycbcr_to_rgb_matrix_8bit_sdtv :
|
|
|
|
cog_ycbcr_to_rgb_matrix_8bit_hdtv;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_BGRA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_ayuv_bgra;
|
|
|
|
alpha->matrix =
|
|
|
|
in_sdtv ? cog_ycbcr_to_rgb_matrix_8bit_sdtv :
|
|
|
|
cog_ycbcr_to_rgb_matrix_8bit_hdtv;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
2010-03-15 19:37:51 +00:00
|
|
|
case GST_VIDEO_FORMAT_ABGR:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_ayuv_abgr;
|
|
|
|
alpha->matrix =
|
|
|
|
in_sdtv ? cog_ycbcr_to_rgb_matrix_8bit_sdtv :
|
|
|
|
cog_ycbcr_to_rgb_matrix_8bit_hdtv;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_RGBA:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = transform_ayuv_rgba;
|
|
|
|
alpha->matrix =
|
|
|
|
in_sdtv ? cog_ycbcr_to_rgb_matrix_8bit_sdtv :
|
|
|
|
cog_ycbcr_to_rgb_matrix_8bit_hdtv;
|
2010-03-15 19:37:51 +00:00
|
|
|
break;
|
2010-03-15 17:50:11 +00:00
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2010-03-19 15:44:00 +00:00
|
|
|
alpha->process = NULL;
|
|
|
|
alpha->matrix = NULL;
|
2010-03-15 17:50:11 +00:00
|
|
|
break;
|
|
|
|
}
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
|
2011-12-21 22:51:03 +00:00
|
|
|
if (GST_VIDEO_INFO_FORMAT (in_info) == GST_VIDEO_INFO_FORMAT (out_info)
|
2011-07-04 16:06:48 +00:00
|
|
|
&& in_sdtv == out_sdtv)
|
2011-12-21 22:51:03 +00:00
|
|
|
gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (filter), TRUE);
|
2010-03-19 15:44:00 +00:00
|
|
|
else if (!alpha->process)
|
2011-07-04 16:06:48 +00:00
|
|
|
goto no_process;
|
2010-03-19 15:44:00 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2011-07-04 16:06:48 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
invalid_caps:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (alpha, "incomplete or invalid caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
no_process:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (alpha, "could not find process function");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-19 15:44:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2011-12-21 22:51:03 +00:00
|
|
|
gst_alpha_color_transform_frame_ip (GstVideoFilter * filter,
|
|
|
|
GstVideoFrame * frame)
|
2010-03-19 15:44:00 +00:00
|
|
|
{
|
2011-12-21 22:51:03 +00:00
|
|
|
GstAlphaColor *alpha = GST_ALPHA_COLOR (filter);
|
2010-03-19 15:44:00 +00:00
|
|
|
|
2011-07-04 16:06:48 +00:00
|
|
|
if (G_UNLIKELY (!alpha->process))
|
|
|
|
goto not_negotiated;
|
2011-03-28 19:05:31 +00:00
|
|
|
|
2010-03-19 15:44:00 +00:00
|
|
|
/* Transform in place */
|
2011-12-21 22:51:03 +00:00
|
|
|
alpha->process (frame, alpha->matrix);
|
2010-03-19 15:44:00 +00:00
|
|
|
|
2010-04-04 22:02:41 +00:00
|
|
|
return GST_FLOW_OK;
|
2011-07-04 16:06:48 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
not_negotiated:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (alpha, "Not negotiated yet");
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
}
|
configure.ac: Adding videomixer.
Original commit message from CVS:
2005-10-17 Julien MOUTTE <julien@moutte.net>
* 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.
2005-10-17 08:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
return gst_element_register (plugin, "alphacolor", GST_RANK_NONE,
|
|
|
|
GST_TYPE_ALPHA_COLOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:36:38 +00:00
|
|
|
alphacolor,
|
2010-03-15 17:50:11 +00:00
|
|
|
"RGBA from/to AYUV colorspace conversion preserving the alpha channel",
|
2005-11-14 02:13:35 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|