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>
|
2005-07-01 17:03:13 +00:00
|
|
|
* Copyright (C) 2005 David Schleef <ds@schleef.org>
|
2001-12-22 23:27:17 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-videoscale
|
|
|
|
* @see_also: videorate, ffmpegcolorspace
|
|
|
|
*
|
|
|
|
* This element resizes video frames. By default the element will try to
|
|
|
|
* negotiate to the same size on the source and sinkpad so that no scaling
|
|
|
|
* is needed. It is therefore safe to insert this element in a pipeline to
|
|
|
|
* get more robust behaviour without any cost if no scaling is needed.
|
2008-07-11 06:10:24 +00:00
|
|
|
*
|
2006-05-08 15:51:15 +00:00
|
|
|
* This element supports a wide range of color spaces including various YUV and
|
|
|
|
* RGB formats and is therefore generally able to operate anywhere in a
|
|
|
|
* pipeline.
|
2008-07-11 06:10:24 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
* <title>Example pipelines</title>
|
2008-07-11 06:10:24 +00:00
|
|
|
* |[
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
* gst-launch -v filesrc location=videotestsrc.ogg ! oggdemux ! theoradec ! ffmpegcolorspace ! videoscale ! ximagesink
|
2008-07-11 06:10:24 +00:00
|
|
|
* ]| Decode an Ogg/Theora and display the video using ximagesink. Since
|
2006-05-08 15:51:15 +00:00
|
|
|
* ximagesink cannot perform scaling, the video scaling will be performed by
|
|
|
|
* videoscale when you resize the video window.
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
* To create the test Ogg/Theora file refer to the documentation of theoraenc.
|
2008-07-11 06:10:24 +00:00
|
|
|
* |[
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
* gst-launch -v filesrc location=videotestsrc.ogg ! oggdemux ! theoradec ! videoscale ! video/x-raw-yuv, width=50 ! xvimagesink
|
2008-07-11 06:10:24 +00:00
|
|
|
* ]| Decode an Ogg/Theora and display the video using xvimagesink with a width
|
|
|
|
* of 50.
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
* </refsect2>
|
|
|
|
*
|
|
|
|
* Last reviewed on 2006-03-02 (0.10.4)
|
|
|
|
*/
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 16:55:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
#include <gst/video/video.h>
|
2006-04-27 00:19:29 +00:00
|
|
|
#include <liboil/liboil.h>
|
2005-07-01 17:03:13 +00:00
|
|
|
|
|
|
|
#include "gstvideoscale.h"
|
2005-07-01 16:55:43 +00:00
|
|
|
#include "vs_image.h"
|
2006-11-14 23:08:38 +00:00
|
|
|
#include "vs_4tap.h"
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2004-02-25 17:37:26 +00:00
|
|
|
/* debug variable definition */
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_DEBUG_CATEGORY (video_scale_debug);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
/* elementfactory information */
|
2006-04-28 19:46:37 +00:00
|
|
|
static const GstElementDetails video_scale_details =
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ELEMENT_DETAILS ("Video scaler",
|
|
|
|
"Filter/Effect/Video",
|
|
|
|
"Resizes video",
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>");
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2008-05-26 10:29:20 +00:00
|
|
|
#define DEFAULT_PROP_METHOD GST_VIDEO_SCALE_BILINEAR
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2005-07-01 17:03:13 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_METHOD
|
2004-05-21 22:39:30 +00:00
|
|
|
/* FILL ME */
|
2001-12-22 23:27:17 +00:00
|
|
|
};
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static GstStaticCaps gst_video_scale_format_caps[] = {
|
2005-07-01 16:55:43 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBx),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_xRGB),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_xBGR),
|
2006-06-19 09:08:05 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBA),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_ARGB),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRA),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_ABGR),
|
2005-07-01 16:55:43 +00:00
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGB),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGR),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("AYUV")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("YUY2")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("YVYU")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("UYVY")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("Y800")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("YV12")),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGB_16),
|
|
|
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_RGB_15)
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_VIDEO_SCALE_RGBx = 0,
|
|
|
|
GST_VIDEO_SCALE_xRGB,
|
|
|
|
GST_VIDEO_SCALE_BGRx,
|
|
|
|
GST_VIDEO_SCALE_xBGR,
|
2006-06-19 09:08:05 +00:00
|
|
|
GST_VIDEO_SCALE_RGBA,
|
|
|
|
GST_VIDEO_SCALE_ARGB,
|
|
|
|
GST_VIDEO_SCALE_BGRA,
|
|
|
|
GST_VIDEO_SCALE_ABGR,
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_VIDEO_SCALE_RGB,
|
|
|
|
GST_VIDEO_SCALE_BGR,
|
|
|
|
GST_VIDEO_SCALE_AYUV,
|
|
|
|
GST_VIDEO_SCALE_YUY2,
|
|
|
|
GST_VIDEO_SCALE_YVYU,
|
|
|
|
GST_VIDEO_SCALE_UYVY,
|
|
|
|
GST_VIDEO_SCALE_Y,
|
|
|
|
GST_VIDEO_SCALE_I420,
|
|
|
|
GST_VIDEO_SCALE_YV12,
|
|
|
|
GST_VIDEO_SCALE_RGB565,
|
|
|
|
GST_VIDEO_SCALE_RGB555
|
2005-07-01 16:55:43 +00:00
|
|
|
};
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
#define GST_TYPE_VIDEO_SCALE_METHOD (gst_video_scale_method_get_type())
|
2001-12-22 23:27:17 +00:00
|
|
|
static GType
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_method_get_type (void)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
static GType video_scale_method_type = 0;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
Const-ify GEnumValue and GFlagsValue arrays. Use
Original commit message from CVS:
* ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
(gst_text_overlay_halign_get_type),
(gst_text_overlay_wrap_mode_get_type):
* ext/theora/theoradec.c: (theora_handle_type_packet),
(theora_handle_data_packet):
* ext/theora/theoraenc.c: (gst_border_mode_get_type),
(theora_enc_sink_setcaps), (theora_enc_chain):
* gst-libs/gst/cdda/gstcddabasesrc.c:
(gst_cdda_base_src_mode_get_type):
* gst/audiotestsrc/gstaudiotestsrc.c:
(gst_audiostestsrc_wave_get_type):
* gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
* gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
* gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
(gst_sync_method_get_type), (gst_unit_type_get_type),
(gst_client_status_get_type):
* gst/videoscale/gstvideoscale.c:
(gst_video_scale_method_get_type):
* gst/videotestsrc/gstvideotestsrc.c:
(gst_video_test_src_pattern_get_type):
* gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
(paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
(paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
(paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
(paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
(paint_setup_RGB565), (paint_setup_xRGB1555):
Const-ify GEnumValue and GFlagsValue arrays. Use
GST_ROUND_UP_* macros instead of home-made ones.
2006-05-09 19:24:46 +00:00
|
|
|
static const GEnumValue video_scale_methods[] = {
|
2005-12-01 01:12:55 +00:00
|
|
|
{GST_VIDEO_SCALE_NEAREST, "Nearest Neighbour", "nearest-neighbour"},
|
|
|
|
{GST_VIDEO_SCALE_BILINEAR, "Bilinear", "bilinear"},
|
2006-11-14 23:08:38 +00:00
|
|
|
{GST_VIDEO_SCALE_4TAP, "4-tap", "4-tap"},
|
2004-03-14 22:34:34 +00:00
|
|
|
{0, NULL, NULL},
|
2001-12-22 23:27:17 +00:00
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
if (!video_scale_method_type) {
|
|
|
|
video_scale_method_type =
|
|
|
|
g_enum_register_static ("GstVideoScaleMethod", video_scale_methods);
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2005-12-01 01:12:55 +00:00
|
|
|
return video_scale_method_type;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
static GstCaps *
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_get_capslist (void)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2005-07-01 16:55:43 +00:00
|
|
|
static GstCaps *caps;
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
int i;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 16:55:43 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
2005-12-01 01:12:55 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (gst_video_scale_format_caps); i++)
|
2005-07-01 16:55:43 +00:00
|
|
|
gst_caps_append (caps,
|
2005-07-01 17:03:13 +00:00
|
|
|
gst_caps_make_writable
|
2005-12-01 01:12:55 +00:00
|
|
|
(gst_static_caps_get (&gst_video_scale_format_caps[i])));
|
2003-11-02 20:48:33 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
return caps;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2003-04-22 07:32:50 +00:00
|
|
|
static GstPadTemplate *
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_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,
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_caps_ref (gst_video_scale_get_capslist ()));
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadTemplate *
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_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,
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_caps_ref (gst_video_scale_get_capslist ()));
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_base_init (gpointer g_class);
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_class_init (GstVideoScaleClass * klass);
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_init (GstVideoScale * videoscale);
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-07-28 17:17:24 +00:00
|
|
|
static void gst_video_scale_finalize (GstVideoScale * videoscale);
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-03-14 11:11:59 +00:00
|
|
|
static gboolean gst_video_scale_src_event (GstBaseTransform * trans,
|
2004-03-14 22:34:34 +00:00
|
|
|
GstEvent * event);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
/* base transform vmethods */
|
2005-12-01 01:12:55 +00:00
|
|
|
static GstCaps *gst_video_scale_transform_caps (GstBaseTransform * trans,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps);
|
2005-12-01 01:12:55 +00:00
|
|
|
static gboolean gst_video_scale_set_caps (GstBaseTransform * trans,
|
2005-07-01 17:03:13 +00:00
|
|
|
GstCaps * in, GstCaps * out);
|
2005-12-01 01:12:55 +00:00
|
|
|
static gboolean gst_video_scale_get_unit_size (GstBaseTransform * trans,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstCaps * caps, guint * size);
|
2005-12-01 01:12:55 +00:00
|
|
|
static GstFlowReturn gst_video_scale_transform (GstBaseTransform * trans,
|
2005-07-15 10:44:19 +00:00
|
|
|
GstBuffer * in, GstBuffer * out);
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_fixate_caps (GstBaseTransform * base,
|
2005-11-18 17:31:17 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps);
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_set_property (GObject * object, guint prop_id,
|
2004-03-14 22:34:34 +00:00
|
|
|
const GValue * value, GParamSpec * pspec);
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_scale_get_property (GObject * object, guint prop_id,
|
2004-03-14 22:34:34 +00:00
|
|
|
GValue * value, GParamSpec * pspec);
|
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
|
|
|
|
|
|
|
GType
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_get_type (void)
|
2003-04-22 07:32:50 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
static GType video_scale_type = 0;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
if (!video_scale_type) {
|
|
|
|
static const GTypeInfo video_scale_info = {
|
|
|
|
sizeof (GstVideoScaleClass),
|
|
|
|
gst_video_scale_base_init,
|
2003-11-02 20:48:33 +00:00
|
|
|
NULL,
|
2005-12-01 01:12:55 +00:00
|
|
|
(GClassInitFunc) gst_video_scale_class_init,
|
2003-11-02 20:48:33 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2005-12-01 01:12:55 +00:00
|
|
|
sizeof (GstVideoScale),
|
2003-11-02 20:48:33 +00:00
|
|
|
0,
|
2005-12-01 01:12:55 +00:00
|
|
|
(GInstanceInitFunc) gst_video_scale_init,
|
2003-11-02 20:48:33 +00:00
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
video_scale_type =
|
|
|
|
g_type_register_static (GST_TYPE_BASE_TRANSFORM, "GstVideoScale",
|
|
|
|
&video_scale_info, 0);
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
2005-12-01 01:12:55 +00:00
|
|
|
return video_scale_type;
|
2003-11-02 20:48:33 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_base_init (gpointer g_class)
|
2003-11-02 20:48:33 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_element_class_set_details (element_class, &video_scale_details);
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_sink_template_factory ());
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_src_template_factory ());
|
2003-11-02 20:48:33 +00:00
|
|
|
}
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2003-11-02 20:48:33 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_class_init (GstVideoScaleClass * klass)
|
2003-11-02 20:48:33 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
GstBaseTransformClass *trans_class;
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2005-07-01 17:03:13 +00:00
|
|
|
trans_class = (GstBaseTransformClass *) klass;
|
2003-11-02 20:48:33 +00:00
|
|
|
|
2006-07-28 17:17:24 +00:00
|
|
|
gobject_class->finalize = (GObjectFinalizeFunc) gst_video_scale_finalize;
|
2005-12-01 01:12:55 +00:00
|
|
|
gobject_class->set_property = gst_video_scale_set_property;
|
|
|
|
gobject_class->get_property = gst_video_scale_get_property;
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2006-06-22 10:10:51 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_METHOD,
|
2005-07-01 17:03:13 +00:00
|
|
|
g_param_spec_enum ("method", "method", "method",
|
2008-03-22 15:00:53 +00:00
|
|
|
GST_TYPE_VIDEO_SCALE_METHOD, DEFAULT_PROP_METHOD,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2005-11-18 17:31:17 +00:00
|
|
|
trans_class->transform_caps =
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_video_scale_transform_caps);
|
|
|
|
trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_video_scale_set_caps);
|
|
|
|
trans_class->get_unit_size =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_scale_get_unit_size);
|
|
|
|
trans_class->transform = GST_DEBUG_FUNCPTR (gst_video_scale_transform);
|
|
|
|
trans_class->fixate_caps = GST_DEBUG_FUNCPTR (gst_video_scale_fixate_caps);
|
2006-03-14 11:11:59 +00:00
|
|
|
trans_class->src_event = GST_DEBUG_FUNCPTR (gst_video_scale_src_event);
|
2005-07-01 17:03:13 +00:00
|
|
|
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
trans_class->passthrough_on_same_caps = TRUE;
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_init (GstVideoScale * videoscale)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2006-03-14 11:11:59 +00:00
|
|
|
gst_base_transform_set_qos_enabled (GST_BASE_TRANSFORM (videoscale), TRUE);
|
2005-08-24 15:07:54 +00:00
|
|
|
videoscale->tmp_buf = NULL;
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
videoscale->method = DEFAULT_PROP_METHOD;
|
2005-07-01 17:03:13 +00:00
|
|
|
}
|
2003-11-11 05:35:31 +00:00
|
|
|
|
2006-07-28 17:17:24 +00:00
|
|
|
static void
|
|
|
|
gst_video_scale_finalize (GstVideoScale * videoscale)
|
|
|
|
{
|
|
|
|
if (videoscale->tmp_buf)
|
|
|
|
g_free (videoscale->tmp_buf);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (G_OBJECT (videoscale));
|
|
|
|
}
|
2003-11-11 05:35:31 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_set_property (GObject * object, guint prop_id,
|
2005-07-01 17:03:13 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2007-12-22 12:06:47 +00:00
|
|
|
GstVideoScale *vscale = GST_VIDEO_SCALE (object);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_METHOD:
|
2007-12-22 12:06:47 +00:00
|
|
|
GST_OBJECT_LOCK (vscale);
|
|
|
|
vscale->method = g_value_get_enum (value);
|
|
|
|
GST_OBJECT_UNLOCK (vscale);
|
2005-07-01 17:03:13 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
2003-12-22 01:47:09 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_get_property (GObject * object, guint prop_id, GValue * value,
|
2005-07-01 17:03:13 +00:00
|
|
|
GParamSpec * pspec)
|
2005-07-01 16:55:43 +00:00
|
|
|
{
|
2007-12-22 12:06:47 +00:00
|
|
|
GstVideoScale *vscale = GST_VIDEO_SCALE (object);
|
2005-07-01 16:55:43 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_METHOD:
|
2007-12-22 12:06:47 +00:00
|
|
|
GST_OBJECT_LOCK (vscale);
|
|
|
|
g_value_set_enum (value, vscale->method);
|
|
|
|
GST_OBJECT_UNLOCK (vscale);
|
2005-07-01 17:03:13 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
2005-07-01 16:55:43 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static GstCaps *
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_transform_caps (GstBaseTransform * trans,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoScale *videoscale;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
GstCaps *ret;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
GstStructure *structure;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
const GValue *par;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
gint method;
|
|
|
|
|
|
|
|
/* this function is always called with a simple caps */
|
|
|
|
g_return_val_if_fail (GST_CAPS_IS_SIMPLE (caps), NULL);
|
2004-07-27 16:43:24 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
videoscale = GST_VIDEO_SCALE (trans);
|
2003-12-31 08:02:04 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
GST_OBJECT_LOCK (videoscale);
|
|
|
|
method = videoscale->method;
|
|
|
|
GST_OBJECT_UNLOCK (videoscale);
|
2003-12-31 08:02:04 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
/* check compatibility of format and method before we copy the input caps */
|
|
|
|
if (method == GST_VIDEO_SCALE_4TAP) {
|
|
|
|
guint32 fourcc;
|
|
|
|
|
|
|
|
if (!gst_structure_has_name (structure, "video/x-raw-yuv"))
|
|
|
|
goto method_not_implemented_for_format;
|
|
|
|
if (!gst_structure_get_fourcc (structure, "format", &fourcc))
|
|
|
|
goto method_not_implemented_for_format;
|
|
|
|
if (fourcc != GST_MAKE_FOURCC ('I', '4', '2', '0') &&
|
|
|
|
fourcc != GST_MAKE_FOURCC ('Y', 'V', '1', '2'))
|
|
|
|
goto method_not_implemented_for_format;
|
|
|
|
}
|
2006-04-28 14:33:45 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
ret = gst_caps_copy (caps);
|
2008-06-04 04:24:27 +00:00
|
|
|
structure = gst_structure_copy (gst_caps_get_structure (ret, 0));
|
2006-04-28 14:33:45 +00:00
|
|
|
|
|
|
|
gst_structure_set (structure,
|
2006-11-28 16:43:18 +00:00
|
|
|
"width", GST_TYPE_INT_RANGE, 1, G_MAXINT,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 1, G_MAXINT, NULL);
|
2006-04-28 14:33:45 +00:00
|
|
|
|
2008-06-04 05:44:06 +00:00
|
|
|
gst_caps_merge_structure (ret, gst_structure_copy (structure));
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
/* if pixel aspect ratio, make a range of it */
|
|
|
|
if ((par = gst_structure_get_value (structure, "pixel-aspect-ratio"))) {
|
2008-06-04 05:44:06 +00:00
|
|
|
gst_structure_set (structure,
|
2006-04-28 14:33:45 +00:00
|
|
|
"pixel-aspect-ratio", GST_TYPE_FRACTION_RANGE, 0, 1, G_MAXINT, 1, NULL);
|
|
|
|
|
2008-06-04 05:44:06 +00:00
|
|
|
gst_caps_merge_structure (ret, structure);
|
|
|
|
} else {
|
|
|
|
gst_structure_free (structure);
|
2003-04-22 07:32:50 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
GST_DEBUG_OBJECT (trans, "returning caps: %" GST_PTR_FORMAT, ret);
|
2006-04-28 14:33:45 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
return ret;
|
2007-12-22 12:06:47 +00:00
|
|
|
|
|
|
|
method_not_implemented_for_format:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (trans, "method %d not implemented for format %"
|
|
|
|
GST_PTR_FORMAT ", returning empty caps", method, caps);
|
|
|
|
return gst_caps_new_empty ();
|
|
|
|
}
|
2004-07-18 18:35:43 +00:00
|
|
|
}
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static int
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_get_format (GstCaps * caps)
|
2004-07-27 16:43:24 +00:00
|
|
|
{
|
|
|
|
int i;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
GstCaps *icaps, *scaps;
|
2004-07-27 16:43:24 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (gst_video_scale_format_caps); i++) {
|
|
|
|
scaps = gst_static_caps_get (&gst_video_scale_format_caps[i]);
|
2005-07-01 17:03:13 +00:00
|
|
|
icaps = gst_caps_intersect (caps, scaps);
|
|
|
|
if (!gst_caps_is_empty (icaps)) {
|
|
|
|
gst_caps_unref (icaps);
|
|
|
|
return i;
|
2004-07-27 16:43:24 +00:00
|
|
|
}
|
2005-07-01 17:03:13 +00:00
|
|
|
gst_caps_unref (icaps);
|
2004-07-27 16:43:24 +00:00
|
|
|
}
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
return -1;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
/* calculate the size of a buffer */
|
|
|
|
static gboolean
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
gst_video_scale_prepare_size (GstVideoScale * videoscale, gint format,
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage * img, gint width, gint height, guint * size)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2005-08-24 15:07:54 +00:00
|
|
|
gboolean res = TRUE;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
img->width = width;
|
|
|
|
img->height = height;
|
2005-07-01 16:55:43 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
switch (format) {
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBx:
|
|
|
|
case GST_VIDEO_SCALE_xRGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRx:
|
|
|
|
case GST_VIDEO_SCALE_xBGR:
|
2006-06-19 09:08:05 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBA:
|
|
|
|
case GST_VIDEO_SCALE_ARGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRA:
|
|
|
|
case GST_VIDEO_SCALE_ABGR:
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_AYUV:
|
2005-08-24 15:07:54 +00:00
|
|
|
img->stride = img->width * 4;
|
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB:
|
|
|
|
case GST_VIDEO_SCALE_BGR:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width * 3);
|
2005-08-24 15:07:54 +00:00
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_YUY2:
|
|
|
|
case GST_VIDEO_SCALE_YVYU:
|
|
|
|
case GST_VIDEO_SCALE_UYVY:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width * 2);
|
2005-08-24 15:07:54 +00:00
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_Y:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width);
|
2005-08-24 15:07:54 +00:00
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_I420:
|
|
|
|
case GST_VIDEO_SCALE_YV12:
|
2005-07-01 17:03:13 +00:00
|
|
|
{
|
2005-08-24 15:07:54 +00:00
|
|
|
gulong img_u_stride, img_u_height;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img_u_height = GST_ROUND_UP_2 (img->height) / 2;
|
|
|
|
img_u_stride = GST_ROUND_UP_4 (img->stride / 2);
|
2005-07-01 16:55:43 +00:00
|
|
|
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
*size = img->stride * GST_ROUND_UP_2 (img->height) +
|
2005-08-24 15:07:54 +00:00
|
|
|
2 * img_u_stride * img_u_height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-07-01 17:03:13 +00:00
|
|
|
}
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB565:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width * 2);
|
2005-08-24 15:07:54 +00:00
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB555:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img->stride = GST_ROUND_UP_4 (img->width * 2);
|
2005-08-24 15:07:54 +00:00
|
|
|
*size = img->stride * img->height;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
goto unknown_format;
|
2005-07-01 16:55:43 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
return res;
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
unknown_format:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (videoscale, STREAM, NOT_IMPLEMENTED, (NULL),
|
|
|
|
("Unsupported format %d", videoscale->format));
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-08-24 15:07:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
parse_caps (GstCaps * caps, gint * format, gint * width, gint * height)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
ret = gst_structure_get_int (structure, "width", width);
|
|
|
|
ret &= gst_structure_get_int (structure, "height", height);
|
|
|
|
|
|
|
|
if (format)
|
2005-12-01 01:12:55 +00:00
|
|
|
*format = gst_video_scale_get_format (caps);
|
2005-08-24 15:07:54 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_set_caps (GstBaseTransform * trans, GstCaps * in, GstCaps * out)
|
2005-08-24 15:07:54 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoScale *videoscale;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
gboolean ret;
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
videoscale = GST_VIDEO_SCALE (trans);
|
2005-08-24 15:07:54 +00:00
|
|
|
|
|
|
|
ret = parse_caps (in, &videoscale->format, &videoscale->from_width,
|
|
|
|
&videoscale->from_height);
|
|
|
|
ret &= parse_caps (out, NULL, &videoscale->to_width, &videoscale->to_height);
|
|
|
|
if (!ret)
|
|
|
|
goto done;
|
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
if (!(ret = gst_video_scale_prepare_size (videoscale, videoscale->format,
|
|
|
|
&videoscale->src, videoscale->from_width, videoscale->from_height,
|
|
|
|
&videoscale->src_size)))
|
|
|
|
/* prepare size has posted an error when it returns FALSE */
|
|
|
|
goto done;
|
2005-08-24 15:07:54 +00:00
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
if (!(ret = gst_video_scale_prepare_size (videoscale, videoscale->format,
|
|
|
|
&videoscale->dest, videoscale->to_width, videoscale->to_height,
|
|
|
|
&videoscale->dest_size)))
|
|
|
|
/* prepare size has posted an error when it returns FALSE */
|
2005-08-24 15:07:54 +00:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (videoscale->tmp_buf)
|
|
|
|
g_free (videoscale->tmp_buf);
|
|
|
|
|
2006-11-14 23:08:38 +00:00
|
|
|
videoscale->tmp_buf = g_malloc (videoscale->dest.stride * 4);
|
2005-08-24 15:07:54 +00:00
|
|
|
|
|
|
|
/* FIXME: par */
|
|
|
|
GST_DEBUG_OBJECT (videoscale, "from=%dx%d, size %d -> to=%dx%d, size %d",
|
|
|
|
videoscale->from_width, videoscale->from_height, videoscale->src_size,
|
|
|
|
videoscale->to_width, videoscale->to_height, videoscale->dest_size);
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
done:
|
|
|
|
return ret;
|
2005-07-01 17:03:13 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
static gboolean
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_get_unit_size (GstBaseTransform * trans, GstCaps * caps,
|
2005-08-24 13:32:52 +00:00
|
|
|
guint * size)
|
2005-07-20 17:30:45 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoScale *videoscale;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
gint format, width, height;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage img;
|
2005-07-20 17:30:45 +00:00
|
|
|
|
2006-08-20 13:05:44 +00:00
|
|
|
g_assert (size);
|
2005-08-24 15:07:54 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
videoscale = GST_VIDEO_SCALE (trans);
|
2005-07-20 17:30:45 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
if (!parse_caps (caps, &format, &width, &height))
|
|
|
|
return FALSE;
|
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
if (!gst_video_scale_prepare_size (videoscale, format, &img, width, height,
|
|
|
|
size))
|
2005-08-24 13:32:52 +00:00
|
|
|
return FALSE;
|
2005-08-04 19:52:32 +00:00
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
return TRUE;
|
2005-07-20 17:30:45 +00:00
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:17 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_fixate_caps (GstBaseTransform * base, GstPadDirection direction,
|
2005-11-18 17:31:17 +00:00
|
|
|
GstCaps * caps, GstCaps * othercaps)
|
|
|
|
{
|
|
|
|
GstStructure *ins, *outs;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-11-18 17:31:17 +00:00
|
|
|
const GValue *from_par, *to_par;
|
|
|
|
|
|
|
|
g_return_if_fail (gst_caps_is_fixed (caps));
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (base, "trying to fixate othercaps %" GST_PTR_FORMAT
|
|
|
|
" based on caps %" GST_PTR_FORMAT, othercaps, caps);
|
|
|
|
|
|
|
|
ins = gst_caps_get_structure (caps, 0);
|
|
|
|
outs = gst_caps_get_structure (othercaps, 0);
|
|
|
|
|
|
|
|
from_par = gst_structure_get_value (ins, "pixel-aspect-ratio");
|
|
|
|
to_par = gst_structure_get_value (outs, "pixel-aspect-ratio");
|
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
/* we have both PAR but they might not be fixated */
|
2005-11-18 17:31:17 +00:00
|
|
|
if (from_par && to_par) {
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
gint from_w, from_h, from_par_n, from_par_d, to_par_n, to_par_d;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-05-12 22:22:37 +00:00
|
|
|
gint count = 0, w = 0, h = 0;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2006-05-12 22:22:37 +00:00
|
|
|
guint num, den;
|
2005-11-18 17:31:17 +00:00
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
/* from_par should be fixed */
|
|
|
|
g_return_if_fail (gst_value_is_fixed (from_par));
|
|
|
|
|
|
|
|
from_par_n = gst_value_get_fraction_numerator (from_par);
|
|
|
|
from_par_d = gst_value_get_fraction_denominator (from_par);
|
|
|
|
|
|
|
|
/* fixate the out PAR */
|
|
|
|
if (!gst_value_is_fixed (to_par)) {
|
|
|
|
GST_DEBUG_OBJECT (base, "fixating to_par to %dx%d", from_par_n,
|
|
|
|
from_par_d);
|
|
|
|
gst_structure_fixate_field_nearest_fraction (outs, "pixel-aspect-ratio",
|
|
|
|
from_par_n, from_par_d);
|
|
|
|
}
|
|
|
|
|
|
|
|
to_par_n = gst_value_get_fraction_numerator (to_par);
|
|
|
|
to_par_d = gst_value_get_fraction_denominator (to_par);
|
|
|
|
|
2005-11-18 17:31:17 +00:00
|
|
|
/* if both width and height are already fixed, we can't do anything
|
|
|
|
* about it anymore */
|
|
|
|
if (gst_structure_get_int (outs, "width", &w))
|
|
|
|
++count;
|
|
|
|
if (gst_structure_get_int (outs, "height", &h))
|
|
|
|
++count;
|
|
|
|
if (count == 2) {
|
|
|
|
GST_DEBUG_OBJECT (base, "dimensions already set to %dx%d, not fixating",
|
|
|
|
w, h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_structure_get_int (ins, "width", &from_w);
|
|
|
|
gst_structure_get_int (ins, "height", &from_h);
|
|
|
|
|
2006-05-12 21:30:00 +00:00
|
|
|
if (!gst_video_calculate_display_ratio (&num, &den, from_w, from_h,
|
|
|
|
from_par_n, from_par_d, to_par_n, to_par_d)) {
|
|
|
|
GST_ELEMENT_ERROR (base, CORE, NEGOTIATION, (NULL),
|
|
|
|
("Error calculating the output scaled size - integer overflow"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-18 17:31:17 +00:00
|
|
|
GST_DEBUG_OBJECT (base,
|
|
|
|
"scaling input with %dx%d and PAR %d/%d to output PAR %d/%d",
|
|
|
|
from_w, from_h, from_par_n, from_par_d, to_par_n, to_par_d);
|
|
|
|
GST_DEBUG_OBJECT (base, "resulting output should respect ratio of %d/%d",
|
|
|
|
num, den);
|
|
|
|
|
|
|
|
/* now find a width x height that respects this display ratio.
|
|
|
|
* prefer those that have one of w/h the same as the incoming video
|
|
|
|
* using wd / hd = num / den */
|
|
|
|
|
2006-04-28 14:33:45 +00:00
|
|
|
/* if one of the output width or height is fixed, we work from there */
|
|
|
|
if (h) {
|
|
|
|
GST_DEBUG_OBJECT (base, "height is fixed,scaling width");
|
2006-05-19 13:02:46 +00:00
|
|
|
w = (guint) gst_util_uint64_scale_int (h, num, den);
|
2006-04-28 14:33:45 +00:00
|
|
|
} else if (w) {
|
2006-05-19 13:02:46 +00:00
|
|
|
GST_DEBUG_OBJECT (base, "width is fixed, scaling height");
|
|
|
|
h = (guint) gst_util_uint64_scale_int (w, den, num);
|
2005-11-18 17:31:17 +00:00
|
|
|
} else {
|
2006-04-28 14:33:45 +00:00
|
|
|
/* none of width or height is fixed, figure out both of them based only on
|
|
|
|
* the input width and height */
|
|
|
|
/* check hd / den is an integer scale factor, and scale wd with the PAR */
|
|
|
|
if (from_h % den == 0) {
|
|
|
|
GST_DEBUG_OBJECT (base, "keeping video height");
|
|
|
|
h = from_h;
|
2006-05-19 13:02:46 +00:00
|
|
|
w = (guint) gst_util_uint64_scale_int (h, num, den);
|
2006-04-28 14:33:45 +00:00
|
|
|
} else if (from_w % num == 0) {
|
|
|
|
GST_DEBUG_OBJECT (base, "keeping video width");
|
|
|
|
w = from_w;
|
2006-05-19 13:02:46 +00:00
|
|
|
h = (guint) gst_util_uint64_scale_int (w, den, num);
|
2006-04-28 14:33:45 +00:00
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (base, "approximating but keeping video height");
|
|
|
|
h = from_h;
|
2006-05-19 13:02:46 +00:00
|
|
|
w = (guint) gst_util_uint64_scale_int (h, num, den);
|
2006-04-28 14:33:45 +00:00
|
|
|
}
|
2005-11-18 17:31:17 +00:00
|
|
|
}
|
|
|
|
GST_DEBUG_OBJECT (base, "scaling to %dx%d", w, h);
|
|
|
|
|
|
|
|
/* now fixate */
|
2005-11-21 14:29:53 +00:00
|
|
|
gst_structure_fixate_field_nearest_int (outs, "width", w);
|
|
|
|
gst_structure_fixate_field_nearest_int (outs, "height", h);
|
2005-11-18 17:31:17 +00:00
|
|
|
} else {
|
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
if (gst_structure_get_int (ins, "width", &width)) {
|
|
|
|
if (gst_structure_has_field (outs, "width")) {
|
2005-11-21 14:29:53 +00:00
|
|
|
gst_structure_fixate_field_nearest_int (outs, "width", width);
|
2005-11-18 17:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (gst_structure_get_int (ins, "height", &height)) {
|
|
|
|
if (gst_structure_has_field (outs, "height")) {
|
2005-11-21 14:29:53 +00:00
|
|
|
gst_structure_fixate_field_nearest_int (outs, "height", height);
|
2005-11-18 17:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (base, "fixated othercaps to %" GST_PTR_FORMAT, othercaps);
|
|
|
|
}
|
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
static gboolean
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_prepare_image (gint format, GstBuffer * buf,
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage * img, VSImage * img_u, VSImage * img_v)
|
2005-07-01 17:03:13 +00:00
|
|
|
{
|
2005-08-24 15:07:54 +00:00
|
|
|
gboolean res = TRUE;
|
|
|
|
|
|
|
|
img->pixels = GST_BUFFER_DATA (buf);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
switch (format) {
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_I420:
|
|
|
|
case GST_VIDEO_SCALE_YV12:
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
img_u->pixels = img->pixels + GST_ROUND_UP_2 (img->height) * img->stride;
|
|
|
|
img_u->height = GST_ROUND_UP_2 (img->height) / 2;
|
|
|
|
img_u->width = GST_ROUND_UP_2 (img->width) / 2;
|
2006-11-14 23:08:38 +00:00
|
|
|
img_u->stride = GST_ROUND_UP_4 (img_u->width);
|
2005-08-24 15:07:54 +00:00
|
|
|
memcpy (img_v, img_u, sizeof (*img_v));
|
|
|
|
img_v->pixels = img_u->pixels + img_u->height * img_u->stride;
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2005-08-24 15:07:54 +00:00
|
|
|
return res;
|
2005-07-01 17:03:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_transform (GstBaseTransform * trans, GstBuffer * in,
|
2005-07-15 10:44:19 +00:00
|
|
|
GstBuffer * out)
|
2005-07-01 17:03:13 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoScale *videoscale;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage *dest;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage *src;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
VSImage dest_u;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
VSImage dest_v;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage src_u;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
VSImage src_v;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
gint method;
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
videoscale = GST_VIDEO_SCALE (trans);
|
2005-07-01 17:03:13 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
GST_OBJECT_LOCK (videoscale);
|
|
|
|
method = videoscale->method;
|
|
|
|
GST_OBJECT_UNLOCK (videoscale);
|
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
src = &videoscale->src;
|
|
|
|
dest = &videoscale->dest;
|
2005-07-01 16:55:43 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_scale_prepare_image (videoscale->format, in, src, &src_u, &src_v);
|
|
|
|
gst_video_scale_prepare_image (videoscale->format, out, dest, &dest_u,
|
2005-08-24 15:07:54 +00:00
|
|
|
&dest_v);
|
2005-07-01 16:55:43 +00:00
|
|
|
|
2007-12-22 12:06:47 +00:00
|
|
|
switch (method) {
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_NEAREST:
|
2008-05-21 16:44:15 +00:00
|
|
|
GST_LOG_OBJECT (videoscale, "doing nearest scaling");
|
2005-07-01 16:55:43 +00:00
|
|
|
switch (videoscale->format) {
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBx:
|
|
|
|
case GST_VIDEO_SCALE_xRGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRx:
|
|
|
|
case GST_VIDEO_SCALE_xBGR:
|
2006-06-19 09:08:05 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBA:
|
|
|
|
case GST_VIDEO_SCALE_ARGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRA:
|
|
|
|
case GST_VIDEO_SCALE_ABGR:
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_AYUV:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_RGBA (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB:
|
|
|
|
case GST_VIDEO_SCALE_BGR:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_RGB (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_YUY2:
|
|
|
|
case GST_VIDEO_SCALE_YVYU:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_YUYV (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_UYVY:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_UYVY (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_Y:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_Y (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_I420:
|
|
|
|
case GST_VIDEO_SCALE_YV12:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_Y (dest, src, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_nearest_Y (&dest_u, &src_u, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_nearest_Y (&dest_v, &src_v, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB565:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_RGB565 (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB555:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_nearest_RGB555 (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
goto unsupported;
|
2005-07-01 16:55:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_BILINEAR:
|
2008-05-21 16:44:15 +00:00
|
|
|
GST_LOG_OBJECT (videoscale, "doing bilinear scaling");
|
2005-07-01 16:55:43 +00:00
|
|
|
switch (videoscale->format) {
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBx:
|
|
|
|
case GST_VIDEO_SCALE_xRGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRx:
|
|
|
|
case GST_VIDEO_SCALE_xBGR:
|
2006-06-19 09:08:05 +00:00
|
|
|
case GST_VIDEO_SCALE_RGBA:
|
|
|
|
case GST_VIDEO_SCALE_ARGB:
|
|
|
|
case GST_VIDEO_SCALE_BGRA:
|
|
|
|
case GST_VIDEO_SCALE_ABGR:
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_AYUV:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_RGBA (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB:
|
|
|
|
case GST_VIDEO_SCALE_BGR:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_RGB (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_YUY2:
|
|
|
|
case GST_VIDEO_SCALE_YVYU:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_YUYV (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_UYVY:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_UYVY (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_Y:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_Y (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_I420:
|
|
|
|
case GST_VIDEO_SCALE_YV12:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_Y (dest, src, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_linear_Y (&dest_u, &src_u, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_linear_Y (&dest_v, &src_v, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB565:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_RGB565 (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
2005-12-01 01:12:55 +00:00
|
|
|
case GST_VIDEO_SCALE_RGB555:
|
2005-08-24 15:07:54 +00:00
|
|
|
vs_image_scale_linear_RGB555 (dest, src, videoscale->tmp_buf);
|
2005-07-01 16:55:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
goto unsupported;
|
2005-07-01 16:55:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-11-14 23:08:38 +00:00
|
|
|
case GST_VIDEO_SCALE_4TAP:
|
2008-05-21 16:44:15 +00:00
|
|
|
GST_LOG_OBJECT (videoscale, "doing 4tap scaling");
|
2006-11-14 23:08:38 +00:00
|
|
|
switch (videoscale->format) {
|
|
|
|
case GST_VIDEO_SCALE_I420:
|
|
|
|
case GST_VIDEO_SCALE_YV12:
|
|
|
|
vs_image_scale_4tap_Y (dest, src, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_4tap_Y (&dest_u, &src_u, videoscale->tmp_buf);
|
|
|
|
vs_image_scale_4tap_Y (&dest_v, &src_v, videoscale->tmp_buf);
|
|
|
|
break;
|
|
|
|
default:
|
2007-12-22 12:06:47 +00:00
|
|
|
/* FIXME: update gst_video_scale_transform_caps once RGB and/or
|
|
|
|
* other YUV formats work too */
|
2006-11-14 23:08:38 +00:00
|
|
|
goto unsupported;
|
|
|
|
}
|
|
|
|
break;
|
2005-07-01 16:55:43 +00:00
|
|
|
default:
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
goto unknown_mode;
|
2005-07-01 16:55:43 +00:00
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2004-07-27 15:56:55 +00:00
|
|
|
GST_LOG_OBJECT (videoscale, "pushing buffer of %d bytes",
|
2005-07-15 10:44:19 +00:00
|
|
|
GST_BUFFER_SIZE (out));
|
2003-04-22 07:32:50 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
return ret;
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
unsupported:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (videoscale, STREAM, NOT_IMPLEMENTED, (NULL),
|
|
|
|
("Unsupported format %d for scaling method %d",
|
2007-12-22 12:06:47 +00:00
|
|
|
videoscale->format, method));
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
unknown_mode:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (videoscale, STREAM, NOT_IMPLEMENTED, (NULL),
|
|
|
|
("Unknown scaling method %d", videoscale->method));
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
static gboolean
|
2006-03-14 11:11:59 +00:00
|
|
|
gst_video_scale_src_event (GstBaseTransform * trans, GstEvent * event)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoScale *videoscale;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-11-16 12:23:02 +00:00
|
|
|
gboolean ret;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
double a;
|
2008-06-04 04:24:27 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
GstStructure *structure;
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2006-03-14 11:11:59 +00:00
|
|
|
videoscale = GST_VIDEO_SCALE (trans);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-11-16 12:23:02 +00:00
|
|
|
GST_DEBUG_OBJECT (videoscale, "handling %s event",
|
|
|
|
GST_EVENT_TYPE_NAME (event));
|
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_NAVIGATION:
|
|
|
|
event =
|
|
|
|
GST_EVENT (gst_mini_object_make_writable (GST_MINI_OBJECT (event)));
|
examples/seeking/seek.c: Update seek example.
Original commit message from CVS:
* examples/seeking/seek.c: (setup_dynamic_link),
(make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
(query_positions_elems), (query_positions_pads), (do_seek):
Update seek example.
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
(gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
(gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
(gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
(gst_ogg_demux_handle_event),
(gst_ogg_demux_deactivate_current_chain),
(gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
(gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
(gst_ogg_demux_chain), (gst_ogg_demux_send_event),
(gst_ogg_demux_loop):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
* ext/theora/theoradec.c: (theora_dec_src_event),
(theora_dec_src_getcaps), (theora_dec_sink_event),
(theora_dec_push), (theora_dec_chain):
* ext/vorbis/Makefile.am:
* ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
(vorbis_dec_sink_event), (vorbis_dec_push),
(vorbis_handle_data_packet):
* ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
(gst_vorbisenc_chain):
* gst/playback/gststreaminfo.c: (cb_probe):
* gst/subparse/gstsubparse.c: (gst_subparse_src_event):
* gst/videorate/gstvideorate.c: (gst_videorate_event):
* gst/videoscale/gstvideoscale.c:
(gst_videoscale_handle_src_event):
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
* sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
(gst_ximagesink_navigation_send_event):
* sys/xvimage/xvimagesink.c:
(gst_xvimagesink_navigation_send_event):
Various event updates and cleanups
2005-07-27 18:34:29 +00:00
|
|
|
|
|
|
|
structure = (GstStructure *) gst_event_get_structure (event);
|
2005-07-01 17:03:13 +00:00
|
|
|
if (gst_structure_get_double (structure, "pointer_x", &a)) {
|
|
|
|
gst_structure_set (structure, "pointer_x", G_TYPE_DOUBLE,
|
|
|
|
a * videoscale->from_width / videoscale->to_width, NULL);
|
|
|
|
}
|
|
|
|
if (gst_structure_get_double (structure, "pointer_y", &a)) {
|
|
|
|
gst_structure_set (structure, "pointer_y", G_TYPE_DOUBLE,
|
|
|
|
a * videoscale->from_height / videoscale->to_height, NULL);
|
|
|
|
}
|
2005-11-16 12:23:02 +00:00
|
|
|
break;
|
2006-03-14 11:11:59 +00:00
|
|
|
case GST_EVENT_QOS:
|
|
|
|
break;
|
2001-12-22 23:27:17 +00:00
|
|
|
default:
|
2005-11-16 12:23:02 +00:00
|
|
|
break;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
2005-11-16 12:23:02 +00:00
|
|
|
|
2006-03-14 11:11:59 +00:00
|
|
|
ret = GST_BASE_TRANSFORM_CLASS (parent_class)->src_event (trans, event);
|
2005-11-16 12:23:02 +00:00
|
|
|
|
|
|
|
return ret;
|
2001-12-22 23:27:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-22 23:27:17 +00:00
|
|
|
{
|
2006-04-27 00:19:29 +00:00
|
|
|
oil_init ();
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
if (!gst_element_register (plugin, "videoscale", GST_RANK_NONE,
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_TYPE_VIDEO_SCALE))
|
2004-02-25 17:37:26 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (video_scale_debug, "videoscale", 0,
|
2004-03-14 22:34:34 +00:00
|
|
|
"videoscale element");
|
2004-02-25 17:37:26 +00:00
|
|
|
|
2006-11-14 23:08:38 +00:00
|
|
|
vs_4tap_init ();
|
|
|
|
|
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",
|
2005-10-16 13:54:44 +00:00
|
|
|
"Resizes video", plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME,
|
|
|
|
GST_PACKAGE_ORIGIN)
|