2002-01-19 15:06:48 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:27:31 +00:00
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-22 23:27:31 +00:00
|
|
|
#include <string.h>
|
2004-07-27 21:51:32 +00:00
|
|
|
#include "gstmedian.h"
|
2003-07-06 20:49:52 +00:00
|
|
|
#include <gst/video/video.h>
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstStaticPadTemplate median_src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
|
|
|
|
);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate median_sink_factory =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
|
|
|
|
);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Median signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:31 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:31 +00:00
|
|
|
ARG_0,
|
|
|
|
ARG_ACTIVE,
|
|
|
|
ARG_FILTERSIZE,
|
|
|
|
ARG_LUM_ONLY
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GType gst_median_get_type (void);
|
|
|
|
static void gst_median_class_init (GstMedianClass * klass);
|
|
|
|
static void gst_median_base_init (GstMedianClass * klass);
|
|
|
|
static void gst_median_init (GstMedian * median);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void median_5 (unsigned char *src, unsigned char *dest, int height,
|
|
|
|
int width);
|
|
|
|
static void median_9 (unsigned char *src, unsigned char *dest, int height,
|
|
|
|
int width);
|
|
|
|
static void gst_median_chain (GstPad * pad, GstData * _data);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_median_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_median_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-01-19 15:06:48 +00:00
|
|
|
/*static guint gst_median_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gst_median_get_type (void)
|
|
|
|
{
|
|
|
|
static GType median_type = 0;
|
|
|
|
|
|
|
|
if (!median_type) {
|
|
|
|
static const GTypeInfo median_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstMedianClass),
|
|
|
|
(GBaseInitFunc) gst_median_base_init,
|
2003-11-02 18:27:30 +00:00
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GClassInitFunc) gst_median_class_init,
|
2001-12-22 23:27:31 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstMedian),
|
2001-12-22 23:27:31 +00:00
|
|
|
0,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GInstanceInitFunc) gst_median_init,
|
2001-12-22 23:27:31 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
median_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstMedian", &median_info, 0);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
return median_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 18:27:30 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_base_init (GstMedianClass * klass)
|
2003-11-02 18:27:30 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_static_pad_template_get (&median_sink_factory));
|
2003-11-02 18:27:30 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_static_pad_template_get (&median_src_factory));
|
2010-03-18 13:31:35 +00:00
|
|
|
gst_element_class_set_details_simple (element_class, "Median effect",
|
|
|
|
"Filter/Effect/Video",
|
|
|
|
"Apply a median filter to an image",
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>");
|
2003-11-02 18:27:30 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_class_init (GstMedianClass * klass)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2006-04-08 21:21:45 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ACTIVE, g_param_spec_boolean ("active", "active", "active", TRUE, G_PARAM_READWRITE)); /* CHECKME */
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FILTERSIZE, g_param_spec_int ("filtersize", "filtersize", "filtersize", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE)); /* CHECKME */
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LUM_ONLY, g_param_spec_boolean ("lum_only", "lum_only", "lum_only", TRUE, G_PARAM_READWRITE)); /* CHECKME */
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_median_set_property;
|
|
|
|
gobject_class->get_property = gst_median_get_property;
|
|
|
|
}
|
|
|
|
|
2002-01-13 22:27:25 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_link (GstPad * pad, const GstCaps * caps)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2004-01-08 12:42:40 +00:00
|
|
|
GstMedian *filter = GST_MEDIAN (gst_pad_get_parent (pad));
|
|
|
|
GstPad *otherpad = (pad == filter->srcpad) ? filter->sinkpad : filter->srcpad;
|
|
|
|
GstStructure *structure = gst_caps_get_structure (caps, 0);
|
|
|
|
gint w, h;
|
|
|
|
GstPadLinkReturn ret;
|
|
|
|
|
|
|
|
gst_structure_get_int (structure, "width", &w);
|
|
|
|
gst_structure_get_int (structure, "height", &h);
|
|
|
|
|
|
|
|
ret = gst_pad_try_set_caps (otherpad, caps);
|
|
|
|
if (GST_PAD_LINK_SUCCESSFUL (ret)) {
|
|
|
|
filter->width = w;
|
|
|
|
filter->height = h;
|
|
|
|
}
|
2002-01-13 22:27:25 +00:00
|
|
|
|
close #333784 unref the result of gst_pad_get_parent() by: Christophe Fergeau.
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
* ext/esd/esdmon.c: (gst_esdmon_get):
* ext/flac/gstflactag.c: (gst_flac_tag_chain):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
(gst_gdk_pixbuf_sink_getcaps):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
(gst_jpegenc_setcaps):
* ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
* ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
(gst_smokeenc_setcaps):
* ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
(gst_mngdec_src_getcaps):
* ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
(gst_mngenc_chain):
* ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
* ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
* ext/speex/gstspeexdec.c: (speex_dec_convert),
(speex_dec_src_event), (speex_dec_chain):
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
(gst_avimux_audsinkconnect), (gst_avimux_handle_event):
* gst/debug/negotiation.c: (gst_negotiation_getcaps),
(gst_negotiation_pad_link), (gst_negotiation_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
(gst_flxdec_chain):
* gst/interleave/deinterleave.c: (deinterleave_sink_link),
(deinterleave_chain):
* gst/law/mulaw-encode.c: (mulawenc_setcaps):
* gst/median/gstmedian.c: (gst_median_link):
* gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
(gst_monoscope_chain):
* gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
* gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
* sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
* sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
close #333784 unref the result of gst_pad_get_parent()
by: Christophe Fergeau.
2006-03-13 15:49:08 +00:00
|
|
|
gst_object_unref (filter);
|
|
|
|
|
2004-01-08 12:42:40 +00:00
|
|
|
return ret;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
void
|
|
|
|
gst_median_init (GstMedian * median)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
median->sinkpad =
|
2007-06-22 10:12:15 +00:00
|
|
|
gst_pad_new_from_static_template (&media_sink_factory, "sink");
|
2004-01-08 12:42:40 +00:00
|
|
|
gst_pad_set_getcaps_function (median->sinkpad, gst_pad_proxy_getcaps);
|
|
|
|
gst_pad_set_link_function (median->sinkpad, gst_median_link);
|
2001-12-22 23:27:31 +00:00
|
|
|
gst_pad_set_chain_function (median->sinkpad, gst_median_chain);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (median), median->sinkpad);
|
|
|
|
|
2007-06-22 10:12:15 +00:00
|
|
|
median->srcpad = gst_pad_new_from_static_template (&media_src_factory, "src");
|
2004-01-08 12:42:40 +00:00
|
|
|
gst_pad_set_getcaps_function (median->srcpad, gst_pad_proxy_getcaps);
|
|
|
|
gst_pad_set_link_function (median->sinkpad, gst_median_link);
|
2001-12-22 23:27:31 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (median), median->srcpad);
|
|
|
|
|
|
|
|
median->filtersize = 5;
|
|
|
|
median->lum_only = TRUE;
|
|
|
|
median->active = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PIX_SORT(a,b) { if ((a)>(b)) PIX_SWAP((a),(b)); }
|
|
|
|
#define PIX_SWAP(a,b) { unsigned char temp=(a);(a)=(b);(b)=temp; }
|
|
|
|
|
|
|
|
static void
|
|
|
|
median_5 (unsigned char *src, unsigned char *dest, int width, int height)
|
|
|
|
{
|
|
|
|
int nLastRow;
|
|
|
|
int nLastCol;
|
|
|
|
unsigned char p[9];
|
|
|
|
int i, j, k;
|
|
|
|
|
|
|
|
nLastCol = width - 1;
|
|
|
|
nLastRow = height - 1;
|
|
|
|
|
2002-01-19 15:06:48 +00:00
|
|
|
/*copy the top and bottom rows into the result array */
|
2004-03-14 22:34:33 +00:00
|
|
|
for (i = 0; i < width; i++) {
|
2001-12-22 23:27:31 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
dest[nLastRow * width + i] = src[nLastRow * width + i];
|
|
|
|
}
|
|
|
|
dest[i] = src[i];
|
|
|
|
|
|
|
|
nLastCol--;
|
|
|
|
nLastRow--;
|
|
|
|
|
|
|
|
/* process the interior pixels */
|
|
|
|
i = width + 1;
|
2004-03-14 22:34:33 +00:00
|
|
|
for (k = 0; k < nLastRow; k++) {
|
|
|
|
for (j = 0; j < nLastCol; j++, i++) {
|
|
|
|
p[0] = src[i - width];
|
|
|
|
p[1] = src[i - 1];
|
2001-12-22 23:27:31 +00:00
|
|
|
p[2] = src[i];
|
2004-03-14 22:34:33 +00:00
|
|
|
p[3] = src[i + 1];
|
|
|
|
p[4] = src[i + width];
|
|
|
|
PIX_SORT (p[0], p[1]);
|
|
|
|
PIX_SORT (p[3], p[4]);
|
|
|
|
PIX_SORT (p[0], p[3]);
|
|
|
|
PIX_SORT (p[1], p[4]);
|
|
|
|
PIX_SORT (p[1], p[2]);
|
|
|
|
PIX_SORT (p[2], p[3]);
|
|
|
|
PIX_SORT (p[1], p[2]);
|
2001-12-22 23:27:31 +00:00
|
|
|
dest[i] = p[2];
|
|
|
|
}
|
2002-04-06 03:40:14 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
2002-04-06 03:40:14 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
median_9 (unsigned char *src, unsigned char *dest, int width, int height)
|
|
|
|
{
|
|
|
|
int nLastRow;
|
|
|
|
int nLastCol;
|
|
|
|
unsigned char p[9];
|
|
|
|
int i, j, k;
|
|
|
|
|
|
|
|
nLastCol = width - 1;
|
|
|
|
nLastRow = height - 1;
|
|
|
|
|
2002-01-19 15:06:48 +00:00
|
|
|
/*copy the top and bottom rows into the result array */
|
2004-03-14 22:34:33 +00:00
|
|
|
for (i = 0; i < width; i++) {
|
2001-12-22 23:27:31 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
dest[nLastRow * width + i] = src[nLastRow * width + i];
|
|
|
|
}
|
|
|
|
dest[i] = src[i];
|
|
|
|
|
|
|
|
nLastCol--;
|
|
|
|
nLastRow--;
|
|
|
|
|
|
|
|
/* process the interior pixels */
|
|
|
|
i = width + 1;
|
2004-03-14 22:34:33 +00:00
|
|
|
for (k = 0; k < nLastRow; k++) {
|
|
|
|
for (j = 0; j < nLastCol; j++, i++) {
|
|
|
|
p[0] = src[i - width - 1];
|
|
|
|
p[1] = src[i - width];
|
|
|
|
p[2] = src[i - width + 1];
|
|
|
|
p[3] = src[i - 1];
|
2001-12-22 23:27:31 +00:00
|
|
|
p[4] = src[i];
|
2004-03-14 22:34:33 +00:00
|
|
|
p[5] = src[i + 1];
|
|
|
|
p[6] = src[i + width - 1];
|
|
|
|
p[7] = src[i + width];
|
|
|
|
p[8] = src[i + width + 1];
|
|
|
|
PIX_SORT (p[1], p[2]);
|
|
|
|
PIX_SORT (p[4], p[5]);
|
|
|
|
PIX_SORT (p[7], p[8]);
|
|
|
|
PIX_SORT (p[0], p[1]);
|
|
|
|
PIX_SORT (p[3], p[4]);
|
|
|
|
PIX_SORT (p[6], p[7]);
|
|
|
|
PIX_SORT (p[1], p[2]);
|
|
|
|
PIX_SORT (p[4], p[5]);
|
|
|
|
PIX_SORT (p[7], p[8]);
|
|
|
|
PIX_SORT (p[0], p[3]);
|
|
|
|
PIX_SORT (p[5], p[8]);
|
|
|
|
PIX_SORT (p[4], p[7]);
|
|
|
|
PIX_SORT (p[3], p[6]);
|
|
|
|
PIX_SORT (p[1], p[4]);
|
|
|
|
PIX_SORT (p[2], p[5]);
|
|
|
|
PIX_SORT (p[4], p[7]);
|
|
|
|
PIX_SORT (p[4], p[2]);
|
|
|
|
PIX_SORT (p[6], p[4]);
|
|
|
|
PIX_SORT (p[4], p[2]);
|
2001-12-22 23:27:31 +00:00
|
|
|
dest[i] = p[4];
|
|
|
|
}
|
2002-04-06 03:40:14 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
2002-04-06 03:40:14 +00:00
|
|
|
dest[i] = src[i];
|
|
|
|
i++;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_chain (GstPad * pad, GstData * _data)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-12-22 23:27:31 +00:00
|
|
|
GstMedian *median;
|
|
|
|
guchar *data;
|
|
|
|
gulong size;
|
|
|
|
GstBuffer *outbuf;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-01-19 15:06:48 +00:00
|
|
|
/* GstMeta *meta; */
|
2001-12-22 23:27:31 +00:00
|
|
|
int lumsize, chromsize;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
median = GST_MEDIAN (GST_OBJECT_PARENT (pad));
|
|
|
|
|
|
|
|
if (!median->active) {
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pad_push (median->srcpad, GST_DATA (buf));
|
2001-12-22 23:27:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
data = GST_BUFFER_DATA (buf);
|
|
|
|
size = GST_BUFFER_SIZE (buf);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("median: have buffer of %d", GST_BUFFER_SIZE (buf));
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
outbuf = gst_buffer_new ();
|
|
|
|
GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (buf));
|
|
|
|
GST_BUFFER_SIZE (outbuf) = GST_BUFFER_SIZE (buf);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
lumsize = median->width * median->height;
|
2004-03-14 22:34:33 +00:00
|
|
|
chromsize = lumsize / 4;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
if (median->filtersize == 5) {
|
2004-03-14 22:34:33 +00:00
|
|
|
median_5 (data, GST_BUFFER_DATA (outbuf), median->width, median->height);
|
2001-12-22 23:27:31 +00:00
|
|
|
if (!median->lum_only) {
|
2004-03-14 22:34:33 +00:00
|
|
|
median_5 (data + lumsize, GST_BUFFER_DATA (outbuf) + lumsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
median->width / 2, median->height / 2);
|
2004-03-14 22:34:33 +00:00
|
|
|
median_5 (data + lumsize + chromsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_BUFFER_DATA (outbuf) + lumsize + chromsize, median->width / 2,
|
|
|
|
median->height / 2);
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf) + lumsize, data + lumsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
chromsize * 2);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
|
|
|
median_9 (data, GST_BUFFER_DATA (outbuf), median->width, median->height);
|
2001-12-22 23:27:31 +00:00
|
|
|
if (!median->lum_only) {
|
2004-03-14 22:34:33 +00:00
|
|
|
median_9 (data + lumsize, GST_BUFFER_DATA (outbuf) + lumsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
median->width / 2, median->height / 2);
|
2004-03-14 22:34:33 +00:00
|
|
|
median_9 (data + lumsize + chromsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_BUFFER_DATA (outbuf) + lumsize + chromsize, median->width / 2,
|
|
|
|
median->height / 2);
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf) + lumsize, data + lumsize,
|
2004-03-15 19:32:27 +00:00
|
|
|
chromsize * 2);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_buffer_unref (buf);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pad_push (median->srcpad, GST_DATA (outbuf));
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
|
|
|
GstMedian *median;
|
|
|
|
gint argvalue;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (GST_IS_MEDIAN (object));
|
|
|
|
median = GST_MEDIAN (object);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_FILTERSIZE:
|
|
|
|
argvalue = g_value_get_int (value);
|
|
|
|
if (argvalue != 5 && argvalue != 9) {
|
2004-03-15 19:32:27 +00:00
|
|
|
g_warning ("median: invalid filtersize (%d), must be 5 or 9\n",
|
|
|
|
argvalue);
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
2004-03-15 19:32:27 +00:00
|
|
|
median->filtersize = argvalue;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ARG_ACTIVE:
|
|
|
|
median->active = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_LUM_ONLY:
|
|
|
|
median->lum_only = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_median_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
|
|
|
GstMedian *median;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (GST_IS_MEDIAN (object));
|
|
|
|
median = GST_MEDIAN (object);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_FILTERSIZE:
|
|
|
|
g_value_set_int (value, median->filtersize);
|
|
|
|
break;
|
|
|
|
case ARG_ACTIVE:
|
|
|
|
g_value_set_boolean (value, median->active);
|
|
|
|
break;
|
|
|
|
case ARG_LUM_ONLY:
|
|
|
|
g_value_set_boolean (value, median->lum_only);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2003-11-02 18:27:30 +00:00
|
|
|
return gst_element_register (plugin, "median",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_MEDIAN);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"median",
|
|
|
|
"Video median filter",
|
2005-11-14 02:13:35 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|