]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - libs/gst/base/gstbasetransform.h
g_thread_create() is deprecated in GLib master, use g_thread_try_new() instead
[glsdk/gstreamer0-10.git] / libs / gst / base / gstbasetransform.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2005 Wim Taymans <wim@fluendo.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
21 #ifndef __GST_BASE_TRANSFORM_H__
22 #define __GST_BASE_TRANSFORM_H__
24 #include <gst/gst.h>
26 G_BEGIN_DECLS
28 #define GST_TYPE_BASE_TRANSFORM            (gst_base_transform_get_type())
29 #define GST_BASE_TRANSFORM(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_TRANSFORM,GstBaseTransform))
30 #define GST_BASE_TRANSFORM_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_TRANSFORM,GstBaseTransformClass))
31 #define GST_BASE_TRANSFORM_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_BASE_TRANSFORM,GstBaseTransformClass))
32 #define GST_IS_BASE_TRANSFORM(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_TRANSFORM))
33 #define GST_IS_BASE_TRANSFORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_TRANSFORM))
34 /* since 0.10.4 */
35 #define GST_BASE_TRANSFORM_CAST(obj)    ((GstBaseTransform *)(obj))
37 /**
38  * GST_BASE_TRANSFORM_SINK_NAME:
39  *
40  * The name of the templates for the sink pad.
41  */
42 #define GST_BASE_TRANSFORM_SINK_NAME    "sink"
43 /**
44  * GST_BASE_TRANSFORM_SRC_NAME:
45  *
46  * The name of the templates for the source pad.
47  */
48 #define GST_BASE_TRANSFORM_SRC_NAME     "src"
50 /**
51  * GST_BASE_TRANSFORM_SRC_PAD:
52  * @obj: base transform instance
53  *
54  * Gives the pointer to the source #GstPad object of the element.
55  *
56  * Since: 0.10.4
57  */
58 #define GST_BASE_TRANSFORM_SRC_PAD(obj)         (GST_BASE_TRANSFORM_CAST (obj)->srcpad)
60 /**
61  * GST_BASE_TRANSFORM_SINK_PAD:
62  * @obj: base transform instance
63  *
64  * Gives the pointer to the sink #GstPad object of the element.
65  *
66  * Since: 0.10.4
67  */
68 #define GST_BASE_TRANSFORM_SINK_PAD(obj)        (GST_BASE_TRANSFORM_CAST (obj)->sinkpad)
70 /**
71  * GST_BASE_TRANSFORM_FLOW_DROPPED:
72  *
73  * A #GstFlowReturn that can be returned from transform and transform_ip to
74  * indicate that no output buffer was generated.
75  *
76  * Since: 0.10.13
77  */
78 #define GST_BASE_TRANSFORM_FLOW_DROPPED   GST_FLOW_CUSTOM_SUCCESS
80 /**
81  * GST_BASE_TRANSFORM_LOCK:
82  * @obj: base transform instance
83  *
84  * Obtain a lock to protect the transform function from concurrent access.
85  *
86  * Since: 0.10.13
87  */
88 #define GST_BASE_TRANSFORM_LOCK(obj)   g_mutex_lock (GST_BASE_TRANSFORM_CAST (obj)->transform_lock)
90 /**
91  * GST_BASE_TRANSFORM_UNLOCK:
92  * @obj: base transform instance
93  *
94  * Release the lock that protects the transform function from concurrent access.
95  *
96  * Since: 0.10.13
97  */
98 #define GST_BASE_TRANSFORM_UNLOCK(obj) g_mutex_unlock (GST_BASE_TRANSFORM_CAST (obj)->transform_lock)
100 typedef struct _GstBaseTransform GstBaseTransform;
101 typedef struct _GstBaseTransformClass GstBaseTransformClass;
102 typedef struct _GstBaseTransformPrivate GstBaseTransformPrivate;
104 /**
105  * GstBaseTransform:
106  *
107  * The opaque #GstBaseTransform data structure.
108  */
109 struct _GstBaseTransform {
110   GstElement     element;
112   /*< protected >*/
113   /* source and sink pads */
114   GstPad        *sinkpad;
115   GstPad        *srcpad;
117   /* Set by sub-class */
118   gboolean       passthrough;
119   gboolean       always_in_place;
121   GstCaps       *cache_caps1;
122   guint          cache_caps1_size;
123   GstCaps       *cache_caps2;
124   guint          cache_caps2_size;
125   gboolean       have_same_caps;
127   gboolean       delay_configure;
128   gboolean       pending_configure;
129   gboolean       negotiated;
131   gboolean       have_newsegment;
133   /* MT-protected (with STREAM_LOCK) */
134   GstSegment     segment;
136   GMutex        *transform_lock;
138   /*< private >*/
139   GstBaseTransformPrivate *priv;
141   gpointer       _gst_reserved[GST_PADDING_LARGE - 1];
142 };
144 /**
145  * GstBaseTransformClass:
146  * @parent_class:   Element parent class
147  * @transform_caps: Optional.  Given the pad in this direction and the given
148  *                  caps, what caps are allowed on the other pad in this
149  *                  element ?
150  * @fixate_caps:    Optional. Given the pad in this direction and the given
151  *                  caps, fixate the caps on the other pad.
152  * @transform_size: Optional. Given the size of a buffer in the given direction
153  *                  with the given caps, calculate the size in bytes of a buffer
154  *                  on the other pad with the given other caps.
155  *                  The default implementation uses get_unit_size and keeps
156  *                  the number of units the same.
157  * @get_unit_size:  Required if the transform is not in-place.
158  *                  get the size in bytes of one unit for the given caps.
159  * @set_caps:       allows the subclass to be notified of the actual caps set.
160  * @start:          Optional.
161  *                  Called when the element starts processing.
162  *                  Allows opening external resources.
163  * @stop:           Optional.
164  *                  Called when the element stops processing.
165  *                  Allows closing external resources.
166  * @transform:      Required if the element does not operate in-place.
167  *                  Transforms one incoming buffer to one outgoing buffer.
168  *                  The function is allowed to change size/timestamp/duration
169  *                  of the outgoing buffer.
170  * @transform_ip:   Required if the element operates in-place.
171  *                  Transform the incoming buffer in-place.
172  * @event:          Optional.
173  *                  Event handler on the sink pad. This function should return
174  *                  TRUE if the base class should forward the event.
175  * @src_event:      Optional.
176  *                  Event handler on the source pad.
177  * @passthrough_on_same_caps: If set to TRUE, passthrough mode will be
178  *                            automatically enabled if the caps are the same.
179  * @prepare_output_buffer: Optional.
180  *                         Subclasses can override this to do their own
181  *                         allocation of output buffers.  Elements that only do
182  *                         analysis can return a subbuffer or even just
183  *                         increment the reference to the input buffer (if in
184  *                         passthrough mode)
185  * @before_transform: Optional. Since 0.10.22
186  *                    This method is called right before the base class will
187  *                    start processing. Dynamic properties or other delayed
188  *                    configuration could be performed in this method.
189  * @accept_caps: Optional. Since 0.10.30
190  *               Subclasses can override this method to check if @caps can be
191  *               handled by the element. The default implementation might not be
192  *               the most optimal way to check this in all cases.
193  * @query: Optional Since 0.10.36
194  *                Handle a requested query. Subclasses that implement this
195  *                should must chain up to the parent if they didn't handle the
196  *                query
197  *
198  * Subclasses can override any of the available virtual methods or not, as
199  * needed. At minimum either @transform or @transform_ip need to be overridden.
200  * If the element can overwrite the input data with the results (data is of the
201  * same type and quantity) it should provide @transform_ip.
202  */
203 struct _GstBaseTransformClass {
204   GstElementClass parent_class;
206   /*< public >*/
207   /* virtual methods for subclasses */
209   GstCaps*      (*transform_caps) (GstBaseTransform *trans,
210                                    GstPadDirection direction,
211                                    GstCaps *caps);
213   void          (*fixate_caps)    (GstBaseTransform *trans,
214                                    GstPadDirection direction, GstCaps *caps,
215                                    GstCaps *othercaps);
217   gboolean      (*transform_size) (GstBaseTransform *trans,
218                                    GstPadDirection direction,
219                                    GstCaps *caps, guint size,
220                                    GstCaps *othercaps, guint *othersize);
222   gboolean      (*get_unit_size)  (GstBaseTransform *trans, GstCaps *caps,
223                                    guint *size);
225   gboolean      (*set_caps)     (GstBaseTransform *trans, GstCaps *incaps,
226                                  GstCaps *outcaps);
228   gboolean      (*start)        (GstBaseTransform *trans);
229   gboolean      (*stop)         (GstBaseTransform *trans);
231   gboolean      (*event)        (GstBaseTransform *trans, GstEvent *event);
233   GstFlowReturn (*transform)    (GstBaseTransform *trans, GstBuffer *inbuf,
234                                  GstBuffer *outbuf);
235   GstFlowReturn (*transform_ip) (GstBaseTransform *trans, GstBuffer *buf);
237   /* FIXME: When adjusting the padding, move these to nicer places in the class */
238   gboolean       passthrough_on_same_caps;
240   GstFlowReturn (*prepare_output_buffer) (GstBaseTransform * trans,
241      GstBuffer *input, gint size, GstCaps *caps, GstBuffer **buf);
243   /* src event */
244   gboolean      (*src_event)      (GstBaseTransform *trans, GstEvent *event);
246   void          (*before_transform)  (GstBaseTransform *trans, GstBuffer *buffer);
248   gboolean      (*accept_caps)  (GstBaseTransform *trans, GstPadDirection direction,
249                                         GstCaps *caps);
250   gboolean      (*query) (GstBaseTransform * trans, GstPadDirection direction,
251       GstQuery * query);
253   /*< private >*/
254   gpointer       _gst_reserved[GST_PADDING_LARGE - 4];
255 };
257 GType           gst_base_transform_get_type         (void);
259 void            gst_base_transform_set_passthrough  (GstBaseTransform *trans,
260                                                      gboolean passthrough);
261 gboolean        gst_base_transform_is_passthrough   (GstBaseTransform *trans);
263 void            gst_base_transform_set_in_place     (GstBaseTransform *trans,
264                                                      gboolean in_place);
265 gboolean        gst_base_transform_is_in_place      (GstBaseTransform *trans);
267 void            gst_base_transform_update_qos       (GstBaseTransform *trans,
268                                                      gdouble proportion,
269                                                      GstClockTimeDiff diff,
270                                                      GstClockTime timestamp);
271 void            gst_base_transform_set_qos_enabled  (GstBaseTransform *trans,
272                                                      gboolean enabled);
273 gboolean        gst_base_transform_is_qos_enabled   (GstBaseTransform *trans);
275 void            gst_base_transform_set_gap_aware    (GstBaseTransform *trans,
276                                                      gboolean gap_aware);
278 void            gst_base_transform_suggest          (GstBaseTransform *trans,
279                                                      GstCaps *caps, guint size);
280 void            gst_base_transform_reconfigure      (GstBaseTransform *trans);
281 G_END_DECLS
283 #endif /* __GST_BASE_TRANSFORM_H__ */