Port gtk-doc comments to their equivalent markdown syntax
[platform/upstream/gstreamer.git] / gst / gstcontrolsource.c
1 /* GStreamer
2  *
3  * Copyright (C) 2007 Sebastian Dröge <slomo@circular-chaos.org>
4  *
5  * gstcontrolsource.c: Interface declaration for control sources
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., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 /**
24  * SECTION:gstcontrolsource
25  * @title: GstControlSource
26  * @short_description: base class for control source sources
27  *
28  * The #GstControlSource is a base class for control value sources that could
29  * be used to get timestamp-value pairs. A control source essentially is a
30  * function over time.
31  *
32  * A #GstControlSource is used by first getting an instance of a specific
33  * control-source, creating a binding for the control-source to the target property
34  * of the element and then adding the binding to the element. The binding will
35  * convert the data types and value range to fit to the bound property.
36  *
37  * For implementing a new #GstControlSource one has to implement
38  * #GstControlSourceGetValue and #GstControlSourceGetValueArray functions.
39  * These are then used by gst_control_source_get_value() and
40  * gst_control_source_get_value_array() to get values for specific timestamps.
41  */
42
43 #include "gst_private.h"
44
45 #include <glib-object.h>
46 #include <gst/gst.h>
47
48 #include "gstcontrolsource.h"
49
50 #define GST_CAT_DEFAULT control_source_debug
51 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
52
53 #define _do_init \
54   GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "gstcontrolsource", 0, \
55       "dynamic parameter control sources");
56
57 G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GstControlSource, gst_control_source,
58     GST_TYPE_OBJECT, _do_init);
59
60 static GObject *gst_control_source_constructor (GType type,
61     guint n_construct_params, GObjectConstructParam * construct_params);
62
63 static void
64 gst_control_source_class_init (GstControlSourceClass * klass)
65 {
66   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
67
68   gobject_class->constructor = gst_control_source_constructor;
69 }
70
71 static void
72 gst_control_source_init (GstControlSource * self)
73 {
74   self->get_value = NULL;
75   self->get_value_array = NULL;
76 }
77
78 static GObject *
79 gst_control_source_constructor (GType type, guint n_construct_params,
80     GObjectConstructParam * construct_params)
81 {
82   GObject *self;
83
84   self =
85       G_OBJECT_CLASS (gst_control_source_parent_class)->constructor (type,
86       n_construct_params, construct_params);
87   gst_object_ref_sink (self);
88
89   return self;
90 }
91
92 /**
93  * gst_control_source_get_value: (method)
94  * @self: the #GstControlSource object
95  * @timestamp: the time for which the value should be returned
96  * @value: (out): the value
97  *
98  * Gets the value for this #GstControlSource at a given timestamp.
99  *
100  * Returns: %FALSE if the value couldn't be returned, %TRUE otherwise.
101  */
102 gboolean
103 gst_control_source_get_value (GstControlSource * self, GstClockTime timestamp,
104     gdouble * value)
105 {
106   g_return_val_if_fail (GST_IS_CONTROL_SOURCE (self), FALSE);
107
108   if (G_LIKELY (self->get_value)) {
109     return self->get_value (self, timestamp, value);
110   } else {
111     GST_ERROR ("Not bound to a specific property yet!");
112     return FALSE;
113   }
114 }
115
116 /**
117  * gst_control_source_get_value_array: (method)
118  * @self: the #GstControlSource object
119  * @timestamp: the first timestamp
120  * @interval: the time steps
121  * @n_values: the number of values to fetch
122  * @values: (array length=n_values): array to put control-values in
123  *
124  * Gets an array of values for for this #GstControlSource. Values that are
125  * undefined contain NANs.
126  *
127  * Returns: %TRUE if the given array could be filled, %FALSE otherwise
128  */
129 gboolean
130 gst_control_source_get_value_array (GstControlSource * self,
131     GstClockTime timestamp, GstClockTime interval, guint n_values,
132     gdouble * values)
133 {
134   g_return_val_if_fail (GST_IS_CONTROL_SOURCE (self), FALSE);
135
136   if (G_LIKELY (self->get_value_array)) {
137     return self->get_value_array (self, timestamp, interval, n_values, values);
138   } else {
139     GST_ERROR ("Not bound to a specific property yet!");
140     return FALSE;
141   }
142 }