2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2005 Wim Taymans <wim@fluendo.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
24 #ifndef __GST_BASE_TRANSFORM_H__
25 #define __GST_BASE_TRANSFORM_H__
31 #define GST_TYPE_BASE_TRANSFORM (gst_base_transform_get_type())
32 #define GST_BASE_TRANSFORM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_TRANSFORM,GstBaseTransform))
33 #define GST_BASE_TRANSFORM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_TRANSFORM,GstBaseTransformClass))
34 #define GST_BASE_TRANSFORM_GET_CLASS(obj) \
35 (G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_BASE_TRANSFORM,GstBaseTransformClass))
36 #define GST_IS_BASE_TRANSFORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_TRANSFORM))
37 #define GST_IS_BASE_TRANSFORM_CLASS(obj)(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_TRANSFORM))
39 /* the names of the templates for the sink and source pads */
40 #define GST_BASE_TRANSFORM_SINK_NAME "sink"
41 #define GST_BASE_TRANSFORM_SRC_NAME "src"
43 typedef struct _GstBaseTransform GstBaseTransform;
44 typedef struct _GstBaseTransformClass GstBaseTransformClass;
46 struct _GstBaseTransform {
49 /* source and sink pads */
54 struct _GstBaseTransformClass {
55 GstElementClass parent_class;
58 /* virtual methods for subclasses */
60 /* given caps on one pad, what can I do on the other pad */
61 GstCaps* (*transform_caps) (GstBaseTransform *trans, GstPad *pad,
64 /* notify the subclass of new caps */
65 gboolean (*set_caps) (GstBaseTransform *trans, GstCaps *incaps,
68 /* start and stop processing, ideal for opening/closing the resource */
69 gboolean (*start) (GstBaseTransform *trans);
70 gboolean (*stop) (GstBaseTransform *trans);
72 gboolean (*event) (GstBaseTransform *trans, GstEvent *event);
74 /* transform one incoming buffer to one outgoing buffer */
75 GstFlowReturn (*transform) (GstBaseTransform *trans, GstBuffer *inbuf,
79 GType gst_base_transform_get_type (void);
83 #endif /* __GST_BASE_TRANSFORM_H__ */