2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:27:17 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
#ifndef __GST_VIDEO_SCALE_H__
|
|
|
|
#define __GST_VIDEO_SCALE_H__
|
2001-12-22 23:27:17 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2005-07-01 17:03:13 +00:00
|
|
|
#include <gst/base/gstbasetransform.h>
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
#include "vs_image.h"
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (video_scale_debug);
|
|
|
|
#define GST_CAT_DEFAULT video_scale_debug
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
#define GST_TYPE_VIDEO_SCALE \
|
|
|
|
(gst_video_scale_get_type())
|
|
|
|
#define GST_VIDEO_SCALE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEO_SCALE,GstVideoScale))
|
|
|
|
#define GST_VIDEO_SCALE_CLASS(klass) \
|
2006-06-01 19:19:51 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEO_SCALE,GstVideoScaleClass))
|
2005-12-01 01:12:55 +00:00
|
|
|
#define GST_IS_VIDEO_SCALE(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEO_SCALE))
|
2006-06-01 19:19:51 +00:00
|
|
|
#define GST_IS_VIDEO_SCALE_CLASS(klass) \
|
2005-12-01 01:12:55 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_SCALE))
|
2001-12-22 23:27:17 +00:00
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
/**
|
|
|
|
* GstVideoScaleMethod:
|
|
|
|
* @GST_VIDEO_SCALE_NEAREST: use nearest neighbour scaling (fast and ugly)
|
|
|
|
* @GST_VIDEO_SCALE_BILINEAR: use bilinear scaling (slower but prettier).
|
2006-11-14 23:08:38 +00:00
|
|
|
* @GST_VIDEO_SCALE_4TAP: use a 4-tap filter for scaling (slow).
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
*
|
|
|
|
* The videoscale method to use.
|
|
|
|
*/
|
2004-03-15 16:32:55 +00:00
|
|
|
typedef enum {
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_VIDEO_SCALE_NEAREST,
|
|
|
|
GST_VIDEO_SCALE_BILINEAR,
|
2006-11-14 23:08:38 +00:00
|
|
|
GST_VIDEO_SCALE_4TAP
|
2004-03-15 16:32:55 +00:00
|
|
|
} GstVideoScaleMethod;
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
typedef struct _GstVideoScale GstVideoScale;
|
|
|
|
typedef struct _GstVideoScaleClass GstVideoScaleClass;
|
2004-03-15 16:32:55 +00:00
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
/**
|
|
|
|
* GstVideoScale:
|
|
|
|
*
|
|
|
|
* Opaque data structure
|
|
|
|
*/
|
2005-12-01 01:12:55 +00:00
|
|
|
struct _GstVideoScale {
|
2005-07-01 17:03:13 +00:00
|
|
|
GstBaseTransform element;
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-08-24 15:07:54 +00:00
|
|
|
GstVideoScaleMethod method;
|
|
|
|
|
|
|
|
/* negotiated stuff */
|
2005-07-01 16:55:43 +00:00
|
|
|
int format;
|
2005-08-24 15:07:54 +00:00
|
|
|
VSImage src;
|
|
|
|
VSImage dest;
|
|
|
|
guint src_size;
|
|
|
|
guint dest_size;
|
2004-03-15 16:32:55 +00:00
|
|
|
gint to_width;
|
|
|
|
gint to_height;
|
|
|
|
gint from_width;
|
|
|
|
gint from_height;
|
2009-07-28 11:55:30 +00:00
|
|
|
gboolean interlaced;
|
2004-03-15 16:32:55 +00:00
|
|
|
|
docs/plugins/: Added videoscale to docs.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-base-plugins-docs.sgml:
* docs/plugins/gst-plugins-base-plugins-sections.txt:
Added videoscale to docs.
* gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
(gst_video_rate_swap_prev), (gst_video_rate_event),
(gst_video_rate_chain):
Fix typo in docs.
* gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
(gst_video_scale_init), (gst_video_scale_prepare_size),
(gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
(gst_video_scale_fixate_caps), (gst_video_scale_transform):
* gst/videoscale/gstvideoscale.h:
Added docs, examples.
Some code cleanups.
Post errors instead of g_warning.
2006-03-02 17:46:36 +00:00
|
|
|
/*< private >*/
|
2005-08-24 15:07:54 +00:00
|
|
|
guint8 *tmp_buf;
|
2004-03-15 16:32:55 +00:00
|
|
|
};
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
struct _GstVideoScaleClass {
|
2005-07-01 17:03:13 +00:00
|
|
|
GstBaseTransformClass parent_class;
|
2004-03-15 16:32:55 +00:00
|
|
|
};
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
GType gst_video_scale_get_type(void);
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-07-01 17:03:13 +00:00
|
|
|
G_END_DECLS
|
2001-12-22 23:27:17 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
#endif /* __GST_VIDEO_SCALE_H__ */
|