2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:27:17 +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:17 +00:00
|
|
|
#include <gstvideoscale.h>
|
2003-04-22 07:32:50 +00:00
|
|
|
#include <videoscale.h>
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
|
2004-02-25 17:37:26 +00:00
|
|
|
/* debug variable definition */
|
|
|
|
GST_DEBUG_CATEGORY (videoscale_debug);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
/* elementfactory information */
|
2004-03-14 22:34:34 +00:00
|
|
|
static GstElementDetails videoscale_details =
|
|
|
|
GST_ELEMENT_DETAILS ("Video scaler",
|
|
|
|
"Filter/Effect/Video",
|
|
|
|
"Resizes video",
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>");
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
/* GstVideoscale signals and args */
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:17 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:17 +00:00
|
|
|
ARG_0,
|
2004-05-21 22:39:30 +00:00
|
|
|
ARG_METHOD
|
|
|
|
/* FILL ME */
|
2001-12-22 23:27:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GST_TYPE_VIDEOSCALE_METHOD (gst_videoscale_method_get_type())
|
|
|
|
static GType
|
|
|
|
gst_videoscale_method_get_type (void)
|
|
|
|
{
|
|
|
|
static GType videoscale_method_type = 0;
|
|
|
|
static GEnumValue videoscale_methods[] = {
|
2004-03-14 22:34:34 +00:00
|
|
|
{GST_VIDEOSCALE_POINT_SAMPLE, "0", "Point Sample"},
|
|
|
|
{GST_VIDEOSCALE_NEAREST, "1", "Nearest"},
|
|
|
|
{GST_VIDEOSCALE_BILINEAR, "2", "Bilinear"},
|
|
|
|
{GST_VIDEOSCALE_BICUBIC, "3", "Bicubic"},
|
|
|
|
{0, NULL, NULL},
|
2001-12-22 23:27:17 +00:00
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
if (!videoscale_method_type) {
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale_method_type =
|
2004-03-15 19:32:28 +00:00
|
|
|
g_enum_register_static ("GstVideoscaleMethod", videoscale_methods);
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
return videoscale_method_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
static GstCaps *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_get_capslist (void)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2003-11-02 20:48:33 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
int i;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
|
|
|
for (i = 0; i < videoscale_n_formats; i++) {
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_caps_append_structure (caps,
|
2004-03-15 19:32:28 +00:00
|
|
|
videoscale_get_structure (videoscale_formats + i));
|
2003-11-02 20:48:33 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
return caps;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2003-04-22 07:32:50 +00:00
|
|
|
static GstPadTemplate *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_src_template_factory (void)
|
2003-04-22 07:32:50 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
return gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_get_capslist ());
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadTemplate *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_sink_template_factory (void)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
return gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_get_capslist ());
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
static void gst_videoscale_base_init (gpointer g_class);
|
|
|
|
static void gst_videoscale_class_init (GstVideoscaleClass * klass);
|
|
|
|
static void gst_videoscale_init (GstVideoscale * videoscale);
|
|
|
|
static gboolean gst_videoscale_handle_src_event (GstPad * pad,
|
|
|
|
GstEvent * event);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
static void gst_videoscale_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_videoscale_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
static void gst_videoscale_chain (GstPad * pad, GstData * _data);
|
|
|
|
static GstCaps *gst_videoscale_get_capslist (void);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
/*static guint gst_videoscale_signals[LAST_SIGNAL] = { 0 }; */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_videoscale_get_type (void)
|
2003-04-22 07:32:50 +00:00
|
|
|
{
|
2003-11-02 20:48:33 +00:00
|
|
|
static GType videoscale_type = 0;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
if (!videoscale_type) {
|
|
|
|
static const GTypeInfo videoscale_info = {
|
2004-03-14 22:34:34 +00:00
|
|
|
sizeof (GstVideoscaleClass),
|
2003-11-02 20:48:33 +00:00
|
|
|
gst_videoscale_base_init,
|
|
|
|
NULL,
|
2004-03-14 22:34:34 +00:00
|
|
|
(GClassInitFunc) gst_videoscale_class_init,
|
2003-11-02 20:48:33 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:34 +00:00
|
|
|
sizeof (GstVideoscale),
|
2003-11-02 20:48:33 +00:00
|
|
|
0,
|
2004-03-14 22:34:34 +00:00
|
|
|
(GInstanceInitFunc) gst_videoscale_init,
|
2003-11-02 20:48:33 +00:00
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale_type =
|
2004-03-15 19:32:28 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstVideoscale",
|
|
|
|
&videoscale_info, 0);
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
2003-11-02 20:48:33 +00:00
|
|
|
return videoscale_type;
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
static void
|
|
|
|
gst_videoscale_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &videoscale_details);
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_videoscale_sink_template_factory ());
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_videoscale_src_template_factory ());
|
2003-11-02 20:48:33 +00:00
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_class_init (GstVideoscaleClass * klass)
|
2003-11-02 20:48:33 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-15 19:32:28 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_METHOD, g_param_spec_enum ("method", "method", "method", GST_TYPE_VIDEOSCALE_METHOD, 0, G_PARAM_READWRITE)); /* CHECKME! */
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_videoscale_set_property;
|
|
|
|
gobject_class->get_property = gst_videoscale_get_property;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2003-04-22 07:32:50 +00:00
|
|
|
static GstCaps *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_getcaps (GstPad * pad)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2003-04-22 07:32:50 +00:00
|
|
|
GstVideoscale *videoscale;
|
2003-12-31 08:02:04 +00:00
|
|
|
GstCaps *othercaps;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 05:35:31 +00:00
|
|
|
GstPad *otherpad;
|
2003-12-22 01:47:09 +00:00
|
|
|
int i;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-11-11 05:35:31 +00:00
|
|
|
GST_DEBUG ("gst_videoscale_getcaps");
|
2003-04-22 07:32:50 +00:00
|
|
|
videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad));
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
otherpad = (pad == videoscale->srcpad) ? videoscale->sinkpad :
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale->srcpad;
|
2003-12-31 08:02:04 +00:00
|
|
|
othercaps = gst_pad_get_allowed_caps (otherpad);
|
2003-11-11 05:35:31 +00:00
|
|
|
|
2004-02-25 17:37:26 +00:00
|
|
|
GST_DEBUG ("othercaps are: %" GST_PTR_FORMAT, othercaps);
|
2003-11-11 05:35:31 +00:00
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
caps = gst_caps_copy (othercaps);
|
2004-03-14 22:34:34 +00:00
|
|
|
for (i = 0; i < gst_caps_get_size (caps); i++) {
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure = gst_caps_get_structure (caps, i);
|
|
|
|
|
|
|
|
gst_structure_set (structure,
|
2004-03-15 19:32:28 +00:00
|
|
|
"width", GST_TYPE_INT_RANGE, 16, G_MAXINT,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 16, G_MAXINT, NULL);
|
2003-12-22 01:47:09 +00:00
|
|
|
}
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2004-02-25 17:37:26 +00:00
|
|
|
GST_DEBUG ("returning caps: %" GST_PTR_FORMAT, caps);
|
2003-11-11 05:35:31 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
return caps;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_link (GstPad * pad, const GstCaps * caps)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
|
|
|
GstVideoscale *videoscale;
|
2003-04-22 07:32:50 +00:00
|
|
|
GstPadLinkReturn ret;
|
2003-11-11 05:35:31 +00:00
|
|
|
GstPad *otherpad;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2003-12-31 08:02:04 +00:00
|
|
|
struct videoscale_format_struct *format;
|
|
|
|
int height, width;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
GST_DEBUG ("gst_videoscale_link %s\n", gst_caps_to_string (caps));
|
2001-12-22 23:27:17 +00:00
|
|
|
videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
otherpad = (pad == videoscale->srcpad) ? videoscale->sinkpad :
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale->srcpad;
|
2003-12-31 08:02:04 +00:00
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
ret = gst_structure_get_int (structure, "width", &width);
|
|
|
|
ret &= gst_structure_get_int (structure, "height", &height);
|
|
|
|
|
|
|
|
format = videoscale_find_by_structure (structure);
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
if (!ret || format == NULL)
|
|
|
|
return GST_PAD_LINK_REFUSED;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
ret = gst_pad_try_set_caps (otherpad, caps);
|
|
|
|
if (ret == GST_PAD_LINK_OK) {
|
|
|
|
/* cool, we can use passthru */
|
2003-12-31 08:02:04 +00:00
|
|
|
|
|
|
|
videoscale->format = format;
|
|
|
|
videoscale->to_width = width;
|
|
|
|
videoscale->to_height = height;
|
|
|
|
videoscale->from_width = width;
|
|
|
|
videoscale->from_height = height;
|
|
|
|
|
|
|
|
gst_videoscale_setup (videoscale);
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2003-09-14 11:25:48 +00:00
|
|
|
}
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
if (gst_pad_is_negotiated (otherpad)) {
|
|
|
|
GstCaps *newcaps = gst_caps_copy (caps);
|
|
|
|
|
|
|
|
if (pad == videoscale->srcpad) {
|
|
|
|
gst_caps_set_simple (newcaps,
|
2004-03-15 19:32:28 +00:00
|
|
|
"width", G_TYPE_INT, videoscale->from_width,
|
|
|
|
"height", G_TYPE_INT, videoscale->from_height, NULL);
|
2003-12-31 08:02:04 +00:00
|
|
|
} else {
|
|
|
|
gst_caps_set_simple (newcaps,
|
2004-03-15 19:32:28 +00:00
|
|
|
"width", G_TYPE_INT, videoscale->to_width,
|
|
|
|
"height", G_TYPE_INT, videoscale->to_height, NULL);
|
2003-12-31 08:02:04 +00:00
|
|
|
}
|
|
|
|
ret = gst_pad_try_set_caps (otherpad, newcaps);
|
|
|
|
if (GST_PAD_LINK_FAILED (ret)) {
|
|
|
|
return GST_PAD_LINK_REFUSED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
videoscale->passthru = FALSE;
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2003-11-11 05:35:31 +00:00
|
|
|
if (pad == videoscale->srcpad) {
|
2003-12-31 08:02:04 +00:00
|
|
|
videoscale->to_width = width;
|
|
|
|
videoscale->to_height = height;
|
2003-11-11 05:35:31 +00:00
|
|
|
} else {
|
2003-12-31 08:02:04 +00:00
|
|
|
videoscale->from_width = width;
|
|
|
|
videoscale->from_height = height;
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
2003-12-31 08:02:04 +00:00
|
|
|
videoscale->format = format;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2003-12-31 08:02:04 +00:00
|
|
|
if (gst_pad_is_negotiated (otherpad)) {
|
|
|
|
gst_videoscale_setup (videoscale);
|
|
|
|
}
|
2003-09-14 11:25:48 +00:00
|
|
|
|
2003-11-11 05:35:31 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_init (GstVideoscale * videoscale)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2004-02-25 17:37:26 +00:00
|
|
|
GST_DEBUG_OBJECT (videoscale, "_init");
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_videoscale_sink_template_factory (),
|
|
|
|
"sink");
|
|
|
|
gst_element_add_pad (GST_ELEMENT (videoscale), videoscale->sinkpad);
|
|
|
|
gst_pad_set_chain_function (videoscale->sinkpad, gst_videoscale_chain);
|
|
|
|
gst_pad_set_link_function (videoscale->sinkpad, gst_videoscale_link);
|
|
|
|
gst_pad_set_getcaps_function (videoscale->sinkpad, gst_videoscale_getcaps);
|
|
|
|
|
|
|
|
videoscale->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_videoscale_src_template_factory (), "src");
|
|
|
|
gst_element_add_pad (GST_ELEMENT (videoscale), videoscale->srcpad);
|
|
|
|
gst_pad_set_event_function (videoscale->srcpad,
|
|
|
|
gst_videoscale_handle_src_event);
|
|
|
|
gst_pad_set_link_function (videoscale->srcpad, gst_videoscale_link);
|
|
|
|
gst_pad_set_getcaps_function (videoscale->srcpad, gst_videoscale_getcaps);
|
2003-04-22 07:32:50 +00:00
|
|
|
|
|
|
|
videoscale->inited = FALSE;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
videoscale->method = GST_VIDEOSCALE_NEAREST;
|
2002-03-19 04:10:06 +00:00
|
|
|
/*videoscale->method = GST_VIDEOSCALE_BILINEAR; */
|
|
|
|
/*videoscale->method = GST_VIDEOSCALE_POINT_SAMPLE; */
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2004-01-09 01:53:31 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_handle_src_event (GstPad * pad, GstEvent * event)
|
2004-01-09 01:53:31 +00:00
|
|
|
{
|
|
|
|
GstVideoscale *videoscale;
|
|
|
|
double a;
|
|
|
|
GstStructure *structure;
|
|
|
|
GstEvent *new_event;
|
|
|
|
|
|
|
|
videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_NAVIGATION:
|
|
|
|
structure = gst_structure_copy (event->event_data.structure.structure);
|
|
|
|
if (gst_structure_get_double (event->event_data.structure.structure,
|
2004-03-15 19:32:28 +00:00
|
|
|
"pointer_x", &a)) {
|
|
|
|
gst_structure_set (structure, "pointer_x", G_TYPE_DOUBLE,
|
|
|
|
a * videoscale->from_width / videoscale->to_width, NULL);
|
2004-01-09 01:53:31 +00:00
|
|
|
}
|
|
|
|
if (gst_structure_get_double (event->event_data.structure.structure,
|
2004-03-15 19:32:28 +00:00
|
|
|
"pointer_y", &a)) {
|
|
|
|
gst_structure_set (structure, "pointer_y", G_TYPE_DOUBLE,
|
|
|
|
a * videoscale->from_height / videoscale->to_height, NULL);
|
2004-01-09 01:53:31 +00:00
|
|
|
}
|
2004-01-28 22:14:14 +00:00
|
|
|
gst_event_unref (event);
|
2004-01-09 01:53:31 +00:00
|
|
|
new_event = gst_event_new (GST_EVENT_NAVIGATION);
|
|
|
|
new_event->event_data.structure.structure = structure;
|
2004-01-28 22:14:14 +00:00
|
|
|
return gst_pad_event_default (pad, new_event);
|
2004-01-09 01:53:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
2004-01-28 22:14:14 +00:00
|
|
|
return gst_pad_event_default (pad, event);
|
2004-01-09 01:53:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_chain (GstPad * pad, GstData * _data)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2003-10-08 16:08:22 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-12-22 23:27:17 +00:00
|
|
|
GstVideoscale *videoscale;
|
|
|
|
guchar *data;
|
|
|
|
gulong size;
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
|
|
|
videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad));
|
2003-04-22 07:32:50 +00:00
|
|
|
g_return_if_fail (videoscale->inited);
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
data = GST_BUFFER_DATA (buf);
|
|
|
|
size = GST_BUFFER_SIZE (buf);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
if (videoscale->passthru) {
|
|
|
|
GST_LOG_OBJECT (videoscale, "passing through buffer of %ld bytes in '%s'",
|
2004-03-15 19:32:28 +00:00
|
|
|
size, GST_OBJECT_NAME (videoscale));
|
2004-02-25 17:37:26 +00:00
|
|
|
gst_pad_push (videoscale->srcpad, GST_DATA (buf));
|
2003-04-22 07:32:50 +00:00
|
|
|
return;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_LOG_OBJECT (videoscale, "got buffer of %ld bytes in '%s'", size,
|
|
|
|
GST_OBJECT_NAME (videoscale));
|
|
|
|
GST_LOG_OBJECT (videoscale,
|
|
|
|
"size=%ld from=%dx%d to=%dx%d fromsize=%ld (should be %d) tosize=%d",
|
|
|
|
size, videoscale->from_width, videoscale->from_height,
|
|
|
|
videoscale->to_width, videoscale->to_height, size,
|
|
|
|
videoscale->from_buf_size, videoscale->to_buf_size);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-04-22 07:32:50 +00:00
|
|
|
g_return_if_fail (size == videoscale->from_buf_size);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-01-11 22:52:29 +00:00
|
|
|
outbuf = gst_pad_alloc_buffer (videoscale->srcpad,
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_BUFFER_OFFSET_NONE, videoscale->to_buf_size);
|
|
|
|
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
g_return_if_fail (videoscale->format);
|
|
|
|
GST_DEBUG_OBJECT (videoscale, "format " GST_FOURCC_FORMAT,
|
|
|
|
GST_FOURCC_ARGS (videoscale->format->fourcc));
|
|
|
|
g_return_if_fail (videoscale->format->scale);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
videoscale->format->scale (videoscale, GST_BUFFER_DATA (outbuf), data);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_DEBUG_OBJECT (videoscale, "pushing buffer of %d bytes in '%s'",
|
|
|
|
GST_BUFFER_SIZE (outbuf), GST_OBJECT_NAME (videoscale));
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_pad_push (videoscale->srcpad, GST_DATA (outbuf));
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_buffer_unref (buf);
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
|
|
|
GstVideoscale *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2004-03-14 22:34:34 +00:00
|
|
|
g_return_if_fail (GST_IS_VIDEOSCALE (object));
|
|
|
|
src = GST_VIDEOSCALE (object);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-02-25 17:37:26 +00:00
|
|
|
GST_DEBUG_OBJECT (src, "gst_videoscale_set_property");
|
2001-12-22 23:27:17 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_METHOD:
|
2002-04-14 10:22:24 +00:00
|
|
|
src->method = g_value_get_enum (value);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_videoscale_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
|
|
|
GstVideoscale *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2004-03-14 22:34:34 +00:00
|
|
|
g_return_if_fail (GST_IS_VIDEOSCALE (object));
|
|
|
|
src = GST_VIDEOSCALE (object);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_METHOD:
|
2002-04-14 10:22:24 +00:00
|
|
|
g_value_set_enum (value, src->method);
|
2001-12-22 23:27:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2004-03-14 22:34:34 +00:00
|
|
|
if (!gst_element_register (plugin, "videoscale", GST_RANK_NONE,
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_TYPE_VIDEOSCALE))
|
2004-02-25 17:37:26 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (videoscale_debug, "videoscale", 0,
|
|
|
|
"videoscale element");
|
2004-02-25 17:37:26 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"videoscale",
|
|
|
|
"Resizes video", plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|