check/: adding a test for pipelines and state changes
[platform/upstream/gstreamer.git] / libs / gst / controller / gst-controller.h
1 /* GStreamer
2  *
3  * Copyright (C) <2005> Stefan Kost <ensonic at users dot sf dot net>
4  *
5  * gst-controller.h: dynamic parameter control subsystem
6  *
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.
11  *
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.
16  *
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.
21  */
22
23 #ifndef __GST_CONTROLLER_H__
24 #define __GST_CONTROLLER_H__
25
26 #include <string.h>
27
28 #include <glib.h>
29 #include <glib-object.h>
30 #include <glib/gprintf.h>
31 #include <gst/gst.h>
32
33 G_BEGIN_DECLS
34
35 /**
36  * GST_PARAM_CONTROLLABLE:
37  *
38  * Use this flag on GstElement properties you wish to be (eventually) handled
39  * by a GstController.
40  * TODO: needs to go to gstelemnt.h (to avoid clashes on G_PARAM_USER_SHIFT)
41  */
42 #define GST_PARAM_CONTROLLABLE  (1 << (G_PARAM_USER_SHIFT + 1))
43
44
45 /**
46  * GstTimedValue:
47  *
48  * a structure for value+time
49  */
50 typedef struct _GstTimedValue
51 {
52   GstClockTime timestamp;       // timestamp of the value change
53   GValue value;                 // the new value
54   /* TODO what about storing the difference to next timestamp and value here
55      + make calculations slightly easier and faster
56      - determining the GType for the value_dif is not simple
57      e.g. if value is G_TYPE_UCHAR value_diff needs to be G_TYPE_INT
58    */
59 } GstTimedValue;
60
61
62 /**
63  * GstValueArray:
64  * @property_name: the name of the property this array belongs to
65  * @nbsamples: number of samples requested
66  * @sample_interval: interval between each sample
67  * @values: pointer to the array
68  *
69  * Structure to receive multiple values at once.
70  * If the pointer to the values array is NULL, it will be allocated (CHECKME).
71  */
72 typedef struct _GstValueArray
73 {
74   gchar *property_name;
75   gint nbsamples;
76   GstClockTime sample_interval;
77   gpointer *values;
78 } GstValueArray;
79
80
81 /**
82  * GstInterpolateMode:
83  * @GST_INTERPOLATE_NONE: steps-like interpolation, default
84  * @GST_INTERPOLATE_TRIGGER: returns the default value of the property, 
85  * except for times with specific values
86  * @GST_INTERPOLATE_LINEAR: linear interpolation
87  * @GST_INTERPOLATE_QUADRATIC: square interpolation
88  * @GST_INTERPOLATE_CUBIC: cubic interpolation
89  * @GST_INTERPOLATE_USER: user-provided interpolation
90  *
91  * The various interpolation modes available.
92  */
93 typedef enum
94 {
95   GST_INTERPOLATE_NONE,
96   GST_INTERPOLATE_TRIGGER,
97   GST_INTERPOLATE_LINEAR,
98   GST_INTERPOLATE_QUADRATIC,
99   GST_INTERPOLATE_CUBIC,
100   GST_INTERPOLATE_USER
101 } GstInterpolateMode;
102
103
104 struct _GstControlledProperty;
105
106 typedef GValue *(*InterpolateGet) (struct _GstControlledProperty * prop,
107         GstClockTime timestamp);
108 typedef gboolean (*InterpolateGetValueArray) (struct _GstControlledProperty * prop,
109         GstClockTime timestamp, GstValueArray * value_array);
110
111 /**
112  * GstInterpolateMethod:
113  *
114  * Function pointer structure to do user-defined interpolation methods
115  */
116 typedef struct _GstInterpolateMethod
117 {
118   InterpolateGet get_int;
119   InterpolateGetValueArray get_int_value_array;
120   InterpolateGet get_long;
121   InterpolateGetValueArray get_long_value_array;
122   InterpolateGet get_float;
123   InterpolateGetValueArray get_float_value_array;
124   InterpolateGet get_double;
125   InterpolateGetValueArray get_double_value_array;
126   InterpolateGet get_boolean;
127   InterpolateGetValueArray get_boolean_value_array;
128 } GstInterpolateMethod;
129
130 /**
131  * GstControlledProperty:
132  */
133 typedef struct _GstControlledProperty
134 {
135   gchar *name;                  // name of the property
136   GType type;                   // type of the handled property
137   GValue default_value;         // default value for the handled property
138   GValue result_value;          // result value location for the interpolation method
139   GstTimedValue last_value;     // the last value a _sink call wrote
140   GstTimedValue live_value;     // temporary value override for live input
141   gulong notify_handler_id;     // id of the notify::<name> signal handler
142   GstInterpolateMode interpolation;     // Interpolation mode
143   /* TODO instead of *method, have pointers to get() and get_value_array() here
144      gst_controller_set_interpolation_mode() will pick the right ones for the
145      properties value type
146      GstInterpolateMethod *method; // User-implemented handler (if interpolation == GST_INTERPOLATE_USER)
147   */
148   InterpolateGet get;
149   InterpolateGetValueArray get_value_array;
150
151   GList *values;                // List of GstTimedValue
152   /* TODO keep the last search result to be able to continue
153      GList      *last_value;                    // last search result, can be used for incremental searches
154    */
155
156   /*< private >*/
157   gpointer       _gst_reserved[GST_PADDING];
158 } GstControlledProperty;
159
160 #define GST_CONTROLLED_PROPERTY(obj)    ((GstControlledProperty *)(obj))
161
162 /* type macros */
163
164 #define GST_TYPE_CONTROLLER            (gst_controller_get_type ())
165 #define GST_CONTROLLER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_CONTROLLER, GstController))
166 #define GST_CONTROLLER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_CONTROLLER, GstControllerClass))
167 #define GST_IS_CONTROLLER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_CONTROLLER))
168 #define GST_IS_CONTROLLER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_CONTROLLERE))
169 #define GST_CONTROLLER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_CONTROLLER, GstControllerClass))
170
171 typedef struct _GstController GstController;
172 typedef struct _GstControllerClass GstControllerClass;
173
174 //typedef struct _GstControllerPrivate GstControllerPrivate;
175
176 /**
177  * GstController:
178  *
179  * The instance structure of GstController
180  */
181
182 struct _GstController
183 {
184   GObject parent;
185
186   GList *properties;  // List of GstControlledProperty
187   GMutex *lock;       // Secure property access, elements will access from threads
188   GObject *object;    // the object we control
189
190   /*< private >*/
191   gpointer       _gst_reserved[GST_PADDING];
192 };
193
194 struct _GstControllerClass
195 {
196   GObjectClass parent_class;
197
198   /*< private >*/
199   gpointer       _gst_reserved[GST_PADDING];
200 };
201
202 GType gst_controller_get_type (void);
203
204 /* GstController functions */
205
206 GstController *gst_controller_new_valist (GObject * object, va_list var_args);
207 GstController *gst_controller_new (GObject * object, ...);
208
209 gboolean gst_controller_remove_properties_valist (GstController * self,
210     va_list var_args);
211 gboolean gst_controller_remove_properties (GstController * self, ...);
212
213 gboolean gst_controller_set (GstController * self, gchar * property_name,
214     GstClockTime timestamp, GValue * value);
215 gboolean gst_controller_set_from_list (GstController * self,
216     gchar * property_name, GSList * timedvalues);
217
218 gboolean gst_controller_unset (GstController * self, gchar * property_name,
219     GstClockTime timestamp);
220
221
222 GValue *gst_controller_get (GstController * self, gchar * property_name,
223     GstClockTime timestamp);
224 const GList *gst_controller_get_all (GstController * self,
225     gchar * property_name);
226
227
228 gboolean gst_controller_sink_values (GstController * self,
229     GstClockTime timestamp);
230     
231 gboolean gst_controller_get_value_arrays (GstController * self,
232     GstClockTime timestamp, GSList * value_arrays);
233 gboolean gst_controller_get_value_array (GstController * self,
234     GstClockTime timestamp, GstValueArray * value_array);
235
236 gboolean gst_controller_set_interpolation_mode (GstController * self,
237     gchar * property_name, GstInterpolateMode mode);
238
239
240 /* GObject convenience functions */
241
242 GstController *gst_object_control_properties (GObject * object, ...);
243 gboolean gst_object_uncontrol_properties (GObject * object, ...);
244
245 GstController *gst_object_get_controller (GObject * object);
246 gboolean gst_object_set_controller (GObject * object, GstController * controller);
247
248 gboolean gst_object_sink_values (GObject * object, GstClockTime timestamp);
249
250 gboolean gst_object_get_value_arrays (GObject * object,
251     GstClockTime timestamp, GSList * value_arrays);
252 gboolean gst_object_get_value_array (GObject * object,
253     GstClockTime timestamp, GstValueArray * value_array);
254
255 /* lib init/done */
256
257 gboolean gst_controller_init (int * argc, char ***argv);
258
259 G_END_DECLS
260 #endif /* __GST_CONTROLLER_H__ */