/* GStreamer * Copyright (C) <1999> Erik Walthinsen * * 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. */ /*#define DEBUG_ENABLED */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include /* elementfactory information */ static GstElementDetails videoscale_details = GST_ELEMENT_DETAILS ( "Video scaler", "Filter/Video", "Resizes video", "Wim Taymans " ); /* GstVideoscale signals and args */ enum { /* FILL ME */ LAST_SIGNAL }; enum { ARG_0, ARG_METHOD, /* FILL ME */ }; #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[] = { { 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 }, }; if (!videoscale_method_type) { videoscale_method_type = g_enum_register_static ("GstVideoscaleMethod", videoscale_methods); } return videoscale_method_type; } static GstCaps * gst_videoscale_get_capslist(void) { static GstCaps *capslist = NULL; GstCaps *caps; int i; if (capslist){ gst_caps_ref(capslist); return capslist; } for(i=0;iset_property = gst_videoscale_set_property; gobject_class->get_property = gst_videoscale_get_property; } static GstCaps * gst_videoscale_getcaps (GstPad *pad, GstCaps *caps) { GstVideoscale *videoscale; //GstCaps *capslist = NULL; GstCaps *peercaps; //GstCaps *sizecaps1, *sizecaps2; //GstCaps *sizecaps; GstCaps *handled_caps; GstCaps *icaps; GstPad *otherpad; GST_DEBUG ("gst_videoscale_getcaps"); videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad)); /* get list of peer's caps */ if(pad == videoscale->srcpad){ GST_DEBUG("getting caps of srcpad"); otherpad = videoscale->sinkpad; }else{ GST_DEBUG("getting caps of sinkpad"); otherpad = videoscale->srcpad; } if (!GST_PAD_IS_LINKED (otherpad)){ GST_DEBUG ("otherpad not linked"); return GST_PAD_LINK_DELAYED; } peercaps = gst_pad_get_allowed_caps (GST_PAD_PEER(otherpad)); GST_DEBUG("othercaps are %s", gst_caps_to_string(peercaps)); { GstCaps *caps1 = GST_CAPS_NEW("src","video/x-raw-yuv", "width", GST_PROPS_INT_RANGE (0, G_MAXINT), "height", GST_PROPS_INT_RANGE (0, G_MAXINT), "framerate", GST_PROPS_FLOAT_RANGE (0, G_MAXFLOAT)); GstCaps *caps2 = GST_CAPS_NEW("src","video/x-raw-rgb", "width", GST_PROPS_INT_RANGE (0, G_MAXINT), "height", GST_PROPS_INT_RANGE (0, G_MAXINT), "framerate", GST_PROPS_FLOAT_RANGE (0, G_MAXFLOAT)); caps = gst_caps_intersect(caps1, gst_videoscale_get_capslist ()); gst_caps_unref (caps1); caps1 = caps; caps = gst_caps_intersect(caps2, gst_videoscale_get_capslist ()); gst_caps_unref (caps2); caps2 = caps; handled_caps = gst_caps_append(caps1, caps2); } icaps = gst_caps_intersect (handled_caps, gst_caps_copy(peercaps)); GST_DEBUG("returning caps %s", gst_caps_to_string (icaps)); return icaps; } static GstPadLinkReturn gst_videoscale_link (GstPad *pad, GstCaps *caps) { GstVideoscale *videoscale; GstPadLinkReturn ret; GstCaps *othercaps; GstPad *otherpad; GstCaps *icaps; GST_DEBUG ("gst_videoscale_link"); videoscale = GST_VIDEOSCALE (gst_pad_get_parent (pad)); if (!GST_CAPS_IS_FIXED (caps)) { return GST_PAD_LINK_DELAYED; } if (pad == videoscale->srcpad) { otherpad = videoscale->sinkpad; } else { otherpad = videoscale->srcpad; } if (otherpad == NULL) { return GST_PAD_LINK_DELAYED; } othercaps = GST_PAD_CAPS (otherpad); if (othercaps) { GstCaps *othercaps_wh; GST_DEBUG ("otherpad caps are already set"); GST_DEBUG ("otherpad caps are %s", gst_caps_to_string(othercaps)); othercaps_wh = gst_caps_copy (othercaps); gst_caps_set(othercaps_wh, "width", GST_PROPS_INT_RANGE (1, G_MAXINT), "height", GST_PROPS_INT_RANGE (1, G_MAXINT), NULL); #if 1 icaps = othercaps; #else /* FIXME this is disabled because videotestsrc ! videoscale ! ximagesink * doesn't negotiate caps correctly the first time, so we pretend it's * still ok here. */ icaps = gst_caps_intersect (othercaps_wh, caps); GST_DEBUG ("intersected caps are %s", gst_caps_to_string(icaps)); if (icaps == NULL) { /* the new caps are not compatible with the existing, set caps */ /* currently, we don't force renegotiation */ return GST_PAD_LINK_REFUSED; } #endif if (!GST_CAPS_IS_FIXED (icaps)) { return GST_PAD_LINK_REFUSED; } /* ok, we have a candidate caps */ } else { GstCaps *othercaps_wh; GST_DEBUG ("otherpad caps are unset"); othercaps = gst_pad_get_allowed_caps (pad); othercaps_wh = gst_caps_copy (othercaps); gst_caps_set(othercaps_wh, "width", GST_PROPS_INT_RANGE (1, G_MAXINT), "height", GST_PROPS_INT_RANGE (1, G_MAXINT), NULL); icaps = gst_caps_intersect (othercaps_wh, caps); GST_DEBUG ("intersected caps are %s", gst_caps_to_string(icaps)); if (icaps == NULL) { /* the new caps are not compatible with the existing, set caps */ /* currently, we don't force renegotiation */ return GST_PAD_LINK_REFUSED; } if (!GST_CAPS_IS_FIXED (icaps)) { return GST_PAD_LINK_REFUSED; } /* ok, we have a candidate caps */ ret = gst_pad_try_set_caps (otherpad, gst_caps_copy(icaps)); if (ret == GST_PAD_LINK_DELAYED || ret == GST_PAD_LINK_REFUSED) { return ret; } } if (pad == videoscale->srcpad) { gst_caps_get_int (icaps, "width", &videoscale->from_width); gst_caps_get_int (icaps, "height", &videoscale->from_height); gst_caps_get_int (caps, "width", &videoscale->to_width); gst_caps_get_int (caps, "height", &videoscale->to_height); } else { gst_caps_get_int (icaps, "width", &videoscale->to_width); gst_caps_get_int (icaps, "height", &videoscale->to_height); gst_caps_get_int (caps, "width", &videoscale->from_width); gst_caps_get_int (caps, "height", &videoscale->from_height); } videoscale->format = videoscale_find_by_caps (caps); gst_videoscale_setup(videoscale); return GST_PAD_LINK_OK; } static void gst_videoscale_init (GstVideoscale *videoscale) { GST_DEBUG ("gst_videoscale_init"); videoscale->sinkpad = gst_pad_new_from_template ( GST_PAD_TEMPLATE_GET (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_PAD_TEMPLATE_GET (gst_videoscale_src_template_factory), "src"); gst_element_add_pad(GST_ELEMENT(videoscale),videoscale->srcpad); gst_pad_set_link_function(videoscale->srcpad,gst_videoscale_link); gst_pad_set_getcaps_function(videoscale->srcpad,gst_videoscale_getcaps); videoscale->inited = FALSE; videoscale->method = GST_VIDEOSCALE_NEAREST; /*videoscale->method = GST_VIDEOSCALE_BILINEAR; */ /*videoscale->method = GST_VIDEOSCALE_POINT_SAMPLE; */ } static void gst_videoscale_chain (GstPad *pad, GstData *_data) { GstBuffer *buf = GST_BUFFER (_data); GstVideoscale *videoscale; guchar *data; gulong size; GstBuffer *outbuf; GST_DEBUG ("gst_videoscale_chain"); 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)); g_return_if_fail (videoscale->inited); data = GST_BUFFER_DATA(buf); size = GST_BUFFER_SIZE(buf); if(videoscale->passthru){ gst_pad_push(videoscale->srcpad, GST_DATA (buf)); return; } GST_DEBUG ("gst_videoscale_chain: got buffer of %ld bytes in '%s'",size, GST_OBJECT_NAME (videoscale)); GST_DEBUG ("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); g_return_if_fail (size == videoscale->from_buf_size); outbuf = gst_buffer_new(); /* FIXME: handle bufferpools */ GST_BUFFER_SIZE(outbuf) = videoscale->to_buf_size; GST_BUFFER_DATA(outbuf) = g_malloc (videoscale->to_buf_size); GST_BUFFER_TIMESTAMP(outbuf) = GST_BUFFER_TIMESTAMP(buf); g_return_if_fail(videoscale->format); GST_DEBUG ("format %s",videoscale->format->fourcc); g_return_if_fail(videoscale->format->scale); videoscale->format->scale(videoscale, GST_BUFFER_DATA(outbuf), data); GST_DEBUG ("gst_videoscale_chain: pushing buffer of %d bytes in '%s'",GST_BUFFER_SIZE(outbuf), GST_OBJECT_NAME (videoscale)); gst_pad_push(videoscale->srcpad, GST_DATA (outbuf)); gst_buffer_unref(buf); } static void gst_videoscale_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { GstVideoscale *src; /* it's not null if we got it, but it might not be ours */ g_return_if_fail(GST_IS_VIDEOSCALE(object)); src = GST_VIDEOSCALE(object); GST_DEBUG ("gst_videoscale_set_property"); switch (prop_id) { case ARG_METHOD: src->method = g_value_get_enum (value); break; default: break; } } static void gst_videoscale_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { GstVideoscale *src; /* it's not null if we got it, but it might not be ours */ g_return_if_fail(GST_IS_VIDEOSCALE(object)); src = GST_VIDEOSCALE(object); switch (prop_id) { case ARG_METHOD: g_value_set_enum (value, src->method); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static gboolean plugin_init (GstPlugin *plugin) { return gst_element_register (plugin, "videoscale", GST_RANK_NONE, GST_TYPE_VIDEOSCALE); } GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, "videoscale", "Resizes video", plugin_init, VERSION, GST_LICENSE, GST_COPYRIGHT, GST_PACKAGE, GST_ORIGIN )