whitespace fixes
[platform/upstream/gstreamer.git] / libs / gst / controller / gstcontroller.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 /**
175  * GstController:
176  *
177  * The instance structure of GstController
178  */
179
180 struct _GstController
181 {
182   GObject parent;
183
184   GList *properties;  /* List of GstControlledProperty */
185   GMutex *lock;       /* Secure property access, elements will access from threads */
186   GObject *object;    /* the object we control */
187
188   /*< private >*/
189   gpointer       _gst_reserved[GST_PADDING];
190 };
191
192 struct _GstControllerClass
193 {
194   GObjectClass parent_class;
195
196   /*< private >*/
197   gpointer       _gst_reserved[GST_PADDING];
198 };
199
200 GType gst_controller_get_type (void);
201
202 /* GstController functions */
203
204 GstController *gst_controller_new_valist (GObject * object, va_list var_args);
205 GstController *gst_controller_new_list (GObject * object, GList *list);
206 GstController *gst_controller_new (GObject * object, ...);
207
208 gboolean gst_controller_remove_properties_valist (GstController * self,
209     va_list var_args);
210 gboolean gst_controller_remove_properties_list (GstController * self,
211                                                 GList *list);
212 gboolean gst_controller_remove_properties (GstController * self, ...);
213
214 gboolean gst_controller_set (GstController * self, gchar * property_name,
215     GstClockTime timestamp, GValue * value);
216 gboolean gst_controller_set_from_list (GstController * self,
217     gchar * property_name, GSList * timedvalues);
218
219 gboolean gst_controller_unset (GstController * self, gchar * property_name,
220     GstClockTime timestamp);
221
222
223 GValue *gst_controller_get (GstController * self, gchar * property_name,
224     GstClockTime timestamp);
225 const GList *gst_controller_get_all (GstController * self,
226     gchar * property_name);
227
228
229 gboolean gst_controller_sync_values (GstController * self,
230     GstClockTime timestamp);
231
232 gboolean gst_controller_get_value_arrays (GstController * self,
233     GstClockTime timestamp, GSList * value_arrays);
234 gboolean gst_controller_get_value_array (GstController * self,
235     GstClockTime timestamp, GstValueArray * value_array);
236
237 gboolean gst_controller_set_interpolation_mode (GstController * self,
238     gchar * property_name, GstInterpolateMode mode);
239
240
241 /* GObject convenience functions */
242
243 GstController *gst_object_control_properties (GObject * object, ...);
244 gboolean gst_object_uncontrol_properties (GObject * object, ...);
245
246 GstController *gst_object_get_controller (GObject * object);
247 gboolean gst_object_set_controller (GObject * object, GstController * controller);
248
249 gboolean gst_object_sync_values (GObject * object, GstClockTime timestamp);
250
251 gboolean gst_object_get_value_arrays (GObject * object,
252     GstClockTime timestamp, GSList * value_arrays);
253 gboolean gst_object_get_value_array (GObject * object,
254     GstClockTime timestamp, GstValueArray * value_array);
255
256 /* lib init/done */
257
258 gboolean gst_controller_init (int * argc, char ***argv);
259
260 G_END_DECLS
261 #endif /* __GST_CONTROLLER_H__ */