Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
/* GStreamer video frame cropping
|
|
|
|
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
2002-07-22 22:08:28 +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
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2002-07-22 22:08:28 +00:00
|
|
|
*/
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-videocrop
|
2018-10-22 09:39:24 +00:00
|
|
|
* @title: videocrop
|
2009-01-23 20:47:40 +00:00
|
|
|
* @see_also: #GstVideoBox
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
*
|
|
|
|
* This element crops video frames, meaning it can remove parts of the
|
|
|
|
* picture on the left, right, top or bottom of the picture and output
|
|
|
|
* a smaller picture than the input picture, with the unwanted parts at the
|
|
|
|
* border removed.
|
2009-01-28 10:29:42 +00:00
|
|
|
*
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
* The videocrop element is similar to the videobox element, but its main
|
|
|
|
* goal is to support a multitude of formats as efficiently as possible.
|
|
|
|
* Unlike videbox, it cannot add borders to the picture and unlike videbox
|
|
|
|
* it will always output images in exactly the same format as the input image.
|
2009-01-28 10:29:42 +00:00
|
|
|
*
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
* If there is nothing to crop, the element will operate in pass-through mode.
|
2009-01-28 10:29:42 +00:00
|
|
|
*
|
2006-09-08 16:47:46 +00:00
|
|
|
* Note that no special efforts are made to handle chroma-subsampled formats
|
|
|
|
* in the case of odd-valued cropping and compensate for sub-unit chroma plane
|
2009-01-28 10:29:42 +00:00
|
|
|
* shifts for such formats in the case where the #GstVideoCrop:left or
|
2018-10-22 09:39:24 +00:00
|
|
|
* #GstVideoCrop:top property is set to an odd number. This doesn't matter for
|
2009-01-28 10:29:42 +00:00
|
|
|
* most use cases, but it might matter for yours.
|
|
|
|
*
|
2018-10-22 09:39:24 +00:00
|
|
|
* ## Example launch line
|
2009-01-28 10:29:42 +00:00
|
|
|
* |[
|
2012-08-26 21:39:55 +00:00
|
|
|
* gst-launch-1.0 -v videotestsrc ! videocrop top=42 left=1 right=4 bottom=0 ! ximagesink
|
2009-01-28 10:29:42 +00:00
|
|
|
* ]|
|
2018-10-22 09:39:24 +00:00
|
|
|
*
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* TODO:
|
|
|
|
* - for packed formats, we could avoid memcpy() in case crop_left
|
|
|
|
* and crop_right are 0 and just create a sub-buffer of the input
|
|
|
|
* buffer
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
|
2002-07-22 22:08:28 +00:00
|
|
|
#include <gst/gst.h>
|
2003-07-06 20:49:52 +00:00
|
|
|
#include <gst/video/video.h>
|
2006-09-02 18:49:01 +00:00
|
|
|
|
|
|
|
#include "gstvideocrop.h"
|
2009-01-23 14:39:46 +00:00
|
|
|
#include "gstaspectratiocrop.h"
|
2006-09-02 18:49:01 +00:00
|
|
|
|
2002-07-22 22:08:28 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (videocrop_debug);
|
|
|
|
#define GST_CAT_DEFAULT videocrop_debug
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2015-04-27 10:22:11 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_LEFT,
|
|
|
|
PROP_RIGHT,
|
|
|
|
PROP_TOP,
|
|
|
|
PROP_BOTTOM
|
2002-07-22 22:08:28 +00:00
|
|
|
};
|
|
|
|
|
2013-05-14 14:28:10 +00:00
|
|
|
/* we support the same caps as aspectratiocrop (sync changes) */
|
2011-10-13 03:39:28 +00:00
|
|
|
#define VIDEO_CROP_CAPS \
|
|
|
|
GST_VIDEO_CAPS_MAKE ("{ RGBx, xRGB, BGRx, xBGR, " \
|
2020-03-09 22:25:03 +00:00
|
|
|
"RGBA, ARGB, BGRA, ABGR, RGB, BGR, AYUV, YUY2, Y444, " \
|
2013-05-14 14:28:10 +00:00
|
|
|
"YVYU, UYVY, I420, YV12, RGB16, RGB15, GRAY8, " \
|
|
|
|
"NV12, NV21, GRAY16_LE, GRAY16_BE }")
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_STATIC_CAPS (VIDEO_CROP_CAPS)
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_STATIC_CAPS (VIDEO_CROP_CAPS)
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2011-10-13 03:39:28 +00:00
|
|
|
#define gst_video_crop_parent_class parent_class
|
2012-10-17 08:20:12 +00:00
|
|
|
G_DEFINE_TYPE (GstVideoCrop, gst_video_crop, GST_TYPE_VIDEO_FILTER);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_video_crop_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_video_crop_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2020-01-03 14:16:02 +00:00
|
|
|
static void gst_video_crop_before_transform (GstBaseTransform * trans,
|
|
|
|
GstBuffer * in);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static GstCaps *gst_video_crop_transform_caps (GstBaseTransform * trans,
|
2011-10-13 03:39:28 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter_caps);
|
2009-01-23 09:49:28 +00:00
|
|
|
static gboolean gst_video_crop_src_event (GstBaseTransform * trans,
|
|
|
|
GstEvent * event);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
static gboolean gst_video_crop_set_info (GstVideoFilter * vfilter, GstCaps * in,
|
|
|
|
GstVideoInfo * in_info, GstCaps * out, GstVideoInfo * out_info);
|
|
|
|
static GstFlowReturn gst_video_crop_transform_frame (GstVideoFilter * vfilter,
|
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame);
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
static gboolean gst_video_crop_decide_allocation (GstBaseTransform * trans,
|
|
|
|
GstQuery * query);
|
|
|
|
static gboolean gst_video_crop_propose_allocation (GstBaseTransform * trans,
|
|
|
|
GstQuery * decide_query, GstQuery * query);
|
|
|
|
static GstFlowReturn gst_video_crop_transform_ip (GstBaseTransform * trans,
|
|
|
|
GstBuffer * buf);
|
|
|
|
|
2009-01-23 09:49:28 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_crop_src_event (GstBaseTransform * trans, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstEvent *new_event;
|
|
|
|
GstStructure *new_structure;
|
|
|
|
const GstStructure *structure;
|
|
|
|
const gchar *event_name;
|
|
|
|
double pointer_x;
|
|
|
|
double pointer_y;
|
|
|
|
|
|
|
|
GstVideoCrop *vcrop = GST_VIDEO_CROP (trans);
|
|
|
|
new_event = NULL;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (vcrop);
|
|
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_NAVIGATION &&
|
|
|
|
(vcrop->crop_left != 0 || vcrop->crop_top != 0)) {
|
|
|
|
structure = gst_event_get_structure (event);
|
|
|
|
event_name = gst_structure_get_string (structure, "event");
|
|
|
|
|
|
|
|
if (event_name &&
|
2009-01-30 17:35:49 +00:00
|
|
|
(strcmp (event_name, "mouse-move") == 0 ||
|
|
|
|
strcmp (event_name, "mouse-button-press") == 0 ||
|
|
|
|
strcmp (event_name, "mouse-button-release") == 0)) {
|
2009-01-23 09:49:28 +00:00
|
|
|
|
|
|
|
if (gst_structure_get_double (structure, "pointer_x", &pointer_x) &&
|
|
|
|
gst_structure_get_double (structure, "pointer_y", &pointer_y)) {
|
|
|
|
|
|
|
|
new_structure = gst_structure_copy (structure);
|
|
|
|
gst_structure_set (new_structure,
|
|
|
|
"pointer_x", G_TYPE_DOUBLE, (double) (pointer_x + vcrop->crop_left),
|
|
|
|
"pointer_y", G_TYPE_DOUBLE, (double) (pointer_y + vcrop->crop_top),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
new_event = gst_event_new_navigation (new_structure);
|
|
|
|
gst_event_unref (event);
|
|
|
|
} else {
|
|
|
|
GST_WARNING_OBJECT (vcrop, "Failed to read navigation event");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (vcrop);
|
2012-02-23 10:16:21 +00:00
|
|
|
|
2009-01-23 09:49:28 +00:00
|
|
|
return GST_BASE_TRANSFORM_CLASS (parent_class)->src_event (trans,
|
|
|
|
(new_event ? new_event : event));
|
|
|
|
}
|
|
|
|
|
2002-07-22 22:08:28 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_video_crop_class_init (GstVideoCropClass * klass)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2011-10-13 03:39:28 +00:00
|
|
|
GstElementClass *element_class;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GstBaseTransformClass *basetransform_class;
|
2012-10-17 08:20:12 +00:00
|
|
|
GstVideoFilterClass *vfilter_class;
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2011-10-13 03:39:28 +00:00
|
|
|
element_class = (GstElementClass *) klass;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
basetransform_class = (GstBaseTransformClass *) klass;
|
2012-10-17 08:20:12 +00:00
|
|
|
vfilter_class = (GstVideoFilterClass *) klass;
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
gobject_class->set_property = gst_video_crop_set_property;
|
|
|
|
gobject_class->get_property = gst_video_crop_get_property;
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2015-04-27 10:22:11 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_LEFT,
|
2012-11-06 14:03:55 +00:00
|
|
|
g_param_spec_int ("left", "Left",
|
|
|
|
"Pixels to crop at left (-1 to auto-crop)", -1, G_MAXINT, 0,
|
2016-05-22 19:14:18 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
2020-01-03 14:16:02 +00:00
|
|
|
GST_PARAM_MUTABLE_PLAYING | GST_PARAM_CONTROLLABLE));
|
2015-04-27 10:22:11 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_RIGHT,
|
2012-11-06 14:03:55 +00:00
|
|
|
g_param_spec_int ("right", "Right",
|
|
|
|
"Pixels to crop at right (-1 to auto-crop)", -1, G_MAXINT, 0,
|
2016-05-22 19:14:18 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
2020-01-03 14:16:02 +00:00
|
|
|
GST_PARAM_MUTABLE_PLAYING | GST_PARAM_CONTROLLABLE));
|
2015-04-27 10:22:11 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_TOP,
|
2016-05-22 19:14:18 +00:00
|
|
|
g_param_spec_int ("top", "Top", "Pixels to crop at top (-1 to auto-crop)",
|
|
|
|
-1, G_MAXINT, 0,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
2020-01-03 14:16:02 +00:00
|
|
|
GST_PARAM_MUTABLE_PLAYING | GST_PARAM_CONTROLLABLE));
|
2015-04-27 10:22:11 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_BOTTOM,
|
2012-11-06 14:03:55 +00:00
|
|
|
g_param_spec_int ("bottom", "Bottom",
|
|
|
|
"Pixels to crop at bottom (-1 to auto-crop)", -1, G_MAXINT, 0,
|
2016-05-22 19:14:18 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
2020-01-03 14:16:02 +00:00
|
|
|
GST_PARAM_MUTABLE_PLAYING | GST_PARAM_CONTROLLABLE));
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class, &sink_template);
|
|
|
|
gst_element_class_add_static_pad_template (element_class, &src_template);
|
2012-04-09 23:51:41 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class, "Crop",
|
2012-02-23 10:16:21 +00:00
|
|
|
"Filter/Effect/Video",
|
|
|
|
"Crops video into a user-defined region",
|
|
|
|
"Tim-Philipp Müller <tim centricular net>");
|
|
|
|
|
2020-01-03 14:16:02 +00:00
|
|
|
basetransform_class->before_transform =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_before_transform);
|
2017-12-08 03:08:42 +00:00
|
|
|
basetransform_class->transform_ip_on_passthrough = FALSE;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
basetransform_class->transform_caps =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_transform_caps);
|
2009-01-23 09:49:28 +00:00
|
|
|
basetransform_class->src_event = GST_DEBUG_FUNCPTR (gst_video_crop_src_event);
|
2017-12-08 03:08:42 +00:00
|
|
|
basetransform_class->decide_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_decide_allocation);
|
|
|
|
basetransform_class->propose_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_propose_allocation);
|
|
|
|
basetransform_class->transform_ip =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_transform_ip);
|
2012-10-17 08:20:12 +00:00
|
|
|
|
|
|
|
vfilter_class->set_info = GST_DEBUG_FUNCPTR (gst_video_crop_set_info);
|
|
|
|
vfilter_class->transform_frame =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_crop_transform_frame);
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-10-13 03:39:28 +00:00
|
|
|
gst_video_crop_init (GstVideoCrop * vcrop)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
vcrop->crop_right = 0;
|
|
|
|
vcrop->crop_left = 0;
|
|
|
|
vcrop->crop_top = 0;
|
|
|
|
vcrop->crop_bottom = 0;
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
2007-01-28 18:28:33 +00:00
|
|
|
#define ROUND_DOWN_2(n) ((n)&(~1))
|
|
|
|
|
2002-07-22 22:08:28 +00:00
|
|
|
static void
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
gst_video_crop_transform_packed_complex (GstVideoCrop * vcrop,
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame, gint x, gint y)
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
{
|
|
|
|
guint8 *in_data, *out_data;
|
|
|
|
guint i, dx;
|
2012-10-17 08:20:12 +00:00
|
|
|
gint width, height;
|
2011-10-13 03:39:28 +00:00
|
|
|
gint in_stride;
|
|
|
|
gint out_stride;
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
width = GST_VIDEO_FRAME_WIDTH (out_frame);
|
|
|
|
height = GST_VIDEO_FRAME_HEIGHT (out_frame);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
in_data = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 0);
|
|
|
|
out_data = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 0);
|
2011-10-13 03:39:28 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
in_stride = GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 0);
|
|
|
|
out_stride = GST_VIDEO_FRAME_PLANE_STRIDE (out_frame, 0);
|
2011-10-13 03:39:28 +00:00
|
|
|
|
|
|
|
in_data += vcrop->crop_top * in_stride;
|
2007-01-28 18:28:33 +00:00
|
|
|
|
|
|
|
/* rounding down here so we end up at the start of a macro-pixel and not
|
|
|
|
* in the middle of one */
|
2012-10-17 08:20:12 +00:00
|
|
|
in_data += ROUND_DOWN_2 (vcrop->crop_left) *
|
|
|
|
GST_VIDEO_FRAME_COMP_PSTRIDE (in_frame, 0);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
dx = width * GST_VIDEO_FRAME_COMP_PSTRIDE (out_frame, 0);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2007-01-28 18:28:33 +00:00
|
|
|
/* UYVY = 4:2:2 - [U0 Y0 V0 Y1] [U2 Y2 V2 Y3] [U4 Y4 V4 Y5]
|
|
|
|
* YUYV = 4:2:2 - [Y0 U0 Y1 V0] [Y2 U2 Y3 V2] [Y4 U4 Y5 V4] = YUY2 */
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
if ((vcrop->crop_left % 2) != 0) {
|
2012-10-17 08:20:12 +00:00
|
|
|
for (i = 0; i < height; ++i) {
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
gint j;
|
|
|
|
|
|
|
|
memcpy (out_data, in_data, dx);
|
|
|
|
|
2007-01-28 18:28:33 +00:00
|
|
|
/* move just the Y samples one pixel to the left, don't worry about
|
|
|
|
* chroma shift */
|
2012-10-17 08:20:12 +00:00
|
|
|
for (j = vcrop->macro_y_off; j < out_stride - 2; j += 2)
|
2007-01-28 18:28:33 +00:00
|
|
|
out_data[j] = in_data[j + 2];
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2011-10-13 03:39:28 +00:00
|
|
|
in_data += in_stride;
|
|
|
|
out_data += out_stride;
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-10-17 08:20:12 +00:00
|
|
|
for (i = 0; i < height; ++i) {
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
memcpy (out_data, in_data, dx);
|
2011-10-13 03:39:28 +00:00
|
|
|
in_data += in_stride;
|
|
|
|
out_data += out_stride;
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_video_crop_transform_packed_simple (GstVideoCrop * vcrop,
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame, gint x, gint y)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
guint8 *in_data, *out_data;
|
2012-10-17 08:20:12 +00:00
|
|
|
gint width, height;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
guint i, dx;
|
2011-10-13 03:39:28 +00:00
|
|
|
gint in_stride, out_stride;
|
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
width = GST_VIDEO_FRAME_WIDTH (out_frame);
|
|
|
|
height = GST_VIDEO_FRAME_HEIGHT (out_frame);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
in_data = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 0);
|
|
|
|
out_data = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 0);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
in_stride = GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 0);
|
|
|
|
out_stride = GST_VIDEO_FRAME_PLANE_STRIDE (out_frame, 0);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
in_data += (vcrop->crop_top + y) * in_stride;
|
|
|
|
in_data +=
|
|
|
|
(vcrop->crop_left + x) * GST_VIDEO_FRAME_COMP_PSTRIDE (in_frame, 0);
|
2004-12-18 23:43:47 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
dx = width * GST_VIDEO_FRAME_COMP_PSTRIDE (out_frame, 0);
|
2011-10-13 03:39:28 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
for (i = 0; i < height; ++i) {
|
2006-09-08 11:04:24 +00:00
|
|
|
memcpy (out_data, in_data, dx);
|
2011-10-13 03:39:28 +00:00
|
|
|
in_data += in_stride;
|
|
|
|
out_data += out_stride;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
}
|
2004-12-18 23:43:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-10-17 08:20:12 +00:00
|
|
|
gst_video_crop_transform_planar (GstVideoCrop * vcrop,
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame, gint x, gint y)
|
2004-12-18 23:43:47 +00:00
|
|
|
{
|
2020-03-09 22:25:03 +00:00
|
|
|
const GstVideoFormatInfo *format_info;
|
2017-12-08 03:08:42 +00:00
|
|
|
gint crop_top, crop_left;
|
2011-10-13 03:39:28 +00:00
|
|
|
|
2020-03-09 22:25:03 +00:00
|
|
|
format_info = in_frame->info.finfo;
|
2017-12-08 03:08:42 +00:00
|
|
|
crop_left = vcrop->crop_left + x;
|
|
|
|
crop_top = vcrop->crop_top + y;
|
2004-12-18 23:43:47 +00:00
|
|
|
|
2020-03-09 22:25:03 +00:00
|
|
|
for (guint p = 0; p < GST_VIDEO_FRAME_N_PLANES (in_frame); ++p) {
|
|
|
|
guint8 *plane_in, *plane_out;
|
|
|
|
guint sub_w_factor, sub_h_factor;
|
|
|
|
guint subsampled_crop_left, subsampled_crop_top;
|
|
|
|
guint copy_width;
|
|
|
|
|
|
|
|
/* plane */
|
|
|
|
plane_in = GST_VIDEO_FRAME_PLANE_DATA (in_frame, p);
|
|
|
|
plane_out = GST_VIDEO_FRAME_PLANE_DATA (out_frame, p);
|
|
|
|
|
|
|
|
/* apply crop top/left
|
|
|
|
* crop_top and crop_left have to be rounded down to the corresponding
|
|
|
|
* subsampling factor, since, e.g.: the first line in a subsampled plane
|
|
|
|
* describes 2 lines in the actual image. A crop_top of 1 thus should
|
|
|
|
* not shift the pointer of the input plane. */
|
|
|
|
sub_w_factor = 1 << GST_VIDEO_FORMAT_INFO_W_SUB (format_info, p);
|
|
|
|
sub_h_factor = 1 << GST_VIDEO_FORMAT_INFO_H_SUB (format_info, p);
|
|
|
|
subsampled_crop_left = GST_ROUND_DOWN_N ((guint) crop_left, sub_w_factor);
|
|
|
|
subsampled_crop_top = GST_ROUND_DOWN_N ((guint) crop_top, sub_h_factor);
|
|
|
|
|
|
|
|
plane_in +=
|
|
|
|
GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (format_info, p,
|
|
|
|
subsampled_crop_top) * GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, p);
|
|
|
|
plane_in +=
|
|
|
|
GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (format_info, p,
|
|
|
|
subsampled_crop_left);
|
|
|
|
copy_width = (guint) GST_VIDEO_FRAME_COMP_WIDTH (out_frame, p);
|
|
|
|
|
|
|
|
for (gint i = 0; i < GST_VIDEO_FRAME_COMP_HEIGHT (out_frame, p); ++i) {
|
|
|
|
memcpy (plane_out, plane_in, copy_width);
|
|
|
|
plane_in += GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, p);
|
|
|
|
plane_out += GST_VIDEO_FRAME_PLANE_STRIDE (out_frame, p);
|
|
|
|
}
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
}
|
2004-12-18 23:43:47 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 12:27:16 +00:00
|
|
|
static void
|
|
|
|
gst_video_crop_transform_semi_planar (GstVideoCrop * vcrop,
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame, gint x, gint y)
|
2012-11-09 12:27:16 +00:00
|
|
|
{
|
|
|
|
gint width, height;
|
2017-12-08 03:08:42 +00:00
|
|
|
gint crop_top, crop_left;
|
2012-11-09 12:27:16 +00:00
|
|
|
guint8 *y_out, *uv_out;
|
|
|
|
guint8 *y_in, *uv_in;
|
|
|
|
guint i, dx;
|
|
|
|
|
|
|
|
width = GST_VIDEO_FRAME_WIDTH (out_frame);
|
|
|
|
height = GST_VIDEO_FRAME_HEIGHT (out_frame);
|
2017-12-08 03:08:42 +00:00
|
|
|
crop_left = vcrop->crop_left + x;
|
|
|
|
crop_top = vcrop->crop_top + y;
|
2012-11-09 12:27:16 +00:00
|
|
|
|
|
|
|
/* Y plane */
|
|
|
|
y_in = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 0);
|
|
|
|
y_out = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 0);
|
|
|
|
|
|
|
|
/* UV plane */
|
|
|
|
uv_in = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 1);
|
|
|
|
uv_out = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 1);
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
y_in += crop_top * GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 0) + crop_left;
|
2012-11-09 12:27:16 +00:00
|
|
|
dx = width;
|
|
|
|
|
|
|
|
for (i = 0; i < height; ++i) {
|
|
|
|
memcpy (y_out, y_in, dx);
|
|
|
|
y_in += GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 0);
|
|
|
|
y_out += GST_VIDEO_FRAME_PLANE_STRIDE (out_frame, 0);
|
|
|
|
}
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
uv_in += (crop_top / 2) * GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 1);
|
|
|
|
uv_in += GST_ROUND_DOWN_2 (crop_left);
|
2012-11-09 12:27:16 +00:00
|
|
|
dx = GST_ROUND_UP_2 (width);
|
|
|
|
|
|
|
|
for (i = 0; i < GST_ROUND_UP_2 (height) / 2; i++) {
|
|
|
|
memcpy (uv_out, uv_in, dx);
|
|
|
|
uv_in += GST_VIDEO_FRAME_PLANE_STRIDE (in_frame, 1);
|
|
|
|
uv_out += GST_VIDEO_FRAME_PLANE_STRIDE (out_frame, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static GstFlowReturn
|
2012-10-17 08:20:12 +00:00
|
|
|
gst_video_crop_transform_frame (GstVideoFilter * vfilter,
|
|
|
|
GstVideoFrame * in_frame, GstVideoFrame * out_frame)
|
2004-12-18 23:43:47 +00:00
|
|
|
{
|
2012-10-17 08:20:12 +00:00
|
|
|
GstVideoCrop *vcrop = GST_VIDEO_CROP (vfilter);
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoCropMeta *meta = gst_buffer_get_video_crop_meta (in_frame->buffer);
|
|
|
|
gint x = 0, y = 0;
|
2004-12-18 23:43:47 +00:00
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
if (G_UNLIKELY (vcrop->need_update)) {
|
|
|
|
if (!gst_video_crop_set_info (vfilter, NULL, &vcrop->in_info, NULL,
|
|
|
|
&vcrop->out_info)) {
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
if (meta) {
|
|
|
|
x = meta->x;
|
|
|
|
y = meta->y;
|
|
|
|
}
|
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
switch (vcrop->packing) {
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
case VIDEO_CROP_PIXEL_FORMAT_PACKED_SIMPLE:
|
2017-12-08 03:08:42 +00:00
|
|
|
gst_video_crop_transform_packed_simple (vcrop, in_frame, out_frame, x, y);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
break;
|
|
|
|
case VIDEO_CROP_PIXEL_FORMAT_PACKED_COMPLEX:
|
2017-12-08 03:08:42 +00:00
|
|
|
gst_video_crop_transform_packed_complex (vcrop, in_frame, out_frame, x,
|
|
|
|
y);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
break;
|
|
|
|
case VIDEO_CROP_PIXEL_FORMAT_PLANAR:
|
2017-12-08 03:08:42 +00:00
|
|
|
gst_video_crop_transform_planar (vcrop, in_frame, out_frame, x, y);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
break;
|
2012-11-09 12:27:16 +00:00
|
|
|
case VIDEO_CROP_PIXEL_FORMAT_SEMI_PLANAR:
|
2017-12-08 03:08:42 +00:00
|
|
|
gst_video_crop_transform_semi_planar (vcrop, in_frame, out_frame, x, y);
|
2012-11-09 12:27:16 +00:00
|
|
|
break;
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
2004-12-18 23:43:47 +00:00
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
return GST_FLOW_OK;
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_crop_decide_allocation (GstBaseTransform * trans, GstQuery * query)
|
|
|
|
{
|
|
|
|
GstVideoCrop *crop = GST_VIDEO_CROP (trans);
|
|
|
|
gboolean use_crop_meta;
|
|
|
|
|
|
|
|
use_crop_meta = (gst_query_find_allocation_meta (query,
|
|
|
|
GST_VIDEO_CROP_META_API_TYPE, NULL) &&
|
|
|
|
gst_query_find_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL));
|
|
|
|
|
|
|
|
if ((crop->crop_left | crop->crop_right | crop->crop_top | crop->
|
|
|
|
crop_bottom) == 0) {
|
|
|
|
GST_INFO_OBJECT (crop, "we are using passthrough");
|
|
|
|
gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (crop), TRUE);
|
|
|
|
gst_base_transform_set_in_place (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
} else if (use_crop_meta) {
|
|
|
|
GST_INFO_OBJECT (crop, "we are doing in-place transform using crop meta");
|
|
|
|
gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
gst_base_transform_set_in_place (GST_BASE_TRANSFORM (crop), TRUE);
|
|
|
|
} else {
|
|
|
|
GST_INFO_OBJECT (crop, "we are not using passthrough");
|
|
|
|
gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
gst_base_transform_set_in_place (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_BASE_TRANSFORM_CLASS (parent_class)->decide_allocation (trans,
|
|
|
|
query);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_video_crop_propose_allocation (GstBaseTransform * trans,
|
|
|
|
GstQuery * decide_query, GstQuery * query)
|
|
|
|
{
|
|
|
|
/* if we are not passthrough, we can handle video meta and crop meta */
|
|
|
|
if (decide_query) {
|
|
|
|
GST_DEBUG_OBJECT (trans, "Advertising video meta and crop meta support");
|
|
|
|
gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, NULL);
|
|
|
|
gst_query_add_allocation_meta (query, GST_VIDEO_CROP_META_API_TYPE, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_BASE_TRANSFORM_CLASS (parent_class)->propose_allocation (trans,
|
|
|
|
decide_query, query);
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:16:02 +00:00
|
|
|
static void
|
|
|
|
gst_video_crop_before_transform (GstBaseTransform * trans, GstBuffer * in)
|
|
|
|
{
|
|
|
|
GstVideoCrop *video_crop = GST_VIDEO_CROP (trans);
|
|
|
|
GstClockTime timestamp, stream_time;
|
|
|
|
|
|
|
|
timestamp = GST_BUFFER_TIMESTAMP (in);
|
|
|
|
stream_time =
|
|
|
|
gst_segment_to_stream_time (&trans->segment, GST_FORMAT_TIME, timestamp);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (video_crop, "sync to %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (timestamp));
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (stream_time))
|
|
|
|
gst_object_sync_values (GST_OBJECT (video_crop), stream_time);
|
|
|
|
}
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_video_crop_transform_ip (GstBaseTransform * trans, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
GstVideoCrop *vcrop = GST_VIDEO_CROP (trans);
|
2019-11-12 22:28:22 +00:00
|
|
|
GstVideoFilter *vfilter = GST_VIDEO_FILTER (trans);
|
2017-12-08 03:08:42 +00:00
|
|
|
GstVideoMeta *video_meta;
|
|
|
|
GstVideoCropMeta *crop_meta;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (trans, "Transforming in-place");
|
|
|
|
|
2019-11-12 22:28:22 +00:00
|
|
|
if (G_UNLIKELY (vcrop->need_update)) {
|
|
|
|
if (!gst_video_crop_set_info (vfilter, NULL, &vcrop->in_info, NULL,
|
|
|
|
&vcrop->out_info)) {
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 03:08:42 +00:00
|
|
|
/* The video meta is required since we are going to make the caps
|
|
|
|
* width/height smaller, which would not result in a usable GstVideoInfo for
|
|
|
|
* mapping the buffer. */
|
|
|
|
video_meta = gst_buffer_get_video_meta (buf);
|
|
|
|
if (!video_meta) {
|
|
|
|
video_meta = gst_buffer_add_video_meta (buf, GST_VIDEO_FRAME_FLAG_NONE,
|
|
|
|
GST_VIDEO_INFO_FORMAT (&vcrop->in_info), vcrop->in_info.width,
|
|
|
|
vcrop->in_info.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
crop_meta = gst_buffer_get_video_crop_meta (buf);
|
2019-11-11 18:18:52 +00:00
|
|
|
if (!crop_meta)
|
2017-12-08 03:08:42 +00:00
|
|
|
crop_meta = gst_buffer_add_video_crop_meta (buf);
|
|
|
|
|
|
|
|
crop_meta->x += vcrop->crop_left;
|
|
|
|
crop_meta->y += vcrop->crop_top;
|
|
|
|
crop_meta->width = GST_VIDEO_INFO_WIDTH (&vcrop->out_info);
|
|
|
|
crop_meta->height = GST_VIDEO_INFO_HEIGHT (&vcrop->out_info);
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static gint
|
|
|
|
gst_video_crop_transform_dimension (gint val, gint delta)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
gint64 new_val = (gint64) val + (gint64) delta;
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
new_val = CLAMP (new_val, 1, G_MAXINT);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
return (gint) new_val;
|
|
|
|
}
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_crop_transform_dimension_value (const GValue * src_val,
|
2012-11-06 14:03:55 +00:00
|
|
|
gint delta, GValue * dest_val, GstPadDirection direction, gboolean dynamic)
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
if (G_VALUE_HOLDS_INT (src_val)) {
|
|
|
|
gint ival = g_value_get_int (src_val);
|
|
|
|
ival = gst_video_crop_transform_dimension (ival, delta);
|
2012-11-06 14:03:55 +00:00
|
|
|
|
|
|
|
if (dynamic) {
|
|
|
|
if (direction == GST_PAD_SRC) {
|
|
|
|
if (ival == G_MAXINT) {
|
|
|
|
g_value_init (dest_val, G_TYPE_INT);
|
|
|
|
g_value_set_int (dest_val, ival);
|
|
|
|
} else {
|
|
|
|
g_value_init (dest_val, GST_TYPE_INT_RANGE);
|
|
|
|
gst_value_set_int_range (dest_val, ival, G_MAXINT);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ival == 1) {
|
|
|
|
g_value_init (dest_val, G_TYPE_INT);
|
|
|
|
g_value_set_int (dest_val, ival);
|
|
|
|
} else {
|
|
|
|
g_value_init (dest_val, GST_TYPE_INT_RANGE);
|
|
|
|
gst_value_set_int_range (dest_val, 1, ival);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_value_init (dest_val, G_TYPE_INT);
|
|
|
|
g_value_set_int (dest_val, ival);
|
|
|
|
}
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
} else if (GST_VALUE_HOLDS_INT_RANGE (src_val)) {
|
|
|
|
gint min = gst_value_get_int_range_min (src_val);
|
|
|
|
gint max = gst_value_get_int_range_max (src_val);
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
min = gst_video_crop_transform_dimension (min, delta);
|
|
|
|
max = gst_video_crop_transform_dimension (max, delta);
|
2012-11-06 14:03:55 +00:00
|
|
|
|
|
|
|
if (dynamic) {
|
|
|
|
if (direction == GST_PAD_SRC)
|
|
|
|
max = G_MAXINT;
|
|
|
|
else
|
|
|
|
min = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (min == max) {
|
|
|
|
g_value_init (dest_val, G_TYPE_INT);
|
|
|
|
g_value_set_int (dest_val, min);
|
|
|
|
} else {
|
|
|
|
g_value_init (dest_val, GST_TYPE_INT_RANGE);
|
|
|
|
gst_value_set_int_range (dest_val, min, max);
|
|
|
|
}
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
} else if (GST_VALUE_HOLDS_LIST (src_val)) {
|
|
|
|
gint i;
|
2003-07-25 08:41:44 +00:00
|
|
|
|
2012-11-06 14:03:55 +00:00
|
|
|
g_value_init (dest_val, GST_TYPE_LIST);
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
for (i = 0; i < gst_value_list_get_size (src_val); ++i) {
|
|
|
|
const GValue *list_val;
|
2020-03-09 22:23:50 +00:00
|
|
|
GValue newval = G_VALUE_INIT;
|
2003-07-25 08:41:44 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
list_val = gst_value_list_get_value (src_val, i);
|
2012-11-06 14:03:55 +00:00
|
|
|
if (gst_video_crop_transform_dimension_value (list_val, delta, &newval,
|
|
|
|
direction, dynamic))
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
gst_value_list_append_value (dest_val, &newval);
|
|
|
|
g_value_unset (&newval);
|
|
|
|
}
|
2003-07-25 08:41:44 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
if (gst_value_list_get_size (dest_val) == 0) {
|
|
|
|
g_value_unset (dest_val);
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = FALSE;
|
2003-01-30 20:24:26 +00:00
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
return ret;
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static GstCaps *
|
|
|
|
gst_video_crop_transform_caps (GstBaseTransform * trans,
|
2011-10-13 03:39:28 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter_caps)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GstVideoCrop *vcrop;
|
|
|
|
GstCaps *other_caps;
|
2012-11-06 14:03:55 +00:00
|
|
|
gint dy, dx, i, left, right, bottom, top;
|
|
|
|
gboolean w_dynamic, h_dynamic;
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
vcrop = GST_VIDEO_CROP (trans);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
GST_OBJECT_LOCK (vcrop);
|
|
|
|
|
2008-11-25 16:06:22 +00:00
|
|
|
GST_LOG_OBJECT (vcrop, "l=%d,r=%d,b=%d,t=%d",
|
2012-11-06 14:03:55 +00:00
|
|
|
vcrop->prop_left, vcrop->prop_right, vcrop->prop_bottom, vcrop->prop_top);
|
|
|
|
|
|
|
|
w_dynamic = (vcrop->prop_left == -1 || vcrop->prop_right == -1);
|
|
|
|
h_dynamic = (vcrop->prop_top == -1 || vcrop->prop_bottom == -1);
|
|
|
|
|
|
|
|
left = (vcrop->prop_left == -1) ? 0 : vcrop->prop_left;
|
|
|
|
right = (vcrop->prop_right == -1) ? 0 : vcrop->prop_right;
|
|
|
|
bottom = (vcrop->prop_bottom == -1) ? 0 : vcrop->prop_bottom;
|
|
|
|
top = (vcrop->prop_top == -1) ? 0 : vcrop->prop_top;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
GST_OBJECT_UNLOCK (vcrop);
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
if (direction == GST_PAD_SRC) {
|
2012-11-06 14:03:55 +00:00
|
|
|
dx = left + right;
|
|
|
|
dy = top + bottom;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
} else {
|
2012-11-06 14:03:55 +00:00
|
|
|
dx = 0 - (left + right);
|
|
|
|
dy = 0 - (top + bottom);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
}
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_LOG_OBJECT (vcrop, "transforming caps %" GST_PTR_FORMAT, caps);
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
other_caps = gst_caps_new_empty ();
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
for (i = 0; i < gst_caps_get_size (caps); ++i) {
|
|
|
|
const GValue *v;
|
|
|
|
GstStructure *structure, *new_structure;
|
2020-03-09 22:23:50 +00:00
|
|
|
GValue w_val = G_VALUE_INIT, h_val = G_VALUE_INIT;
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
structure = gst_caps_get_structure (caps, i);
|
|
|
|
|
|
|
|
v = gst_structure_get_value (structure, "width");
|
2012-11-06 14:03:55 +00:00
|
|
|
if (!gst_video_crop_transform_dimension_value (v, dx, &w_val, direction,
|
|
|
|
w_dynamic)) {
|
2019-09-02 12:27:35 +00:00
|
|
|
GST_WARNING_OBJECT (vcrop, "could not transform width value with dx=%d"
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
", caps structure=%" GST_PTR_FORMAT, dx, structure);
|
|
|
|
continue;
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
v = gst_structure_get_value (structure, "height");
|
2012-11-06 14:03:55 +00:00
|
|
|
if (!gst_video_crop_transform_dimension_value (v, dy, &h_val, direction,
|
|
|
|
h_dynamic)) {
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
g_value_unset (&w_val);
|
2019-09-02 12:27:35 +00:00
|
|
|
GST_WARNING_OBJECT (vcrop, "could not transform height value with dy=%d"
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
", caps structure=%" GST_PTR_FORMAT, dy, structure);
|
|
|
|
continue;
|
|
|
|
}
|
2004-12-18 23:43:47 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
new_structure = gst_structure_copy (structure);
|
|
|
|
gst_structure_set_value (new_structure, "width", &w_val);
|
|
|
|
gst_structure_set_value (new_structure, "height", &h_val);
|
|
|
|
g_value_unset (&w_val);
|
|
|
|
g_value_unset (&h_val);
|
|
|
|
GST_LOG_OBJECT (vcrop, "transformed structure %2d: %" GST_PTR_FORMAT
|
|
|
|
" => %" GST_PTR_FORMAT, i, structure, new_structure);
|
|
|
|
gst_caps_append_structure (other_caps, new_structure);
|
2004-12-18 23:43:47 +00:00
|
|
|
}
|
|
|
|
|
2012-07-27 09:31:13 +00:00
|
|
|
if (!gst_caps_is_empty (other_caps) && filter_caps) {
|
2011-10-13 03:39:28 +00:00
|
|
|
GstCaps *tmp = gst_caps_intersect_full (filter_caps, other_caps,
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_replace (&other_caps, tmp);
|
|
|
|
gst_caps_unref (tmp);
|
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
return other_caps;
|
|
|
|
}
|
2003-07-06 20:49:52 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static gboolean
|
2012-10-17 08:20:12 +00:00
|
|
|
gst_video_crop_set_info (GstVideoFilter * vfilter, GstCaps * in,
|
|
|
|
GstVideoInfo * in_info, GstCaps * out, GstVideoInfo * out_info)
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
{
|
2012-10-17 08:20:12 +00:00
|
|
|
GstVideoCrop *crop = GST_VIDEO_CROP (vfilter);
|
2012-11-06 14:03:55 +00:00
|
|
|
int dx, dy;
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
GST_OBJECT_LOCK (crop);
|
|
|
|
crop->need_update = FALSE;
|
2012-11-06 14:03:55 +00:00
|
|
|
crop->crop_left = crop->prop_left;
|
|
|
|
crop->crop_right = crop->prop_right;
|
|
|
|
crop->crop_top = crop->prop_top;
|
|
|
|
crop->crop_bottom = crop->prop_bottom;
|
2014-12-15 23:19:05 +00:00
|
|
|
GST_OBJECT_UNLOCK (crop);
|
2012-11-06 14:03:55 +00:00
|
|
|
|
|
|
|
dx = GST_VIDEO_INFO_WIDTH (in_info) - GST_VIDEO_INFO_WIDTH (out_info);
|
|
|
|
dy = GST_VIDEO_INFO_HEIGHT (in_info) - GST_VIDEO_INFO_HEIGHT (out_info);
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
if (crop->crop_left == -1 && crop->crop_right == -1) {
|
2012-11-06 14:03:55 +00:00
|
|
|
crop->crop_left = dx / 2;
|
|
|
|
crop->crop_right = dx / 2 + (dx & 1);
|
2014-12-15 23:19:05 +00:00
|
|
|
} else if (crop->crop_left == -1) {
|
|
|
|
if (G_UNLIKELY (crop->crop_right > dx))
|
2012-11-06 14:03:55 +00:00
|
|
|
goto cropping_too_much;
|
2014-12-15 23:19:05 +00:00
|
|
|
crop->crop_left = dx - crop->crop_right;
|
|
|
|
} else if (crop->crop_right == -1) {
|
|
|
|
if (G_UNLIKELY (crop->crop_left > dx))
|
2012-11-06 14:03:55 +00:00
|
|
|
goto cropping_too_much;
|
2014-12-15 23:19:05 +00:00
|
|
|
crop->crop_right = dx - crop->crop_left;
|
2012-11-06 14:03:55 +00:00
|
|
|
}
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
if (crop->crop_top == -1 && crop->crop_bottom == -1) {
|
2012-11-06 14:03:55 +00:00
|
|
|
crop->crop_top = dy / 2;
|
|
|
|
crop->crop_bottom = dy / 2 + (dy & 1);
|
2014-12-15 23:19:05 +00:00
|
|
|
} else if (crop->crop_top == -1) {
|
|
|
|
if (G_UNLIKELY (crop->crop_bottom > dy))
|
2012-11-06 14:03:55 +00:00
|
|
|
goto cropping_too_much;
|
2014-12-15 23:19:05 +00:00
|
|
|
crop->crop_top = dy - crop->crop_bottom;
|
|
|
|
} else if (crop->crop_bottom == -1) {
|
|
|
|
if (G_UNLIKELY (crop->crop_top > dy))
|
2012-11-06 14:03:55 +00:00
|
|
|
goto cropping_too_much;
|
2014-12-15 23:19:05 +00:00
|
|
|
crop->crop_bottom = dy - crop->crop_top;
|
2012-11-06 14:03:55 +00:00
|
|
|
}
|
2008-11-25 16:06:22 +00:00
|
|
|
|
2011-10-13 03:39:28 +00:00
|
|
|
if (G_UNLIKELY ((crop->crop_left + crop->crop_right) >=
|
2012-10-17 08:20:12 +00:00
|
|
|
GST_VIDEO_INFO_WIDTH (in_info)
|
2011-10-13 03:39:28 +00:00
|
|
|
|| (crop->crop_top + crop->crop_bottom) >=
|
2012-10-17 08:20:12 +00:00
|
|
|
GST_VIDEO_INFO_HEIGHT (in_info)))
|
2008-11-25 16:06:22 +00:00
|
|
|
goto cropping_too_much;
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
if (in && out)
|
|
|
|
GST_LOG_OBJECT (crop, "incaps = %" GST_PTR_FORMAT ", outcaps = %"
|
|
|
|
GST_PTR_FORMAT, in, out);
|
2008-11-25 16:06:22 +00:00
|
|
|
|
2012-10-17 08:20:12 +00:00
|
|
|
if (GST_VIDEO_INFO_IS_RGB (in_info)
|
|
|
|
|| GST_VIDEO_INFO_IS_GRAY (in_info)) {
|
|
|
|
crop->packing = VIDEO_CROP_PIXEL_FORMAT_PACKED_SIMPLE;
|
|
|
|
} else {
|
|
|
|
switch (GST_VIDEO_INFO_FORMAT (in_info)) {
|
|
|
|
case GST_VIDEO_FORMAT_AYUV:
|
|
|
|
crop->packing = VIDEO_CROP_PIXEL_FORMAT_PACKED_SIMPLE;
|
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_YVYU:
|
|
|
|
case GST_VIDEO_FORMAT_YUY2:
|
|
|
|
case GST_VIDEO_FORMAT_UYVY:
|
|
|
|
crop->packing = VIDEO_CROP_PIXEL_FORMAT_PACKED_COMPLEX;
|
|
|
|
if (GST_VIDEO_INFO_FORMAT (in_info) == GST_VIDEO_FORMAT_UYVY) {
|
|
|
|
/* UYVY = 4:2:2 - [U0 Y0 V0 Y1] [U2 Y2 V2 Y3] [U4 Y4 V4 Y5] */
|
|
|
|
crop->macro_y_off = 1;
|
|
|
|
} else {
|
|
|
|
/* YUYV = 4:2:2 - [Y0 U0 Y1 V0] [Y2 U2 Y3 V2] [Y4 U4 Y5 V4] = YUY2 */
|
|
|
|
crop->macro_y_off = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_VIDEO_FORMAT_I420:
|
|
|
|
case GST_VIDEO_FORMAT_YV12:
|
2020-03-09 22:25:03 +00:00
|
|
|
case GST_VIDEO_FORMAT_Y444:
|
2012-10-17 08:20:12 +00:00
|
|
|
crop->packing = VIDEO_CROP_PIXEL_FORMAT_PLANAR;
|
|
|
|
break;
|
2012-11-09 12:27:16 +00:00
|
|
|
case GST_VIDEO_FORMAT_NV12:
|
|
|
|
case GST_VIDEO_FORMAT_NV21:
|
|
|
|
crop->packing = VIDEO_CROP_PIXEL_FORMAT_SEMI_PLANAR;
|
|
|
|
break;
|
2012-10-17 08:20:12 +00:00
|
|
|
default:
|
|
|
|
goto unknown_format;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
crop->in_info = *in_info;
|
|
|
|
crop->out_info = *out_info;
|
|
|
|
|
2019-11-11 18:19:08 +00:00
|
|
|
/* Ensure our decide_allocation will be called again when needed */
|
|
|
|
if (gst_base_transform_is_passthrough (GST_BASE_TRANSFORM (crop))) {
|
|
|
|
gst_base_transform_set_passthrough (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
gst_base_transform_set_in_place (GST_BASE_TRANSFORM (crop), FALSE);
|
|
|
|
}
|
2017-12-08 03:08:42 +00:00
|
|
|
|
2008-11-25 16:06:22 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERROR */
|
2012-10-17 08:20:12 +00:00
|
|
|
cropping_too_much:
|
2008-11-25 16:06:22 +00:00
|
|
|
{
|
2012-11-06 14:03:55 +00:00
|
|
|
GST_WARNING_OBJECT (crop, "we are cropping too much");
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2012-10-17 08:20:12 +00:00
|
|
|
unknown_format:
|
2008-11-25 16:06:22 +00:00
|
|
|
{
|
2012-11-06 14:03:55 +00:00
|
|
|
GST_WARNING_OBJECT (crop, "Unsupported format");
|
2008-11-25 16:06:22 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
}
|
|
|
|
|
2014-12-15 23:19:05 +00:00
|
|
|
/* called with object lock */
|
|
|
|
static inline void
|
|
|
|
gst_video_crop_set_crop (GstVideoCrop * vcrop, gint new_value, gint * prop)
|
|
|
|
{
|
|
|
|
if (*prop != new_value) {
|
|
|
|
*prop = new_value;
|
|
|
|
vcrop->need_update = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
static void
|
|
|
|
gst_video_crop_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
|
|
|
GstVideoCrop *video_crop;
|
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
video_crop = GST_VIDEO_CROP (object);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_OBJECT_LOCK (video_crop);
|
|
|
|
switch (prop_id) {
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_LEFT:
|
2014-12-15 23:19:05 +00:00
|
|
|
gst_video_crop_set_crop (video_crop, g_value_get_int (value),
|
|
|
|
&video_crop->prop_left);
|
2002-07-22 22:08:28 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_RIGHT:
|
2014-12-15 23:19:05 +00:00
|
|
|
gst_video_crop_set_crop (video_crop, g_value_get_int (value),
|
|
|
|
&video_crop->prop_right);
|
2002-07-22 22:08:28 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_TOP:
|
2014-12-15 23:19:05 +00:00
|
|
|
gst_video_crop_set_crop (video_crop, g_value_get_int (value),
|
|
|
|
&video_crop->prop_top);
|
2002-07-22 22:08:28 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_BOTTOM:
|
2014-12-15 23:19:05 +00:00
|
|
|
gst_video_crop_set_crop (video_crop, g_value_get_int (value),
|
|
|
|
&video_crop->prop_bottom);
|
2002-07-22 22:08:28 +00:00
|
|
|
break;
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2002-07-22 22:08:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-04-24 16:55:08 +00:00
|
|
|
GST_LOG_OBJECT (video_crop, "l=%d,r=%d,b=%d,t=%d, need_update:%d",
|
|
|
|
video_crop->prop_left, video_crop->prop_right, video_crop->prop_bottom,
|
|
|
|
video_crop->prop_top, video_crop->need_update);
|
2014-12-15 23:19:05 +00:00
|
|
|
|
2012-02-23 10:16:21 +00:00
|
|
|
GST_OBJECT_UNLOCK (video_crop);
|
gst/videocrop/gstvideocrop.*: Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix passthrough mode; la...
Original commit message from CVS:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
(gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_transform_packed_complex),
(gst_video_crop_transform_packed_simple),
(gst_video_crop_transform), (gst_video_crop_transform_caps),
(gst_video_crop_set_caps),
(gst_videocrop_clear_negotiated_caps_locked),
(gst_video_crop_set_property):
* gst/videocrop/gstvideocrop.h:
Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
passthrough mode; lastly, clear negotiated basetransform caps when
the cropping changes in order to force renegotiation.
2006-10-04 22:37:07 +00:00
|
|
|
|
2012-02-24 10:03:48 +00:00
|
|
|
gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM (video_crop));
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_video_crop_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstVideoCrop *video_crop;
|
|
|
|
|
|
|
|
video_crop = GST_VIDEO_CROP (object);
|
2002-07-22 22:08:28 +00:00
|
|
|
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_OBJECT_LOCK (video_crop);
|
|
|
|
switch (prop_id) {
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_LEFT:
|
2012-11-06 14:03:55 +00:00
|
|
|
g_value_set_int (value, video_crop->prop_left);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_RIGHT:
|
2012-11-06 14:03:55 +00:00
|
|
|
g_value_set_int (value, video_crop->prop_right);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_TOP:
|
2012-11-06 14:03:55 +00:00
|
|
|
g_value_set_int (value, video_crop->prop_top);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
break;
|
2015-04-27 10:22:11 +00:00
|
|
|
case PROP_BOTTOM:
|
2012-11-06 14:03:55 +00:00
|
|
|
g_value_set_int (value, video_crop->prop_bottom);
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
GST_OBJECT_UNLOCK (video_crop);
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2002-07-22 22:08:28 +00:00
|
|
|
{
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (videocrop_debug, "videocrop", 0, "videocrop");
|
|
|
|
|
2009-01-23 14:39:46 +00:00
|
|
|
if (gst_element_register (plugin, "videocrop", GST_RANK_NONE,
|
|
|
|
GST_TYPE_VIDEO_CROP)
|
|
|
|
&& gst_element_register (plugin, "aspectratiocrop", GST_RANK_NONE,
|
|
|
|
GST_TYPE_ASPECT_RATIO_CROP))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
2002-07-22 22:08:28 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:36:38 +00:00
|
|
|
videocrop,
|
Port/rewrite videocrop from scratch for GStreamer-0.10, and make it support all formats videoscale supports (#345653).
Original commit message from CVS:
* configure.ac:
* gst/videocrop/Makefile.am:
* gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
(gst_video_crop_class_init), (gst_video_crop_init),
(gst_video_crop_get_image_details_from_caps),
(gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
(gst_video_crop_transform_planar), (gst_video_crop_transform),
(gst_video_crop_transform_dimension),
(gst_video_crop_transform_dimension_value),
(gst_video_crop_transform_caps), (gst_video_crop_set_caps),
(gst_video_crop_set_property), (gst_video_crop_get_property),
(plugin_init):
Port/rewrite videocrop from scratch for GStreamer-0.10, and make
it support all formats videoscale supports (#345653).
2006-09-02 15:30:45 +00:00
|
|
|
"Crops video into a user-defined region",
|
2006-04-01 10:09:11 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|