allocation: Allow allocation pool without size
[platform/upstream/gstreamer.git] / gst / gstquery.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim.taymans@chello.be>
4  *                    2005 Wim Taymans <wim@fluendo.com>
5  *
6  * gstquery.c: GstQueryType registration and Query parsing/creation
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 /**
25  * SECTION:gstquery
26  * @short_description: Provide functions to create queries, and to set and parse
27  *                     values in them.
28  * @see_also: #GstPad, #GstElement
29  *
30  * Queries can be performed on pads (gst_pad_query()) and elements
31  * (gst_element_query()). Please note that some queries might need a running
32  * pipeline to work.
33  *
34  * Queries can be created using the gst_query_new_*() functions.
35  * Query values can be set using gst_query_set_*(), and parsed using
36  * gst_query_parse_*() helpers.
37  *
38  * The following example shows how to query the duration of a pipeline:
39  * |[
40  *   GstQuery *query;
41  *   gboolean res;
42  *   query = gst_query_new_duration (GST_FORMAT_TIME);
43  *   res = gst_element_query (pipeline, query);
44  *   if (res) {
45  *     gint64 duration;
46  *     gst_query_parse_duration (query, NULL, &amp;duration);
47  *     g_print ("duration = %"GST_TIME_FORMAT, GST_TIME_ARGS (duration));
48  *   } else {
49  *     g_print ("duration query failed...");
50  *   }
51  *   gst_query_unref (query);
52  * ]|
53  */
54
55
56 #include "gst_private.h"
57 #include "gstinfo.h"
58 #include "gstquery.h"
59 #include "gstvalue.h"
60 #include "gstenumtypes.h"
61 #include "gstquark.h"
62 #include "gsturi.h"
63 #include "gstbufferpool.h"
64
65 GST_DEBUG_CATEGORY_STATIC (gst_query_debug);
66 #define GST_CAT_DEFAULT gst_query_debug
67
68 GType _gst_query_type = 0;
69
70 typedef struct
71 {
72   GstQuery query;
73
74   GstStructure *structure;
75 } GstQueryImpl;
76
77 #define GST_QUERY_STRUCTURE(q)  (((GstQueryImpl *)(q))->structure)
78
79
80 typedef struct
81 {
82   const gint type;
83   const gchar *name;
84   GQuark quark;
85 } GstQueryQuarks;
86
87 static GstQueryQuarks query_quarks[] = {
88   {GST_QUERY_UNKNOWN, "unknown", 0},
89   {GST_QUERY_POSITION, "position", 0},
90   {GST_QUERY_DURATION, "duration", 0},
91   {GST_QUERY_LATENCY, "latency", 0},
92   {GST_QUERY_JITTER, "jitter", 0},
93   {GST_QUERY_RATE, "rate", 0},
94   {GST_QUERY_SEEKING, "seeking", 0},
95   {GST_QUERY_SEGMENT, "segment", 0},
96   {GST_QUERY_CONVERT, "convert", 0},
97   {GST_QUERY_FORMATS, "formats", 0},
98   {GST_QUERY_BUFFERING, "buffering", 0},
99   {GST_QUERY_CUSTOM, "custom", 0},
100   {GST_QUERY_URI, "uri", 0},
101   {GST_QUERY_ALLOCATION, "allocation", 0},
102   {GST_QUERY_SCHEDULING, "scheduling", 0},
103   {GST_QUERY_ACCEPT_CAPS, "accept-caps", 0},
104   {GST_QUERY_CAPS, "caps", 0},
105   {GST_QUERY_DRAIN, "drain", 0},
106   {GST_QUERY_CONTEXT, "context", 0},
107
108   {0, NULL, 0}
109 };
110
111 GST_DEFINE_MINI_OBJECT_TYPE (GstQuery, gst_query);
112
113 void
114 _priv_gst_query_initialize (void)
115 {
116   gint i;
117
118   _gst_query_type = gst_query_get_type ();
119
120   GST_DEBUG_CATEGORY_INIT (gst_query_debug, "query", 0, "query system");
121
122   for (i = 0; query_quarks[i].name; i++) {
123     query_quarks[i].quark = g_quark_from_static_string (query_quarks[i].name);
124   }
125 }
126
127 /**
128  * gst_query_type_get_name:
129  * @type: the query type
130  *
131  * Get a printable name for the given query type. Do not modify or free.
132  *
133  * Returns: a reference to the static name of the query.
134  */
135 const gchar *
136 gst_query_type_get_name (GstQueryType type)
137 {
138   gint i;
139
140   for (i = 0; query_quarks[i].name; i++) {
141     if (type == query_quarks[i].type)
142       return query_quarks[i].name;
143   }
144   return "unknown";
145 }
146
147 /**
148  * gst_query_type_to_quark:
149  * @type: the query type
150  *
151  * Get the unique quark for the given query type.
152  *
153  * Returns: the quark associated with the query type
154  */
155 GQuark
156 gst_query_type_to_quark (GstQueryType type)
157 {
158   gint i;
159
160   for (i = 0; query_quarks[i].name; i++) {
161     if (type == query_quarks[i].type)
162       return query_quarks[i].quark;
163   }
164   return 0;
165 }
166
167 /**
168  * gst_query_type_get_flags:
169  * @type: a #GstQueryType
170  *
171  * Gets the #GstQueryTypeFlags associated with @type.
172  *
173  * Returns: a #GstQueryTypeFlags.
174  */
175 GstQueryTypeFlags
176 gst_query_type_get_flags (GstQueryType type)
177 {
178   GstQueryTypeFlags ret;
179
180   ret = type & ((1 << GST_QUERY_NUM_SHIFT) - 1);
181
182   return ret;
183 }
184
185 static void
186 _gst_query_free (GstQuery * query)
187 {
188   GstStructure *s;
189
190   g_return_if_fail (query != NULL);
191
192   s = GST_QUERY_STRUCTURE (query);
193   if (s) {
194     gst_structure_set_parent_refcount (s, NULL);
195     gst_structure_free (s);
196   }
197
198   g_slice_free1 (sizeof (GstQueryImpl), query);
199 }
200
201 static GstQuery *
202 _gst_query_copy (GstQuery * query)
203 {
204   GstQuery *copy;
205   GstStructure *s;
206
207   s = GST_QUERY_STRUCTURE (query);
208   if (s) {
209     s = gst_structure_copy (s);
210   }
211   copy = gst_query_new_custom (query->type, s);
212
213   return copy;
214 }
215
216 /**
217  * gst_query_new_position:
218  * @format: the default #GstFormat for the new query
219  *
220  * Constructs a new query stream position query object. Use gst_query_unref()
221  * when done with it. A position query is used to query the current position
222  * of playback in the streams, in some format.
223  *
224  * Free-function: gst_query_unref
225  *
226  * Returns: (transfer full): a new #GstQuery
227  */
228 GstQuery *
229 gst_query_new_position (GstFormat format)
230 {
231   GstQuery *query;
232   GstStructure *structure;
233
234   structure = gst_structure_new_id (GST_QUARK (QUERY_POSITION),
235       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
236       GST_QUARK (CURRENT), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
237
238   query = gst_query_new_custom (GST_QUERY_POSITION, structure);
239
240   return query;
241 }
242
243 /**
244  * gst_query_set_position:
245  * @query: a #GstQuery with query type GST_QUERY_POSITION
246  * @format: the requested #GstFormat
247  * @cur: the position to set
248  *
249  * Answer a position query by setting the requested value in the given format.
250  */
251 void
252 gst_query_set_position (GstQuery * query, GstFormat format, gint64 cur)
253 {
254   GstStructure *s;
255
256   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_POSITION);
257
258   s = GST_QUERY_STRUCTURE (query);
259   g_return_if_fail (format == g_value_get_enum (gst_structure_id_get_value (s,
260               GST_QUARK (FORMAT))));
261
262   gst_structure_id_set (s,
263       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
264       GST_QUARK (CURRENT), G_TYPE_INT64, cur, NULL);
265 }
266
267 /**
268  * gst_query_parse_position:
269  * @query: a #GstQuery
270  * @format: (out) (allow-none): the storage for the #GstFormat of the
271  *     position values (may be %NULL)
272  * @cur: (out) (allow-none): the storage for the current position (may be %NULL)
273  *
274  * Parse a position query, writing the format into @format, and the position
275  * into @cur, if the respective parameters are non-%NULL.
276  */
277 void
278 gst_query_parse_position (GstQuery * query, GstFormat * format, gint64 * cur)
279 {
280   GstStructure *structure;
281
282   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_POSITION);
283
284   structure = GST_QUERY_STRUCTURE (query);
285   if (format)
286     *format =
287         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
288             GST_QUARK (FORMAT)));
289   if (cur)
290     *cur = g_value_get_int64 (gst_structure_id_get_value (structure,
291             GST_QUARK (CURRENT)));
292 }
293
294
295 /**
296  * gst_query_new_duration:
297  * @format: the #GstFormat for this duration query
298  *
299  * Constructs a new stream duration query object to query in the given format.
300  * Use gst_query_unref() when done with it. A duration query will give the
301  * total length of the stream.
302  *
303  * Free-function: gst_query_unref
304  *
305  * Returns: (transfer full): a new #GstQuery
306  */
307 GstQuery *
308 gst_query_new_duration (GstFormat format)
309 {
310   GstQuery *query;
311   GstStructure *structure;
312
313   structure = gst_structure_new_id (GST_QUARK (QUERY_DURATION),
314       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
315       GST_QUARK (DURATION), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
316
317   query = gst_query_new_custom (GST_QUERY_DURATION, structure);
318
319   return query;
320 }
321
322 /**
323  * gst_query_set_duration:
324  * @query: a #GstQuery
325  * @format: the #GstFormat for the duration
326  * @duration: the duration of the stream
327  *
328  * Answer a duration query by setting the requested value in the given format.
329  */
330 void
331 gst_query_set_duration (GstQuery * query, GstFormat format, gint64 duration)
332 {
333   GstStructure *s;
334
335   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_DURATION);
336
337   s = GST_QUERY_STRUCTURE (query);
338   g_return_if_fail (format == g_value_get_enum (gst_structure_id_get_value (s,
339               GST_QUARK (FORMAT))));
340   gst_structure_id_set (s, GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
341       GST_QUARK (DURATION), G_TYPE_INT64, duration, NULL);
342 }
343
344 /**
345  * gst_query_parse_duration:
346  * @query: a #GstQuery
347  * @format: (out) (allow-none): the storage for the #GstFormat of the duration
348  *     value, or %NULL.
349  * @duration: (out) (allow-none): the storage for the total duration, or %NULL.
350  *
351  * Parse a duration query answer. Write the format of the duration into @format,
352  * and the value into @duration, if the respective variables are non-%NULL.
353  */
354 void
355 gst_query_parse_duration (GstQuery * query, GstFormat * format,
356     gint64 * duration)
357 {
358   GstStructure *structure;
359
360   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_DURATION);
361
362   structure = GST_QUERY_STRUCTURE (query);
363   if (format)
364     *format =
365         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
366             GST_QUARK (FORMAT)));
367   if (duration)
368     *duration = g_value_get_int64 (gst_structure_id_get_value (structure,
369             GST_QUARK (DURATION)));
370 }
371
372 /**
373  * gst_query_new_latency:
374  *
375  * Constructs a new latency query object.
376  * Use gst_query_unref() when done with it. A latency query is usually performed
377  * by sinks to compensate for additional latency introduced by elements in the
378  * pipeline.
379  *
380  * Free-function: gst_query_unref
381  *
382  * Returns: (transfer full): a #GstQuery
383  */
384 GstQuery *
385 gst_query_new_latency (void)
386 {
387   GstQuery *query;
388   GstStructure *structure;
389
390   structure = gst_structure_new_id (GST_QUARK (QUERY_LATENCY),
391       GST_QUARK (LIVE), G_TYPE_BOOLEAN, FALSE,
392       GST_QUARK (MIN_LATENCY), G_TYPE_UINT64, G_GUINT64_CONSTANT (0),
393       GST_QUARK (MAX_LATENCY), G_TYPE_UINT64, G_GUINT64_CONSTANT (-1), NULL);
394
395   query = gst_query_new_custom (GST_QUERY_LATENCY, structure);
396
397   return query;
398 }
399
400 /**
401  * gst_query_set_latency:
402  * @query: a #GstQuery
403  * @live: if there is a live element upstream
404  * @min_latency: the minimal latency of the upstream elements
405  * @max_latency: the maximal latency of the upstream elements
406  *
407  * Answer a latency query by setting the requested values in the given format.
408  */
409 void
410 gst_query_set_latency (GstQuery * query, gboolean live,
411     GstClockTime min_latency, GstClockTime max_latency)
412 {
413   GstStructure *structure;
414
415   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_LATENCY);
416   g_return_if_fail (GST_CLOCK_TIME_IS_VALID (min_latency));
417
418   structure = GST_QUERY_STRUCTURE (query);
419   gst_structure_id_set (structure,
420       GST_QUARK (LIVE), G_TYPE_BOOLEAN, live,
421       GST_QUARK (MIN_LATENCY), G_TYPE_UINT64, min_latency,
422       GST_QUARK (MAX_LATENCY), G_TYPE_UINT64, max_latency, NULL);
423 }
424
425 /**
426  * gst_query_parse_latency:
427  * @query: a #GstQuery
428  * @live: (out) (allow-none): storage for live or %NULL
429  * @min_latency: (out) (allow-none): the storage for the min latency or %NULL
430  * @max_latency: (out) (allow-none): the storage for the max latency or %NULL
431  *
432  * Parse a latency query answer.
433  */
434 void
435 gst_query_parse_latency (GstQuery * query, gboolean * live,
436     GstClockTime * min_latency, GstClockTime * max_latency)
437 {
438   GstStructure *structure;
439
440   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_LATENCY);
441
442   structure = GST_QUERY_STRUCTURE (query);
443   if (live)
444     *live =
445         g_value_get_boolean (gst_structure_id_get_value (structure,
446             GST_QUARK (LIVE)));
447   if (min_latency)
448     *min_latency = g_value_get_uint64 (gst_structure_id_get_value (structure,
449             GST_QUARK (MIN_LATENCY)));
450   if (max_latency)
451     *max_latency = g_value_get_uint64 (gst_structure_id_get_value (structure,
452             GST_QUARK (MAX_LATENCY)));
453 }
454
455 /**
456  * gst_query_new_convert:
457  * @src_format: the source #GstFormat for the new query
458  * @value: the value to convert
459  * @dest_format: the target #GstFormat
460  *
461  * Constructs a new convert query object. Use gst_query_unref()
462  * when done with it. A convert query is used to ask for a conversion between
463  * one format and another.
464  *
465  * Free-function: gst_query_unref
466  *
467  * Returns: (transfer full): a #GstQuery
468  */
469 GstQuery *
470 gst_query_new_convert (GstFormat src_format, gint64 value,
471     GstFormat dest_format)
472 {
473   GstQuery *query;
474   GstStructure *structure;
475
476   structure = gst_structure_new_id (GST_QUARK (QUERY_CONVERT),
477       GST_QUARK (SRC_FORMAT), GST_TYPE_FORMAT, src_format,
478       GST_QUARK (SRC_VALUE), G_TYPE_INT64, value,
479       GST_QUARK (DEST_FORMAT), GST_TYPE_FORMAT, dest_format,
480       GST_QUARK (DEST_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
481
482   query = gst_query_new_custom (GST_QUERY_CONVERT, structure);
483
484   return query;
485 }
486
487 /**
488  * gst_query_set_convert:
489  * @query: a #GstQuery
490  * @src_format: the source #GstFormat
491  * @src_value: the source value
492  * @dest_format: the destination #GstFormat
493  * @dest_value: the destination value
494  *
495  * Answer a convert query by setting the requested values.
496  */
497 void
498 gst_query_set_convert (GstQuery * query, GstFormat src_format, gint64 src_value,
499     GstFormat dest_format, gint64 dest_value)
500 {
501   GstStructure *structure;
502
503   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CONVERT);
504
505   structure = GST_QUERY_STRUCTURE (query);
506   gst_structure_id_set (structure,
507       GST_QUARK (SRC_FORMAT), GST_TYPE_FORMAT, src_format,
508       GST_QUARK (SRC_VALUE), G_TYPE_INT64, src_value,
509       GST_QUARK (DEST_FORMAT), GST_TYPE_FORMAT, dest_format,
510       GST_QUARK (DEST_VALUE), G_TYPE_INT64, dest_value, NULL);
511 }
512
513 /**
514  * gst_query_parse_convert:
515  * @query: a #GstQuery
516  * @src_format: (out) (allow-none): the storage for the #GstFormat of the
517  *     source value, or %NULL
518  * @src_value: (out) (allow-none): the storage for the source value, or %NULL
519  * @dest_format: (out) (allow-none): the storage for the #GstFormat of the
520  *     destination value, or %NULL
521  * @dest_value: (out) (allow-none): the storage for the destination value,
522  *     or %NULL
523  *
524  * Parse a convert query answer. Any of @src_format, @src_value, @dest_format,
525  * and @dest_value may be %NULL, in which case that value is omitted.
526  */
527 void
528 gst_query_parse_convert (GstQuery * query, GstFormat * src_format,
529     gint64 * src_value, GstFormat * dest_format, gint64 * dest_value)
530 {
531   GstStructure *structure;
532
533   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CONVERT);
534
535   structure = GST_QUERY_STRUCTURE (query);
536   if (src_format)
537     *src_format =
538         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
539             GST_QUARK (SRC_FORMAT)));
540   if (src_value)
541     *src_value = g_value_get_int64 (gst_structure_id_get_value (structure,
542             GST_QUARK (SRC_VALUE)));
543   if (dest_format)
544     *dest_format =
545         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
546             GST_QUARK (DEST_FORMAT)));
547   if (dest_value)
548     *dest_value = g_value_get_int64 (gst_structure_id_get_value (structure,
549             GST_QUARK (DEST_VALUE)));
550 }
551
552 /**
553  * gst_query_new_segment:
554  * @format: the #GstFormat for the new query
555  *
556  * Constructs a new segment query object. Use gst_query_unref()
557  * when done with it. A segment query is used to discover information about the
558  * currently configured segment for playback.
559  *
560  * Free-function: gst_query_unref
561  *
562  * Returns: (transfer full): a new #GstQuery
563  */
564 GstQuery *
565 gst_query_new_segment (GstFormat format)
566 {
567   GstQuery *query;
568   GstStructure *structure;
569
570   structure = gst_structure_new_id (GST_QUARK (QUERY_SEGMENT),
571       GST_QUARK (RATE), G_TYPE_DOUBLE, (gdouble) 0.0,
572       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
573       GST_QUARK (START_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
574       GST_QUARK (STOP_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
575
576   query = gst_query_new_custom (GST_QUERY_SEGMENT, structure);
577
578   return query;
579 }
580
581 /**
582  * gst_query_set_segment:
583  * @query: a #GstQuery
584  * @rate: the rate of the segment
585  * @format: the #GstFormat of the segment values (@start_value and @stop_value)
586  * @start_value: the start value
587  * @stop_value: the stop value
588  *
589  * Answer a segment query by setting the requested values. The normal
590  * playback segment of a pipeline is 0 to duration at the default rate of
591  * 1.0. If a seek was performed on the pipeline to play a different
592  * segment, this query will return the range specified in the last seek.
593  *
594  * @start_value and @stop_value will respectively contain the configured
595  * playback range start and stop values expressed in @format.
596  * The values are always between 0 and the duration of the media and
597  * @start_value <= @stop_value. @rate will contain the playback rate. For
598  * negative rates, playback will actually happen from @stop_value to
599  * @start_value.
600  */
601 void
602 gst_query_set_segment (GstQuery * query, gdouble rate, GstFormat format,
603     gint64 start_value, gint64 stop_value)
604 {
605   GstStructure *structure;
606
607   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SEGMENT);
608
609   structure = GST_QUERY_STRUCTURE (query);
610   gst_structure_id_set (structure,
611       GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
612       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
613       GST_QUARK (START_VALUE), G_TYPE_INT64, start_value,
614       GST_QUARK (STOP_VALUE), G_TYPE_INT64, stop_value, NULL);
615 }
616
617 /**
618  * gst_query_parse_segment:
619  * @query: a #GstQuery
620  * @rate: (out) (allow-none): the storage for the rate of the segment, or %NULL
621  * @format: (out) (allow-none): the storage for the #GstFormat of the values,
622  *     or %NULL
623  * @start_value: (out) (allow-none): the storage for the start value, or %NULL
624  * @stop_value: (out) (allow-none): the storage for the stop value, or %NULL
625  *
626  * Parse a segment query answer. Any of @rate, @format, @start_value, and
627  * @stop_value may be %NULL, which will cause this value to be omitted.
628  *
629  * See gst_query_set_segment() for an explanation of the function arguments.
630  */
631 void
632 gst_query_parse_segment (GstQuery * query, gdouble * rate, GstFormat * format,
633     gint64 * start_value, gint64 * stop_value)
634 {
635   GstStructure *structure;
636
637   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SEGMENT);
638
639   structure = GST_QUERY_STRUCTURE (query);
640   if (rate)
641     *rate = g_value_get_double (gst_structure_id_get_value (structure,
642             GST_QUARK (RATE)));
643   if (format)
644     *format =
645         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
646             GST_QUARK (FORMAT)));
647   if (start_value)
648     *start_value = g_value_get_int64 (gst_structure_id_get_value (structure,
649             GST_QUARK (START_VALUE)));
650   if (stop_value)
651     *stop_value = g_value_get_int64 (gst_structure_id_get_value (structure,
652             GST_QUARK (STOP_VALUE)));
653 }
654
655 /**
656  * gst_query_new_custom:
657  * @type: the query type
658  * @structure: (allow-none) (transfer full): a structure for the query
659  *
660  * Constructs a new custom query object. Use gst_query_unref()
661  * when done with it.
662  *
663  * Free-function: gst_query_unref
664  *
665  * Returns: (transfer full): a new #GstQuery
666  */
667 GstQuery *
668 gst_query_new_custom (GstQueryType type, GstStructure * structure)
669 {
670   GstQueryImpl *query;
671
672   query = g_slice_new0 (GstQueryImpl);
673
674   GST_DEBUG ("creating new query %p %s", query, gst_query_type_get_name (type));
675
676   if (structure) {
677     /* structure must not have a parent */
678     if (!gst_structure_set_parent_refcount (structure,
679             &query->query.mini_object.refcount))
680       goto had_parent;
681   }
682
683   gst_mini_object_init (GST_MINI_OBJECT_CAST (query), 0, _gst_query_type,
684       (GstMiniObjectCopyFunction) _gst_query_copy, NULL,
685       (GstMiniObjectFreeFunction) _gst_query_free);
686
687   GST_QUERY_TYPE (query) = type;
688   GST_QUERY_STRUCTURE (query) = structure;
689
690   return GST_QUERY_CAST (query);
691
692   /* ERRORS */
693 had_parent:
694   {
695     g_slice_free1 (sizeof (GstQueryImpl), query);
696     g_warning ("structure is already owned by another object");
697     return NULL;
698   }
699 }
700
701 /**
702  * gst_query_get_structure:
703  * @query: a #GstQuery
704  *
705  * Get the structure of a query.
706  *
707  * Returns: (transfer none): the #GstStructure of the query. The structure is
708  *     still owned by the query and will therefore be freed when the query
709  *     is unreffed.
710  */
711 const GstStructure *
712 gst_query_get_structure (GstQuery * query)
713 {
714   g_return_val_if_fail (GST_IS_QUERY (query), NULL);
715
716   return GST_QUERY_STRUCTURE (query);
717 }
718
719 /**
720  * gst_query_writable_structure:
721  * @query: a #GstQuery
722  *
723  * Get the structure of a query. This method should be called with a writable
724  * @query so that the returned structure is guaranteed to be writable.
725  *
726  * Returns: (transfer none): the #GstStructure of the query. The structure is
727  *     still owned by the query and will therefore be freed when the query
728  *     is unreffed.
729  */
730 GstStructure *
731 gst_query_writable_structure (GstQuery * query)
732 {
733   g_return_val_if_fail (GST_IS_QUERY (query), NULL);
734   g_return_val_if_fail (gst_query_is_writable (query), NULL);
735
736   return GST_QUERY_STRUCTURE (query);
737 }
738
739 /**
740  * gst_query_new_seeking:
741  * @format: the default #GstFormat for the new query
742  *
743  * Constructs a new query object for querying seeking properties of
744  * the stream.
745  *
746  * Free-function: gst_query_unref
747  *
748  * Returns: (transfer full): a new #GstQuery
749  */
750 GstQuery *
751 gst_query_new_seeking (GstFormat format)
752 {
753   GstQuery *query;
754   GstStructure *structure;
755
756   structure = gst_structure_new_id (GST_QUARK (QUERY_SEEKING),
757       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
758       GST_QUARK (SEEKABLE), G_TYPE_BOOLEAN, FALSE,
759       GST_QUARK (SEGMENT_START), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
760       GST_QUARK (SEGMENT_END), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
761
762   query = gst_query_new_custom (GST_QUERY_SEEKING, structure);
763
764   return query;
765 }
766
767 /**
768  * gst_query_set_seeking:
769  * @query: a #GstQuery
770  * @format: the format to set for the @segment_start and @segment_end values
771  * @seekable: the seekable flag to set
772  * @segment_start: the segment_start to set
773  * @segment_end: the segment_end to set
774  *
775  * Set the seeking query result fields in @query.
776  */
777 void
778 gst_query_set_seeking (GstQuery * query, GstFormat format,
779     gboolean seekable, gint64 segment_start, gint64 segment_end)
780 {
781   GstStructure *structure;
782
783   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SEEKING);
784   g_return_if_fail (gst_query_is_writable (query));
785
786   structure = GST_QUERY_STRUCTURE (query);
787   gst_structure_id_set (structure,
788       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
789       GST_QUARK (SEEKABLE), G_TYPE_BOOLEAN, seekable,
790       GST_QUARK (SEGMENT_START), G_TYPE_INT64, segment_start,
791       GST_QUARK (SEGMENT_END), G_TYPE_INT64, segment_end, NULL);
792 }
793
794 /**
795  * gst_query_parse_seeking:
796  * @query: a GST_QUERY_SEEKING type query #GstQuery
797  * @format: (out) (allow-none): the format to set for the @segment_start
798  *     and @segment_end values, or %NULL
799  * @seekable: (out) (allow-none): the seekable flag to set, or %NULL
800  * @segment_start: (out) (allow-none): the segment_start to set, or %NULL
801  * @segment_end: (out) (allow-none): the segment_end to set, or %NULL
802  *
803  * Parse a seeking query, writing the format into @format, and
804  * other results into the passed parameters, if the respective parameters
805  * are non-%NULL
806  */
807 void
808 gst_query_parse_seeking (GstQuery * query, GstFormat * format,
809     gboolean * seekable, gint64 * segment_start, gint64 * segment_end)
810 {
811   GstStructure *structure;
812
813   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SEEKING);
814
815   structure = GST_QUERY_STRUCTURE (query);
816   if (format)
817     *format =
818         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
819             GST_QUARK (FORMAT)));
820   if (seekable)
821     *seekable = g_value_get_boolean (gst_structure_id_get_value (structure,
822             GST_QUARK (SEEKABLE)));
823   if (segment_start)
824     *segment_start = g_value_get_int64 (gst_structure_id_get_value (structure,
825             GST_QUARK (SEGMENT_START)));
826   if (segment_end)
827     *segment_end = g_value_get_int64 (gst_structure_id_get_value (structure,
828             GST_QUARK (SEGMENT_END)));
829 }
830
831 static GArray *
832 ensure_array (GstStructure * s, GQuark quark, gsize element_size,
833     GDestroyNotify clear_func)
834 {
835   GArray *array;
836   const GValue *value;
837
838   value = gst_structure_id_get_value (s, quark);
839   if (value) {
840     array = (GArray *) g_value_get_boxed (value);
841   } else {
842     GValue new_array_val = { 0, };
843
844     array = g_array_new (FALSE, TRUE, element_size);
845     if (clear_func)
846       g_array_set_clear_func (array, clear_func);
847
848     g_value_init (&new_array_val, G_TYPE_ARRAY);
849     g_value_take_boxed (&new_array_val, array);
850
851     gst_structure_id_take_value (s, quark, &new_array_val);
852   }
853   return array;
854 }
855
856 /**
857  * gst_query_new_formats:
858  *
859  * Constructs a new query object for querying formats of
860  * the stream.
861  *
862  * Free-function: gst_query_unref
863  *
864  * Returns: (transfer full): a new #GstQuery
865  */
866 GstQuery *
867 gst_query_new_formats (void)
868 {
869   GstQuery *query;
870   GstStructure *structure;
871
872   structure = gst_structure_new_id_empty (GST_QUARK (QUERY_FORMATS));
873   query = gst_query_new_custom (GST_QUERY_FORMATS, structure);
874
875   return query;
876 }
877
878 static void
879 gst_query_list_add_format (GValue * list, GstFormat format)
880 {
881   GValue item = { 0, };
882
883   g_value_init (&item, GST_TYPE_FORMAT);
884   g_value_set_enum (&item, format);
885   gst_value_list_append_value (list, &item);
886   g_value_unset (&item);
887 }
888
889 /**
890  * gst_query_set_formats:
891  * @query: a #GstQuery
892  * @n_formats: the number of formats to set.
893  * @...: A number of @GstFormats equal to @n_formats.
894  *
895  * Set the formats query result fields in @query. The number of formats passed
896  * must be equal to @n_formats.
897  */
898 void
899 gst_query_set_formats (GstQuery * query, gint n_formats, ...)
900 {
901   va_list ap;
902   GValue list = { 0, };
903   gint i;
904   GstStructure *structure;
905
906   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_FORMATS);
907   g_return_if_fail (gst_query_is_writable (query));
908
909   g_value_init (&list, GST_TYPE_LIST);
910
911   va_start (ap, n_formats);
912   for (i = 0; i < n_formats; i++) {
913     gst_query_list_add_format (&list, va_arg (ap, GstFormat));
914   }
915   va_end (ap);
916
917   structure = GST_QUERY_STRUCTURE (query);
918   gst_structure_set_value (structure, "formats", &list);
919
920   g_value_unset (&list);
921
922 }
923
924 /**
925  * gst_query_set_formatsv:
926  * @query: a #GstQuery
927  * @n_formats: the number of formats to set.
928  * @formats: (in) (array length=n_formats): an array containing @n_formats
929  *     @GstFormat values.
930  *
931  * Set the formats query result fields in @query. The number of formats passed
932  * in the @formats array must be equal to @n_formats.
933  */
934 void
935 gst_query_set_formatsv (GstQuery * query, gint n_formats,
936     const GstFormat * formats)
937 {
938   GValue list = { 0, };
939   gint i;
940   GstStructure *structure;
941
942   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_FORMATS);
943   g_return_if_fail (gst_query_is_writable (query));
944
945   g_value_init (&list, GST_TYPE_LIST);
946   for (i = 0; i < n_formats; i++) {
947     gst_query_list_add_format (&list, formats[i]);
948   }
949   structure = GST_QUERY_STRUCTURE (query);
950   gst_structure_set_value (structure, "formats", &list);
951
952   g_value_unset (&list);
953 }
954
955 /**
956  * gst_query_parse_n_formats:
957  * @query: a #GstQuery
958  * @n_formats: (out) (allow-none): the number of formats in this query.
959  *
960  * Parse the number of formats in the formats @query.
961  */
962 void
963 gst_query_parse_n_formats (GstQuery * query, guint * n_formats)
964 {
965   GstStructure *structure;
966
967   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_FORMATS);
968
969   if (n_formats) {
970     const GValue *list;
971
972     structure = GST_QUERY_STRUCTURE (query);
973     list = gst_structure_get_value (structure, "formats");
974     if (list == NULL)
975       *n_formats = 0;
976     else
977       *n_formats = gst_value_list_get_size (list);
978   }
979 }
980
981 /**
982  * gst_query_parse_nth_format:
983  * @query: a #GstQuery
984  * @nth: (out): the nth format to retrieve.
985  * @format: (out) (allow-none): a pointer to store the nth format
986  *
987  * Parse the format query and retrieve the @nth format from it into
988  * @format. If the list contains less elements than @nth, @format will be
989  * set to GST_FORMAT_UNDEFINED.
990  */
991 void
992 gst_query_parse_nth_format (GstQuery * query, guint nth, GstFormat * format)
993 {
994   GstStructure *structure;
995
996   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_FORMATS);
997
998   if (format) {
999     const GValue *list;
1000
1001     structure = GST_QUERY_STRUCTURE (query);
1002     list = gst_structure_get_value (structure, "formats");
1003     if (list == NULL) {
1004       *format = GST_FORMAT_UNDEFINED;
1005     } else {
1006       if (nth < gst_value_list_get_size (list)) {
1007         *format =
1008             (GstFormat) g_value_get_enum (gst_value_list_get_value (list, nth));
1009       } else
1010         *format = GST_FORMAT_UNDEFINED;
1011     }
1012   }
1013 }
1014
1015 /**
1016  * gst_query_new_buffering:
1017  * @format: the default #GstFormat for the new query
1018  *
1019  * Constructs a new query object for querying the buffering status of
1020  * a stream.
1021  *
1022  * Free-function: gst_query_unref
1023  *
1024  * Returns: (transfer full): a new #GstQuery
1025  */
1026 GstQuery *
1027 gst_query_new_buffering (GstFormat format)
1028 {
1029   GstQuery *query;
1030   GstStructure *structure;
1031
1032   /* by default, we configure the answer as no buffering with a 100% buffering
1033    * progress */
1034   structure = gst_structure_new_id (GST_QUARK (QUERY_BUFFERING),
1035       GST_QUARK (BUSY), G_TYPE_BOOLEAN, FALSE,
1036       GST_QUARK (BUFFER_PERCENT), G_TYPE_INT, 100,
1037       GST_QUARK (BUFFERING_MODE), GST_TYPE_BUFFERING_MODE, GST_BUFFERING_STREAM,
1038       GST_QUARK (AVG_IN_RATE), G_TYPE_INT, -1,
1039       GST_QUARK (AVG_OUT_RATE), G_TYPE_INT, -1,
1040       GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, G_GINT64_CONSTANT (0),
1041       GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
1042       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1043       GST_QUARK (START_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
1044       GST_QUARK (STOP_VALUE), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
1045
1046   query = gst_query_new_custom (GST_QUERY_BUFFERING, structure);
1047
1048   return query;
1049 }
1050
1051 /**
1052  * gst_query_set_buffering_percent:
1053  * @query: A valid #GstQuery of type GST_QUERY_BUFFERING.
1054  * @busy: if buffering is busy
1055  * @percent: a buffering percent
1056  *
1057  * Set the percentage of buffered data. This is a value between 0 and 100.
1058  * The @busy indicator is %TRUE when the buffering is in progress.
1059  */
1060 void
1061 gst_query_set_buffering_percent (GstQuery * query, gboolean busy, gint percent)
1062 {
1063   GstStructure *structure;
1064
1065   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1066   g_return_if_fail (gst_query_is_writable (query));
1067   g_return_if_fail (percent >= 0 && percent <= 100);
1068
1069   structure = GST_QUERY_STRUCTURE (query);
1070   gst_structure_id_set (structure,
1071       GST_QUARK (BUSY), G_TYPE_BOOLEAN, busy,
1072       GST_QUARK (BUFFER_PERCENT), G_TYPE_INT, percent, NULL);
1073 }
1074
1075 /**
1076  * gst_query_parse_buffering_percent:
1077  * @query: A valid #GstQuery of type GST_QUERY_BUFFERING.
1078  * @busy: (out) (allow-none): if buffering is busy, or %NULL
1079  * @percent: (out) (allow-none): a buffering percent, or %NULL
1080  *
1081  * Get the percentage of buffered data. This is a value between 0 and 100.
1082  * The @busy indicator is %TRUE when the buffering is in progress.
1083  */
1084 void
1085 gst_query_parse_buffering_percent (GstQuery * query, gboolean * busy,
1086     gint * percent)
1087 {
1088   GstStructure *structure;
1089
1090   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1091
1092   structure = GST_QUERY_STRUCTURE (query);
1093   if (busy)
1094     *busy = g_value_get_boolean (gst_structure_id_get_value (structure,
1095             GST_QUARK (BUSY)));
1096   if (percent)
1097     *percent = g_value_get_int (gst_structure_id_get_value (structure,
1098             GST_QUARK (BUFFER_PERCENT)));
1099 }
1100
1101 /**
1102  * gst_query_set_buffering_stats:
1103  * @query: A valid #GstQuery of type GST_QUERY_BUFFERING.
1104  * @mode: a buffering mode
1105  * @avg_in: the average input rate
1106  * @avg_out: the average output rate
1107  * @buffering_left: amount of buffering time left in milliseconds
1108  *
1109  * Configures the buffering stats values in @query.
1110  */
1111 void
1112 gst_query_set_buffering_stats (GstQuery * query, GstBufferingMode mode,
1113     gint avg_in, gint avg_out, gint64 buffering_left)
1114 {
1115   GstStructure *structure;
1116
1117   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1118   g_return_if_fail (gst_query_is_writable (query));
1119
1120   structure = GST_QUERY_STRUCTURE (query);
1121   gst_structure_id_set (structure,
1122       GST_QUARK (BUFFERING_MODE), GST_TYPE_BUFFERING_MODE, mode,
1123       GST_QUARK (AVG_IN_RATE), G_TYPE_INT, avg_in,
1124       GST_QUARK (AVG_OUT_RATE), G_TYPE_INT, avg_out,
1125       GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, buffering_left, NULL);
1126 }
1127
1128 /**
1129  * gst_query_parse_buffering_stats:
1130  * @query: A valid #GstQuery of type GST_QUERY_BUFFERING.
1131  * @mode: (out) (allow-none): a buffering mode, or %NULL
1132  * @avg_in: (out) (allow-none): the average input rate, or %NULL
1133  * @avg_out: (out) (allow-none): the average output rat, or %NULL
1134  * @buffering_left: (out) (allow-none): amount of buffering time left in
1135  *     milliseconds, or %NULL
1136  *
1137  * Extracts the buffering stats values from @query.
1138  */
1139 void
1140 gst_query_parse_buffering_stats (GstQuery * query,
1141     GstBufferingMode * mode, gint * avg_in, gint * avg_out,
1142     gint64 * buffering_left)
1143 {
1144   GstStructure *structure;
1145
1146   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1147
1148   structure = GST_QUERY_STRUCTURE (query);
1149   if (mode)
1150     *mode = (GstBufferingMode)
1151         g_value_get_enum (gst_structure_id_get_value (structure,
1152             GST_QUARK (BUFFERING_MODE)));
1153   if (avg_in)
1154     *avg_in = g_value_get_int (gst_structure_id_get_value (structure,
1155             GST_QUARK (AVG_IN_RATE)));
1156   if (avg_out)
1157     *avg_out = g_value_get_int (gst_structure_id_get_value (structure,
1158             GST_QUARK (AVG_OUT_RATE)));
1159   if (buffering_left)
1160     *buffering_left =
1161         g_value_get_int64 (gst_structure_id_get_value (structure,
1162             GST_QUARK (BUFFERING_LEFT)));
1163 }
1164
1165 /**
1166  * gst_query_set_buffering_range:
1167  * @query: a #GstQuery
1168  * @format: the format to set for the @start and @stop values
1169  * @start: the start to set
1170  * @stop: the stop to set
1171  * @estimated_total: estimated total amount of download time remaining in
1172  *     milliseconds
1173  *
1174  * Set the available query result fields in @query.
1175  */
1176 void
1177 gst_query_set_buffering_range (GstQuery * query, GstFormat format,
1178     gint64 start, gint64 stop, gint64 estimated_total)
1179 {
1180   GstStructure *structure;
1181
1182   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1183   g_return_if_fail (gst_query_is_writable (query));
1184
1185   structure = GST_QUERY_STRUCTURE (query);
1186   gst_structure_id_set (structure,
1187       GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
1188       GST_QUARK (START_VALUE), G_TYPE_INT64, start,
1189       GST_QUARK (STOP_VALUE), G_TYPE_INT64, stop,
1190       GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, estimated_total, NULL);
1191 }
1192
1193 /**
1194  * gst_query_parse_buffering_range:
1195  * @query: a GST_QUERY_BUFFERING type query #GstQuery
1196  * @format: (out) (allow-none): the format to set for the @segment_start
1197  *     and @segment_end values, or %NULL
1198  * @start: (out) (allow-none): the start to set, or %NULL
1199  * @stop: (out) (allow-none): the stop to set, or %NULL
1200  * @estimated_total: (out) (allow-none): estimated total amount of download
1201  *     time remaining in milliseconds, or %NULL
1202  *
1203  * Parse an available query, writing the format into @format, and
1204  * other results into the passed parameters, if the respective parameters
1205  * are non-%NULL
1206  */
1207 void
1208 gst_query_parse_buffering_range (GstQuery * query, GstFormat * format,
1209     gint64 * start, gint64 * stop, gint64 * estimated_total)
1210 {
1211   GstStructure *structure;
1212
1213   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING);
1214
1215   structure = GST_QUERY_STRUCTURE (query);
1216   if (format)
1217     *format =
1218         (GstFormat) g_value_get_enum (gst_structure_id_get_value (structure,
1219             GST_QUARK (FORMAT)));
1220   if (start)
1221     *start = g_value_get_int64 (gst_structure_id_get_value (structure,
1222             GST_QUARK (START_VALUE)));
1223   if (stop)
1224     *stop = g_value_get_int64 (gst_structure_id_get_value (structure,
1225             GST_QUARK (STOP_VALUE)));
1226   if (estimated_total)
1227     *estimated_total =
1228         g_value_get_int64 (gst_structure_id_get_value (structure,
1229             GST_QUARK (ESTIMATED_TOTAL)));
1230 }
1231
1232 /* GstQueryBufferingRange: internal struct for GArray */
1233 typedef struct
1234 {
1235   gint64 start;
1236   gint64 stop;
1237 } GstQueryBufferingRange;
1238
1239 /**
1240  * gst_query_add_buffering_range:
1241  * @query: a GST_QUERY_BUFFERING type query #GstQuery
1242  * @start: start position of the range
1243  * @stop: stop position of the range
1244  *
1245  * Set the buffering-ranges array field in @query. The current last
1246  * start position of the array should be inferior to @start.
1247  *
1248  * Returns: a #gboolean indicating if the range was added or not.
1249  */
1250 gboolean
1251 gst_query_add_buffering_range (GstQuery * query, gint64 start, gint64 stop)
1252 {
1253   GstQueryBufferingRange range;
1254   GstStructure *structure;
1255   GArray *array;
1256
1257   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING, FALSE);
1258   g_return_val_if_fail (gst_query_is_writable (query), FALSE);
1259
1260   if (G_UNLIKELY (start >= stop))
1261     return FALSE;
1262
1263   structure = GST_QUERY_STRUCTURE (query);
1264   array = ensure_array (structure, GST_QUARK (BUFFERING_RANGES),
1265       sizeof (GstQueryBufferingRange), NULL);
1266
1267   if (array->len > 1) {
1268     GstQueryBufferingRange *last;
1269
1270     last = &g_array_index (array, GstQueryBufferingRange, array->len - 1);
1271
1272     if (G_UNLIKELY (start <= last->start))
1273       return FALSE;
1274   }
1275
1276   range.start = start;
1277   range.stop = stop;
1278   g_array_append_val (array, range);
1279
1280   return TRUE;
1281 }
1282
1283 /**
1284  * gst_query_get_n_buffering_ranges:
1285  * @query: a GST_QUERY_BUFFERING type query #GstQuery
1286  *
1287  * Retrieve the number of values currently stored in the
1288  * buffered-ranges array of the query's structure.
1289  *
1290  * Returns: the range array size as a #guint.
1291  */
1292 guint
1293 gst_query_get_n_buffering_ranges (GstQuery * query)
1294 {
1295   GstStructure *structure;
1296   GArray *array;
1297
1298   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING, 0);
1299
1300   structure = GST_QUERY_STRUCTURE (query);
1301   array = ensure_array (structure, GST_QUARK (BUFFERING_RANGES),
1302       sizeof (GstQueryBufferingRange), NULL);
1303
1304   return array->len;
1305 }
1306
1307
1308 /**
1309  * gst_query_parse_nth_buffering_range:
1310  * @query: a GST_QUERY_BUFFERING type query #GstQuery
1311  * @index: position in the buffered-ranges array to read
1312  * @start: (out) (allow-none): the start position to set, or %NULL
1313  * @stop: (out) (allow-none): the stop position to set, or %NULL
1314  *
1315  * Parse an available query and get the start and stop values stored
1316  * at the @index of the buffered ranges array.
1317  *
1318  * Returns: a #gboolean indicating if the parsing succeeded.
1319  */
1320 gboolean
1321 gst_query_parse_nth_buffering_range (GstQuery * query, guint index,
1322     gint64 * start, gint64 * stop)
1323 {
1324   GstQueryBufferingRange *range;
1325   GstStructure *structure;
1326   GArray *array;
1327
1328   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_BUFFERING, FALSE);
1329
1330   structure = GST_QUERY_STRUCTURE (query);
1331
1332   array = ensure_array (structure, GST_QUARK (BUFFERING_RANGES),
1333       sizeof (GstQueryBufferingRange), NULL);
1334   g_return_val_if_fail (index < array->len, FALSE);
1335
1336   range = &g_array_index (array, GstQueryBufferingRange, index);
1337
1338   if (start)
1339     *start = range->start;
1340   if (stop)
1341     *stop = range->stop;
1342
1343   return TRUE;
1344 }
1345
1346
1347 /**
1348  * gst_query_new_uri:
1349  *
1350  * Constructs a new query URI query object. Use gst_query_unref()
1351  * when done with it. An URI query is used to query the current URI
1352  * that is used by the source or sink.
1353  *
1354  * Free-function: gst_query_unref
1355  *
1356  * Returns: (transfer full): a new #GstQuery
1357  */
1358 GstQuery *
1359 gst_query_new_uri (void)
1360 {
1361   GstQuery *query;
1362   GstStructure *structure;
1363
1364   structure = gst_structure_new_id (GST_QUARK (QUERY_URI),
1365       GST_QUARK (URI), G_TYPE_STRING, NULL, NULL);
1366
1367   query = gst_query_new_custom (GST_QUERY_URI, structure);
1368
1369   return query;
1370 }
1371
1372 /**
1373  * gst_query_set_uri:
1374  * @query: a #GstQuery with query type GST_QUERY_URI
1375  * @uri: the URI to set
1376  *
1377  * Answer a URI query by setting the requested URI.
1378  */
1379 void
1380 gst_query_set_uri (GstQuery * query, const gchar * uri)
1381 {
1382   GstStructure *structure;
1383
1384   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1385   g_return_if_fail (gst_query_is_writable (query));
1386   g_return_if_fail (gst_uri_is_valid (uri));
1387
1388   structure = GST_QUERY_STRUCTURE (query);
1389   gst_structure_id_set (structure, GST_QUARK (URI), G_TYPE_STRING, uri, NULL);
1390 }
1391
1392 /**
1393  * gst_query_parse_uri:
1394  * @query: a #GstQuery
1395  * @uri: (out) (transfer full) (allow-none): the storage for the current URI
1396  *     (may be %NULL)
1397  *
1398  * Parse an URI query, writing the URI into @uri as a newly
1399  * allocated string, if the respective parameters are non-%NULL.
1400  * Free the string with g_free() after usage.
1401  */
1402 void
1403 gst_query_parse_uri (GstQuery * query, gchar ** uri)
1404 {
1405   GstStructure *structure;
1406
1407   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1408
1409   structure = GST_QUERY_STRUCTURE (query);
1410   if (uri)
1411     *uri = g_value_dup_string (gst_structure_id_get_value (structure,
1412             GST_QUARK (URI)));
1413 }
1414
1415 /**
1416  * gst_query_set_uri_redirection:
1417  * @query: a #GstQuery with query type GST_QUERY_URI
1418  * @uri: the URI to set
1419  *
1420  * Answer a URI query by setting the requested URI redirection.
1421  *
1422  * Since: 1.2
1423  */
1424 void
1425 gst_query_set_uri_redirection (GstQuery * query, const gchar * uri)
1426 {
1427   GstStructure *structure;
1428
1429   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1430   g_return_if_fail (gst_query_is_writable (query));
1431   g_return_if_fail (gst_uri_is_valid (uri));
1432
1433   structure = GST_QUERY_STRUCTURE (query);
1434   gst_structure_id_set (structure, GST_QUARK (URI_REDIRECTION),
1435       G_TYPE_STRING, uri, NULL);
1436 }
1437
1438 /**
1439  * gst_query_parse_uri_redirection:
1440  * @query: a #GstQuery
1441  * @uri: (out) (transfer full) (allow-none): the storage for the redirect URI
1442  *     (may be %NULL)
1443  *
1444  * Parse an URI query, writing the URI into @uri as a newly
1445  * allocated string, if the respective parameters are non-%NULL.
1446  * Free the string with g_free() after usage.
1447  *
1448  * Since: 1.2
1449  */
1450 void
1451 gst_query_parse_uri_redirection (GstQuery * query, gchar ** uri)
1452 {
1453   GstStructure *structure;
1454
1455   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1456
1457   structure = GST_QUERY_STRUCTURE (query);
1458   if (uri) {
1459     if (!gst_structure_id_get (structure, GST_QUARK (URI_REDIRECTION),
1460             G_TYPE_STRING, uri, NULL))
1461       *uri = NULL;
1462   }
1463 }
1464
1465 /**
1466  * gst_query_set_uri_redirection_permanent:
1467  * @query: a #GstQuery with query type %GST_QUERY_URI
1468  * @permanent: whether the redirect is permanent or not
1469  *
1470  * Answer a URI query by setting the requested URI redirection
1471  * to permanent or not.
1472  *
1473  * Since: 1.4
1474  */
1475 void
1476 gst_query_set_uri_redirection_permanent (GstQuery * query, gboolean permanent)
1477 {
1478   GstStructure *structure;
1479
1480   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1481   g_return_if_fail (gst_query_is_writable (query));
1482
1483   structure = GST_QUERY_STRUCTURE (query);
1484   gst_structure_id_set (structure, GST_QUARK (URI_REDIRECTION_PERMANENT),
1485       G_TYPE_BOOLEAN, permanent, NULL);
1486 }
1487
1488 /**
1489  * gst_query_parse_uri_redirection_permanent:
1490  * @query: a #GstQuery
1491  * @permanent: (out) (allow-none): if the URI redirection is permanent
1492  *     (may be %NULL)
1493  *
1494  * Parse an URI query, and set @permanent to %TRUE if there is a redirection
1495  * and it should be considered permanent. If a redirection is permanent,
1496  * applications should update their internal storage of the URI, otherwise
1497  * they should make all future requests to the original URI.
1498  *
1499  * Since: 1.4
1500  */
1501 void
1502 gst_query_parse_uri_redirection_permanent (GstQuery * query,
1503     gboolean * permanent)
1504 {
1505   GstStructure *structure;
1506
1507   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_URI);
1508
1509   structure = GST_QUERY_STRUCTURE (query);
1510   if (permanent) {
1511     if (!gst_structure_id_get (structure, GST_QUARK (URI_REDIRECTION_PERMANENT),
1512             G_TYPE_BOOLEAN, permanent, NULL))
1513       *permanent = FALSE;
1514   }
1515 }
1516
1517 /**
1518  * gst_query_new_allocation:
1519  * @caps: the negotiated caps
1520  * @need_pool: return a pool
1521  *
1522  * Constructs a new query object for querying the allocation properties.
1523  *
1524  * Free-function: gst_query_unref
1525  *
1526  * Returns: (transfer full): a new #GstQuery
1527  */
1528 GstQuery *
1529 gst_query_new_allocation (GstCaps * caps, gboolean need_pool)
1530 {
1531   GstQuery *query;
1532   GstStructure *structure;
1533
1534   structure = gst_structure_new_id (GST_QUARK (QUERY_ALLOCATION),
1535       GST_QUARK (CAPS), GST_TYPE_CAPS, caps,
1536       GST_QUARK (NEED_POOL), G_TYPE_BOOLEAN, need_pool, NULL);
1537
1538   query = gst_query_new_custom (GST_QUERY_ALLOCATION, structure);
1539
1540   return query;
1541 }
1542
1543 /**
1544  * gst_query_parse_allocation:
1545  * @query: a #GstQuery
1546  * @caps: (out) (transfer none) (allow-none): The #GstCaps
1547  * @need_pool: (out) (allow-none): Whether a #GstBufferPool is needed
1548  *
1549  * Parse an allocation query, writing the requested caps in @caps and
1550  * whether a pool is needed in @need_pool, if the respective parameters
1551  * are non-%NULL.
1552  */
1553 void
1554 gst_query_parse_allocation (GstQuery * query, GstCaps ** caps,
1555     gboolean * need_pool)
1556 {
1557   GstStructure *structure;
1558
1559   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1560
1561   structure = GST_QUERY_STRUCTURE (query);
1562   if (caps) {
1563     *caps = g_value_get_boxed (gst_structure_id_get_value (structure,
1564             GST_QUARK (CAPS)));
1565   }
1566   gst_structure_id_get (structure,
1567       GST_QUARK (NEED_POOL), G_TYPE_BOOLEAN, need_pool, NULL);
1568 }
1569
1570 typedef struct
1571 {
1572   GstBufferPool *pool;
1573   guint size;
1574   guint min_buffers;
1575   guint max_buffers;
1576 } AllocationPool;
1577
1578 static void
1579 allocation_pool_free (AllocationPool * ap)
1580 {
1581   if (ap->pool)
1582     gst_object_unref (ap->pool);
1583 }
1584
1585 /**
1586  * gst_query_add_allocation_pool:
1587  * @query: A valid #GstQuery of type GST_QUERY_ALLOCATION.
1588  * @pool: (transfer none) (allow-none): the #GstBufferPool
1589  * @size: the size
1590  * @min_buffers: the min buffers
1591  * @max_buffers: the max buffers
1592  *
1593  * Set the pool parameters in @query.
1594  */
1595 void
1596 gst_query_add_allocation_pool (GstQuery * query, GstBufferPool * pool,
1597     guint size, guint min_buffers, guint max_buffers)
1598 {
1599   GArray *array;
1600   GstStructure *structure;
1601   AllocationPool ap;
1602
1603   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1604   g_return_if_fail (gst_query_is_writable (query));
1605
1606   structure = GST_QUERY_STRUCTURE (query);
1607   array = ensure_array (structure, GST_QUARK (POOL),
1608       sizeof (AllocationPool), (GDestroyNotify) allocation_pool_free);
1609
1610   if ((ap.pool = pool))
1611     gst_object_ref (pool);
1612   ap.size = size;
1613   ap.min_buffers = min_buffers;
1614   ap.max_buffers = max_buffers;
1615
1616   g_array_append_val (array, ap);
1617 }
1618
1619
1620 /**
1621  * gst_query_get_n_allocation_pools:
1622  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1623  *
1624  * Retrieve the number of values currently stored in the
1625  * pool array of the query's structure.
1626  *
1627  * Returns: the pool array size as a #guint.
1628  */
1629 guint
1630 gst_query_get_n_allocation_pools (GstQuery * query)
1631 {
1632   GArray *array;
1633   GstStructure *structure;
1634
1635   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION, 0);
1636
1637   structure = GST_QUERY_STRUCTURE (query);
1638   array = ensure_array (structure, GST_QUARK (POOL),
1639       sizeof (AllocationPool), (GDestroyNotify) allocation_pool_free);
1640
1641   return array->len;
1642 }
1643
1644 /**
1645  * gst_query_parse_nth_allocation_pool:
1646  * @query: A valid #GstQuery of type GST_QUERY_ALLOCATION.
1647  * @index: index to parse
1648  * @pool: (out) (allow-none) (transfer full): the #GstBufferPool
1649  * @size: (out) (allow-none): the size
1650  * @min_buffers: (out) (allow-none): the min buffers
1651  * @max_buffers: (out) (allow-none): the max buffers
1652  *
1653  * Get the pool parameters in @query.
1654  *
1655  * Unref @pool with gst_object_unref() when it's not needed any more.
1656  */
1657 void
1658 gst_query_parse_nth_allocation_pool (GstQuery * query, guint index,
1659     GstBufferPool ** pool, guint * size, guint * min_buffers,
1660     guint * max_buffers)
1661 {
1662   GArray *array;
1663   GstStructure *structure;
1664   AllocationPool *ap;
1665
1666   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1667
1668   structure = GST_QUERY_STRUCTURE (query);
1669   array = ensure_array (structure, GST_QUARK (POOL),
1670       sizeof (AllocationPool), (GDestroyNotify) allocation_pool_free);
1671   g_return_if_fail (index < array->len);
1672
1673   ap = &g_array_index (array, AllocationPool, index);
1674
1675   if (pool)
1676     if ((*pool = ap->pool))
1677       gst_object_ref (*pool);
1678   if (size)
1679     *size = ap->size;
1680   if (min_buffers)
1681     *min_buffers = ap->min_buffers;
1682   if (max_buffers)
1683     *max_buffers = ap->max_buffers;
1684 }
1685
1686 /**
1687  * gst_query_set_nth_allocation_pool:
1688  * @index: index to modify
1689  * @query: A valid #GstQuery of type GST_QUERY_ALLOCATION.
1690  * @pool: (transfer none) (allow-none): the #GstBufferPool
1691  * @size: the size
1692  * @min_buffers: the min buffers
1693  * @max_buffers: the max buffers
1694  *
1695  * Set the pool parameters in @query.
1696  */
1697 void
1698 gst_query_set_nth_allocation_pool (GstQuery * query, guint index,
1699     GstBufferPool * pool, guint size, guint min_buffers, guint max_buffers)
1700 {
1701   GArray *array;
1702   GstStructure *structure;
1703   AllocationPool *oldap, ap;
1704
1705   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1706
1707   structure = GST_QUERY_STRUCTURE (query);
1708   array = ensure_array (structure, GST_QUARK (POOL),
1709       sizeof (AllocationPool), (GDestroyNotify) allocation_pool_free);
1710   g_return_if_fail (index < array->len);
1711
1712   oldap = &g_array_index (array, AllocationPool, index);
1713   allocation_pool_free (oldap);
1714
1715   if ((ap.pool = pool))
1716     gst_object_ref (pool);
1717   ap.size = size;
1718   ap.min_buffers = min_buffers;
1719   ap.max_buffers = max_buffers;
1720   g_array_index (array, AllocationPool, index) = ap;
1721 }
1722
1723 /**
1724  * gst_query_remove_nth_allocation_pool:
1725  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1726  * @index: position in the allocation pool array to remove
1727  *
1728  * Remove the allocation pool at @index of the allocation pool array.
1729  *
1730  * Since: 1.2
1731  */
1732 void
1733 gst_query_remove_nth_allocation_pool (GstQuery * query, guint index)
1734 {
1735   GArray *array;
1736   GstStructure *structure;
1737
1738   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1739   g_return_if_fail (gst_query_is_writable (query));
1740
1741   structure = GST_QUERY_STRUCTURE (query);
1742   array =
1743       ensure_array (structure, GST_QUARK (POOL), sizeof (AllocationPool),
1744       (GDestroyNotify) allocation_pool_free);
1745   g_return_if_fail (index < array->len);
1746
1747   g_array_remove_index (array, index);
1748 }
1749
1750 typedef struct
1751 {
1752   GType api;
1753   GstStructure *params;
1754 } AllocationMeta;
1755
1756 static void
1757 allocation_meta_free (AllocationMeta * am)
1758 {
1759   if (am->params)
1760     gst_structure_free (am->params);
1761 }
1762
1763 /**
1764  * gst_query_add_allocation_meta:
1765  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1766  * @api: the metadata API
1767  * @params: (transfer none) (allow-none): API specific parameters
1768  *
1769  * Add @api with @params as one of the supported metadata API to @query.
1770  */
1771 void
1772 gst_query_add_allocation_meta (GstQuery * query, GType api,
1773     const GstStructure * params)
1774 {
1775   GArray *array;
1776   GstStructure *structure;
1777   AllocationMeta am;
1778
1779   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1780   g_return_if_fail (api != 0);
1781   g_return_if_fail (gst_query_is_writable (query));
1782
1783   structure = GST_QUERY_STRUCTURE (query);
1784   array =
1785       ensure_array (structure, GST_QUARK (META), sizeof (AllocationMeta),
1786       (GDestroyNotify) allocation_meta_free);
1787
1788   am.api = api;
1789   am.params = (params ? gst_structure_copy (params) : NULL);
1790
1791   g_array_append_val (array, am);
1792 }
1793
1794 /**
1795  * gst_query_get_n_allocation_metas:
1796  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1797  *
1798  * Retrieve the number of values currently stored in the
1799  * meta API array of the query's structure.
1800  *
1801  * Returns: the metadata API array size as a #guint.
1802  */
1803 guint
1804 gst_query_get_n_allocation_metas (GstQuery * query)
1805 {
1806   GArray *array;
1807   GstStructure *structure;
1808
1809   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION, 0);
1810
1811   structure = GST_QUERY_STRUCTURE (query);
1812   array =
1813       ensure_array (structure, GST_QUARK (META), sizeof (AllocationMeta),
1814       (GDestroyNotify) allocation_meta_free);
1815
1816   return array->len;
1817 }
1818
1819 /**
1820  * gst_query_parse_nth_allocation_meta:
1821  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1822  * @index: position in the metadata API array to read
1823  * @params: (out) (transfer none) (allow-none): API specific flags
1824  *
1825  * Parse an available query and get the metadata API
1826  * at @index of the metadata API array.
1827  *
1828  * Returns: a #GType of the metadata API at @index.
1829  */
1830 GType
1831 gst_query_parse_nth_allocation_meta (GstQuery * query, guint index,
1832     const GstStructure ** params)
1833 {
1834   GArray *array;
1835   GstStructure *structure;
1836   AllocationMeta *am;
1837
1838   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION, 0);
1839
1840   structure = GST_QUERY_STRUCTURE (query);
1841   array =
1842       ensure_array (structure, GST_QUARK (META), sizeof (AllocationMeta),
1843       (GDestroyNotify) allocation_meta_free);
1844
1845   g_return_val_if_fail (index < array->len, 0);
1846
1847   am = &g_array_index (array, AllocationMeta, index);
1848
1849   if (params)
1850     *params = am->params;
1851
1852   return am->api;
1853 }
1854
1855 /**
1856  * gst_query_remove_nth_allocation_meta:
1857  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1858  * @index: position in the metadata API array to remove
1859  *
1860  * Remove the metadata API at @index of the metadata API array.
1861  */
1862 void
1863 gst_query_remove_nth_allocation_meta (GstQuery * query, guint index)
1864 {
1865   GArray *array;
1866   GstStructure *structure;
1867
1868   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1869   g_return_if_fail (gst_query_is_writable (query));
1870
1871   structure = GST_QUERY_STRUCTURE (query);
1872   array =
1873       ensure_array (structure, GST_QUARK (META), sizeof (AllocationMeta),
1874       (GDestroyNotify) allocation_meta_free);
1875   g_return_if_fail (index < array->len);
1876
1877   g_array_remove_index (array, index);
1878 }
1879
1880 /**
1881  * gst_query_find_allocation_meta:
1882  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1883  * @api: the metadata API
1884  * @index: (out) (transfer none) (allow-none): the index
1885  *
1886  * Check if @query has metadata @api set. When this function returns %TRUE,
1887  * @index will contain the index where the requested API and the flags can be
1888  * found.
1889  *
1890  * Returns: %TRUE when @api is in the list of metadata.
1891  */
1892 gboolean
1893 gst_query_find_allocation_meta (GstQuery * query, GType api, guint * index)
1894 {
1895   GArray *array;
1896   GstStructure *structure;
1897   guint i, len;
1898
1899   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION, FALSE);
1900   g_return_val_if_fail (api != 0, FALSE);
1901
1902   structure = GST_QUERY_STRUCTURE (query);
1903   array =
1904       ensure_array (structure, GST_QUARK (META), sizeof (AllocationMeta),
1905       (GDestroyNotify) allocation_meta_free);
1906
1907   len = array->len;
1908   for (i = 0; i < len; i++) {
1909     AllocationMeta *am = &g_array_index (array, AllocationMeta, i);
1910     if (am->api == api) {
1911       if (index)
1912         *index = i;
1913       return TRUE;
1914     }
1915   }
1916   return FALSE;
1917 }
1918
1919 typedef struct
1920 {
1921   GstAllocator *allocator;
1922   GstAllocationParams params;
1923 } AllocationParam;
1924
1925 static void
1926 allocation_param_free (AllocationParam * ap)
1927 {
1928   if (ap->allocator)
1929     gst_object_unref (ap->allocator);
1930 }
1931
1932 /**
1933  * gst_query_add_allocation_param:
1934  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1935  * @allocator: (transfer none) (allow-none): the memory allocator
1936  * @params: (transfer none) (allow-none): a #GstAllocationParams
1937  *
1938  * Add @allocator and its @params as a supported memory allocator.
1939  */
1940 void
1941 gst_query_add_allocation_param (GstQuery * query, GstAllocator * allocator,
1942     const GstAllocationParams * params)
1943 {
1944   GArray *array;
1945   GstStructure *structure;
1946   AllocationParam ap;
1947
1948   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
1949   g_return_if_fail (gst_query_is_writable (query));
1950   g_return_if_fail (allocator != NULL || params != NULL);
1951
1952   structure = GST_QUERY_STRUCTURE (query);
1953   array = ensure_array (structure, GST_QUARK (ALLOCATOR),
1954       sizeof (AllocationParam), (GDestroyNotify) allocation_param_free);
1955
1956   if ((ap.allocator = allocator))
1957     gst_object_ref (allocator);
1958   if (params)
1959     ap.params = *params;
1960   else
1961     gst_allocation_params_init (&ap.params);
1962
1963   g_array_append_val (array, ap);
1964 }
1965
1966 /**
1967  * gst_query_get_n_allocation_params:
1968  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1969  *
1970  * Retrieve the number of values currently stored in the
1971  * allocator params array of the query's structure.
1972  *
1973  * If no memory allocator is specified, the downstream element can handle
1974  * the default memory allocator. The first memory allocator in the query
1975  * should be generic and allow mapping to system memory, all following
1976  * allocators should be ordered by preference with the preferred one first.
1977  *
1978  * Returns: the allocator array size as a #guint.
1979  */
1980 guint
1981 gst_query_get_n_allocation_params (GstQuery * query)
1982 {
1983   GArray *array;
1984   GstStructure *structure;
1985
1986   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION, 0);
1987
1988   structure = GST_QUERY_STRUCTURE (query);
1989   array = ensure_array (structure, GST_QUARK (ALLOCATOR),
1990       sizeof (AllocationParam), (GDestroyNotify) allocation_param_free);
1991
1992   return array->len;
1993 }
1994
1995 /**
1996  * gst_query_parse_nth_allocation_param:
1997  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
1998  * @index: position in the allocator array to read
1999  * @allocator: (out) (transfer full) (allow-none): variable to hold the result
2000  * @params: (out) (allow-none): parameters for the allocator
2001  *
2002  * Parse an available query and get the allocator and its params
2003  * at @index of the allocator array.
2004  */
2005 void
2006 gst_query_parse_nth_allocation_param (GstQuery * query, guint index,
2007     GstAllocator ** allocator, GstAllocationParams * params)
2008 {
2009   GArray *array;
2010   GstStructure *structure;
2011   AllocationParam *ap;
2012
2013   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
2014
2015   structure = GST_QUERY_STRUCTURE (query);
2016   array = ensure_array (structure, GST_QUARK (ALLOCATOR),
2017       sizeof (AllocationParam), (GDestroyNotify) allocation_param_free);
2018   g_return_if_fail (index < array->len);
2019
2020   ap = &g_array_index (array, AllocationParam, index);
2021
2022   if (allocator)
2023     if ((*allocator = ap->allocator))
2024       gst_object_ref (*allocator);
2025   if (params)
2026     *params = ap->params;
2027 }
2028
2029 /**
2030  * gst_query_set_nth_allocation_param:
2031  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
2032  * @index: position in the allocator array to set
2033  * @allocator: (transfer none) (allow-none): new allocator to set
2034  * @params: (transfer none) (allow-none): parameters for the allocator
2035  *
2036  * Parse an available query and get the allocator and its params
2037  * at @index of the allocator array.
2038  */
2039 void
2040 gst_query_set_nth_allocation_param (GstQuery * query, guint index,
2041     GstAllocator * allocator, const GstAllocationParams * params)
2042 {
2043   GArray *array;
2044   GstStructure *structure;
2045   AllocationParam *old, ap;
2046
2047   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
2048
2049   structure = GST_QUERY_STRUCTURE (query);
2050   array = ensure_array (structure, GST_QUARK (ALLOCATOR),
2051       sizeof (AllocationParam), (GDestroyNotify) allocation_param_free);
2052   g_return_if_fail (index < array->len);
2053
2054   old = &g_array_index (array, AllocationParam, index);
2055   allocation_param_free (old);
2056
2057   if ((ap.allocator = allocator))
2058     gst_object_ref (allocator);
2059   if (params)
2060     ap.params = *params;
2061   else
2062     gst_allocation_params_init (&ap.params);
2063
2064   g_array_index (array, AllocationParam, index) = ap;
2065 }
2066
2067 /**
2068  * gst_query_remove_nth_allocation_param:
2069  * @query: a GST_QUERY_ALLOCATION type query #GstQuery
2070  * @index: position in the allocation param array to remove
2071  *
2072  * Remove the allocation param at @index of the allocation param array.
2073  *
2074  * Since: 1.2
2075  */
2076 void
2077 gst_query_remove_nth_allocation_param (GstQuery * query, guint index)
2078 {
2079   GArray *array;
2080   GstStructure *structure;
2081
2082   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ALLOCATION);
2083   g_return_if_fail (gst_query_is_writable (query));
2084
2085   structure = GST_QUERY_STRUCTURE (query);
2086   array =
2087       ensure_array (structure, GST_QUARK (ALLOCATOR), sizeof (AllocationParam),
2088       (GDestroyNotify) allocation_param_free);
2089   g_return_if_fail (index < array->len);
2090
2091   g_array_remove_index (array, index);
2092 }
2093
2094 /**
2095  * gst_query_new_scheduling:
2096  *
2097  * Constructs a new query object for querying the scheduling properties.
2098  *
2099  * Free-function: gst_query_unref
2100  *
2101  * Returns: (transfer full): a new #GstQuery
2102  */
2103 GstQuery *
2104 gst_query_new_scheduling (void)
2105 {
2106   GstQuery *query;
2107   GstStructure *structure;
2108
2109   structure = gst_structure_new_id (GST_QUARK (QUERY_SCHEDULING),
2110       GST_QUARK (FLAGS), GST_TYPE_SCHEDULING_FLAGS, 0,
2111       GST_QUARK (MINSIZE), G_TYPE_INT, 1,
2112       GST_QUARK (MAXSIZE), G_TYPE_INT, -1,
2113       GST_QUARK (ALIGN), G_TYPE_INT, 0, NULL);
2114   query = gst_query_new_custom (GST_QUERY_SCHEDULING, structure);
2115
2116   return query;
2117 }
2118
2119 /**
2120  * gst_query_set_scheduling:
2121  * @query: A valid #GstQuery of type GST_QUERY_SCHEDULING.
2122  * @flags: #GstSchedulingFlags
2123  * @minsize: the suggested minimum size of pull requests
2124  * @maxsize: the suggested maximum size of pull requests
2125  * @align: the suggested alignment of pull requests
2126  *
2127  * Set the scheduling properties.
2128  */
2129 void
2130 gst_query_set_scheduling (GstQuery * query, GstSchedulingFlags flags,
2131     gint minsize, gint maxsize, gint align)
2132 {
2133   GstStructure *structure;
2134
2135   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING);
2136   g_return_if_fail (gst_query_is_writable (query));
2137
2138   structure = GST_QUERY_STRUCTURE (query);
2139   gst_structure_id_set (structure,
2140       GST_QUARK (FLAGS), GST_TYPE_SCHEDULING_FLAGS, flags,
2141       GST_QUARK (MINSIZE), G_TYPE_INT, minsize,
2142       GST_QUARK (MAXSIZE), G_TYPE_INT, maxsize,
2143       GST_QUARK (ALIGN), G_TYPE_INT, align, NULL);
2144 }
2145
2146 /**
2147  * gst_query_parse_scheduling:
2148  * @query: A valid #GstQuery of type GST_QUERY_SCHEDULING.
2149  * @flags: (out) (allow-none): #GstSchedulingFlags
2150  * @minsize: (out) (allow-none): the suggested minimum size of pull requests
2151  * @maxsize: (out) (allow-none): the suggested maximum size of pull requests:
2152  * @align: (out) (allow-none): the suggested alignment of pull requests
2153  *
2154  * Set the scheduling properties.
2155  */
2156 void
2157 gst_query_parse_scheduling (GstQuery * query, GstSchedulingFlags * flags,
2158     gint * minsize, gint * maxsize, gint * align)
2159 {
2160   GstStructure *structure;
2161
2162   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING);
2163
2164   structure = GST_QUERY_STRUCTURE (query);
2165   gst_structure_id_get (structure,
2166       GST_QUARK (FLAGS), GST_TYPE_SCHEDULING_FLAGS, flags,
2167       GST_QUARK (MINSIZE), G_TYPE_INT, minsize,
2168       GST_QUARK (MAXSIZE), G_TYPE_INT, maxsize,
2169       GST_QUARK (ALIGN), G_TYPE_INT, align, NULL);
2170 }
2171
2172 /**
2173  * gst_query_add_scheduling_mode:
2174  * @query: a GST_QUERY_SCHEDULING type query #GstQuery
2175  * @mode: a #GstPadMode
2176  *
2177  * Add @mode as one of the supported scheduling modes to @query.
2178  */
2179 void
2180 gst_query_add_scheduling_mode (GstQuery * query, GstPadMode mode)
2181 {
2182   GstStructure *structure;
2183   GArray *array;
2184
2185   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING);
2186   g_return_if_fail (gst_query_is_writable (query));
2187
2188   structure = GST_QUERY_STRUCTURE (query);
2189   array =
2190       ensure_array (structure, GST_QUARK (MODES), sizeof (GstPadMode), NULL);
2191
2192   g_array_append_val (array, mode);
2193 }
2194
2195 /**
2196  * gst_query_get_n_scheduling_modes:
2197  * @query: a GST_QUERY_SCHEDULING type query #GstQuery
2198  *
2199  * Retrieve the number of values currently stored in the
2200  * scheduling mode array of the query's structure.
2201  *
2202  * Returns: the scheduling mode array size as a #guint.
2203  */
2204 guint
2205 gst_query_get_n_scheduling_modes (GstQuery * query)
2206 {
2207   GArray *array;
2208   GstStructure *structure;
2209
2210   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING, 0);
2211
2212   structure = GST_QUERY_STRUCTURE (query);
2213   array =
2214       ensure_array (structure, GST_QUARK (MODES), sizeof (GstPadMode), NULL);
2215
2216   return array->len;
2217 }
2218
2219 /**
2220  * gst_query_parse_nth_scheduling_mode:
2221  * @query: a GST_QUERY_SCHEDULING type query #GstQuery
2222  * @index: position in the scheduling modes array to read
2223  *
2224  * Parse an available query and get the scheduling mode
2225  * at @index of the scheduling modes array.
2226  *
2227  * Returns: a #GstPadMode of the scheduling mode at @index.
2228  */
2229 GstPadMode
2230 gst_query_parse_nth_scheduling_mode (GstQuery * query, guint index)
2231 {
2232   GstStructure *structure;
2233   GArray *array;
2234
2235   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING,
2236       GST_PAD_MODE_NONE);
2237
2238   structure = GST_QUERY_STRUCTURE (query);
2239   array =
2240       ensure_array (structure, GST_QUARK (MODES), sizeof (GstPadMode), NULL);
2241   g_return_val_if_fail (index < array->len, GST_PAD_MODE_NONE);
2242
2243   return g_array_index (array, GstPadMode, index);
2244 }
2245
2246 /**
2247  * gst_query_has_scheduling_mode:
2248  * @query: a GST_QUERY_SCHEDULING type query #GstQuery
2249  * @mode: the scheduling mode
2250  *
2251  * Check if @query has scheduling mode set.
2252  *
2253  * <note>
2254  *   <para>
2255  *     When checking if upstream supports pull mode, it is usually not
2256  *     enough to just check for GST_PAD_MODE_PULL with this function, you
2257  *     also want to check whether the scheduling flags returned by
2258  *     gst_query_parse_scheduling() have the seeking flag set (meaning
2259  *     random access is supported, not only sequential pulls).
2260  *   </para>
2261  * </note>
2262  *
2263  * Returns: %TRUE when @mode is in the list of scheduling modes.
2264  */
2265 gboolean
2266 gst_query_has_scheduling_mode (GstQuery * query, GstPadMode mode)
2267 {
2268   GstStructure *structure;
2269   GArray *array;
2270   guint i, len;
2271
2272   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING, FALSE);
2273
2274   structure = GST_QUERY_STRUCTURE (query);
2275   array =
2276       ensure_array (structure, GST_QUARK (MODES), sizeof (GstPadMode), NULL);
2277
2278   len = array->len;
2279   for (i = 0; i < len; i++) {
2280     if (mode == g_array_index (array, GstPadMode, i))
2281       return TRUE;
2282   }
2283   return FALSE;
2284 }
2285
2286 /**
2287  * gst_query_has_scheduling_mode_with_flags:
2288  * @query: a GST_QUERY_SCHEDULING type query #GstQuery
2289  * @mode: the scheduling mode
2290  * @flags: #GstSchedulingFlags
2291  *
2292  * Check if @query has scheduling mode set and @flags is set in
2293  * query scheduling flags.
2294  *
2295  * Returns: %TRUE when @mode is in the list of scheduling modes
2296  *    and @flags are compatible with query flags.
2297  */
2298 gboolean
2299 gst_query_has_scheduling_mode_with_flags (GstQuery * query, GstPadMode mode,
2300     GstSchedulingFlags flags)
2301 {
2302   GstSchedulingFlags sched_flags;
2303
2304   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_SCHEDULING, FALSE);
2305
2306   gst_query_parse_scheduling (query, &sched_flags, NULL, NULL, NULL);
2307
2308   return ((flags & sched_flags) == flags) &&
2309       gst_query_has_scheduling_mode (query, mode);
2310 }
2311
2312 /**
2313  * gst_query_new_accept_caps:
2314  * @caps: a fixed #GstCaps
2315  *
2316  * Constructs a new query object for querying if @caps are accepted.
2317  *
2318  * Free-function: gst_query_unref
2319  *
2320  * Returns: (transfer full): a new #GstQuery
2321  */
2322 GstQuery *
2323 gst_query_new_accept_caps (GstCaps * caps)
2324 {
2325   GstQuery *query;
2326   GstStructure *structure;
2327
2328   g_return_val_if_fail (gst_caps_is_fixed (caps), NULL);
2329
2330   structure = gst_structure_new_id (GST_QUARK (QUERY_ACCEPT_CAPS),
2331       GST_QUARK (CAPS), GST_TYPE_CAPS, caps,
2332       GST_QUARK (RESULT), G_TYPE_BOOLEAN, FALSE, NULL);
2333   query = gst_query_new_custom (GST_QUERY_ACCEPT_CAPS, structure);
2334
2335   return query;
2336 }
2337
2338 /**
2339  * gst_query_parse_accept_caps:
2340  * @query: The query to parse
2341  * @caps: (out) (transfer none): A pointer to the caps
2342  *
2343  * Get the caps from @query. The caps remains valid as long as @query remains
2344  * valid.
2345  */
2346 void
2347 gst_query_parse_accept_caps (GstQuery * query, GstCaps ** caps)
2348 {
2349   GstStructure *structure;
2350
2351   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ACCEPT_CAPS);
2352   g_return_if_fail (caps != NULL);
2353
2354   structure = GST_QUERY_STRUCTURE (query);
2355   *caps = g_value_get_boxed (gst_structure_id_get_value (structure,
2356           GST_QUARK (CAPS)));
2357 }
2358
2359 /**
2360  * gst_query_set_accept_caps_result:
2361  * @query: a GST_QUERY_ACCEPT_CAPS type query #GstQuery
2362  * @result: the result to set
2363  *
2364  * Set @result as the result for the @query.
2365  */
2366 void
2367 gst_query_set_accept_caps_result (GstQuery * query, gboolean result)
2368 {
2369   GstStructure *structure;
2370
2371   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ACCEPT_CAPS);
2372   g_return_if_fail (gst_query_is_writable (query));
2373
2374   structure = GST_QUERY_STRUCTURE (query);
2375   gst_structure_id_set (structure,
2376       GST_QUARK (RESULT), G_TYPE_BOOLEAN, result, NULL);
2377 }
2378
2379 /**
2380  * gst_query_parse_accept_caps_result:
2381  * @query: a GST_QUERY_ACCEPT_CAPS type query #GstQuery
2382  * @result: location for the result
2383  *
2384  * Parse the result from @query and store in @result.
2385  */
2386 void
2387 gst_query_parse_accept_caps_result (GstQuery * query, gboolean * result)
2388 {
2389   GstStructure *structure;
2390
2391   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_ACCEPT_CAPS);
2392
2393   structure = GST_QUERY_STRUCTURE (query);
2394   gst_structure_id_get (structure,
2395       GST_QUARK (RESULT), G_TYPE_BOOLEAN, result, NULL);
2396 }
2397
2398 /**
2399  * gst_query_new_caps:
2400  * @filter: a filter
2401  *
2402  * Constructs a new query object for querying the caps.
2403  *
2404  * The CAPS query should return the allowable caps for a pad in the context
2405  * of the element's state, its link to other elements, and the devices or files
2406  * it has opened. These caps must be a subset of the pad template caps. In the
2407  * NULL state with no links, the CAPS query should ideally return the same caps
2408  * as the pad template. In rare circumstances, an object property can affect
2409  * the caps returned by the CAPS query, but this is discouraged.
2410  *
2411  * For most filters, the caps returned by CAPS query is directly affected by the
2412  * allowed caps on other pads. For demuxers and decoders, the caps returned by
2413  * the srcpad's getcaps function is directly related to the stream data. Again,
2414  * the CAPS query should return the most specific caps it reasonably can, since this
2415  * helps with autoplugging.
2416  *
2417  * The @filter is used to restrict the result caps, only the caps matching
2418  * @filter should be returned from the CAPS query. Specifying a filter might
2419  * greatly reduce the amount of processing an element needs to do.
2420  *
2421  * Free-function: gst_query_unref
2422  *
2423  * Returns: (transfer full): a new #GstQuery
2424  */
2425 GstQuery *
2426 gst_query_new_caps (GstCaps * filter)
2427 {
2428   GstQuery *query;
2429   GstStructure *structure;
2430
2431   structure = gst_structure_new_id (GST_QUARK (QUERY_CAPS),
2432       GST_QUARK (FILTER), GST_TYPE_CAPS, filter,
2433       GST_QUARK (CAPS), GST_TYPE_CAPS, NULL, NULL);
2434   query = gst_query_new_custom (GST_QUERY_CAPS, structure);
2435
2436   return query;
2437 }
2438
2439 /**
2440  * gst_query_parse_caps:
2441  * @query: The query to parse
2442  * @filter: (out) (transfer none): A pointer to the caps filter
2443  *
2444  * Get the filter from the caps @query. The caps remains valid as long as
2445  * @query remains valid.
2446  */
2447 void
2448 gst_query_parse_caps (GstQuery * query, GstCaps ** filter)
2449 {
2450   GstStructure *structure;
2451
2452   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CAPS);
2453   g_return_if_fail (filter != NULL);
2454
2455   structure = GST_QUERY_STRUCTURE (query);
2456   *filter = g_value_get_boxed (gst_structure_id_get_value (structure,
2457           GST_QUARK (FILTER)));
2458 }
2459
2460 /**
2461  * gst_query_set_caps_result:
2462  * @query: The query to use
2463  * @caps: (in): A pointer to the caps
2464  *
2465  * Set the @caps result in @query.
2466  */
2467 void
2468 gst_query_set_caps_result (GstQuery * query, GstCaps * caps)
2469 {
2470   GstStructure *structure;
2471
2472   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CAPS);
2473   g_return_if_fail (gst_query_is_writable (query));
2474
2475   structure = GST_QUERY_STRUCTURE (query);
2476   gst_structure_id_set (structure, GST_QUARK (CAPS), GST_TYPE_CAPS, caps, NULL);
2477 }
2478
2479 /**
2480  * gst_query_parse_caps_result:
2481  * @query: The query to parse
2482  * @caps: (out) (transfer none): A pointer to the caps
2483  *
2484  * Get the caps result from @query. The caps remains valid as long as
2485  * @query remains valid.
2486  */
2487 void
2488 gst_query_parse_caps_result (GstQuery * query, GstCaps ** caps)
2489 {
2490   GstStructure *structure;
2491
2492   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CAPS);
2493   g_return_if_fail (caps != NULL);
2494
2495   structure = GST_QUERY_STRUCTURE (query);
2496   *caps = g_value_get_boxed (gst_structure_id_get_value (structure,
2497           GST_QUARK (CAPS)));
2498 }
2499
2500 #if 0
2501 void
2502 gst_query_intersect_caps_result (GstQuery * query, GstCaps * filter,
2503     GstCapsIntersectMode mode)
2504 {
2505   GstCaps *res, *caps = NULL;
2506
2507   gst_query_parse_caps_result (query, &caps);
2508   res = gst_caps_intersect_full (filter, caps, GST_CAPS_INTERSECT_FIRST);
2509   gst_query_set_caps_result (query, res);
2510   gst_caps_unref (res);
2511 }
2512 #endif
2513
2514 /**
2515  * gst_query_new_drain:
2516  *
2517  * Constructs a new query object for querying the drain state.
2518  *
2519  * Free-function: gst_query_unref
2520  *
2521  * Returns: (transfer full): a new #GstQuery
2522  */
2523 GstQuery *
2524 gst_query_new_drain (void)
2525 {
2526   GstQuery *query;
2527   GstStructure *structure;
2528
2529   structure = gst_structure_new_id_empty (GST_QUARK (QUERY_DRAIN));
2530   query = gst_query_new_custom (GST_QUERY_DRAIN, structure);
2531
2532   return query;
2533 }
2534
2535 /**
2536  * gst_query_new_context:
2537  * @context_type: Context type to query
2538  *
2539  * Constructs a new query object for querying the pipeline-local context.
2540  *
2541  * Free-function: gst_query_unref
2542  *
2543  * Returns: (transfer full): a new #GstQuery
2544  *
2545  * Since: 1.2
2546  */
2547 GstQuery *
2548 gst_query_new_context (const gchar * context_type)
2549 {
2550   GstQuery *query;
2551   GstStructure *structure;
2552
2553   g_return_val_if_fail (context_type != NULL, NULL);
2554
2555   structure = gst_structure_new_id (GST_QUARK (QUERY_CONTEXT),
2556       GST_QUARK (CONTEXT_TYPE), G_TYPE_STRING, context_type, NULL);
2557   query = gst_query_new_custom (GST_QUERY_CONTEXT, structure);
2558
2559   return query;
2560 }
2561
2562 /**
2563  * gst_query_set_context:
2564  * @query: a #GstQuery with query type GST_QUERY_CONTEXT
2565  * @context: the requested #GstContext
2566  *
2567  * Answer a context query by setting the requested context.
2568  *
2569  * Since: 1.2
2570  */
2571 void
2572 gst_query_set_context (GstQuery * query, GstContext * context)
2573 {
2574   GstStructure *s;
2575   const gchar *context_type;
2576
2577   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CONTEXT);
2578
2579   gst_query_parse_context_type (query, &context_type);
2580   g_return_if_fail (strcmp (gst_context_get_context_type (context),
2581           context_type) == 0);
2582
2583   s = GST_QUERY_STRUCTURE (query);
2584
2585   gst_structure_id_set (s,
2586       GST_QUARK (CONTEXT), GST_TYPE_CONTEXT, context, NULL);
2587 }
2588
2589 /**
2590  * gst_query_parse_context:
2591  * @query: The query to parse
2592  * @context: (out) (transfer none): A pointer to store the #GstContext
2593  *
2594  * Get the context from the context @query. The context remains valid as long as
2595  * @query remains valid.
2596  *
2597  * Since: 1.2
2598  */
2599 void
2600 gst_query_parse_context (GstQuery * query, GstContext ** context)
2601 {
2602   GstStructure *structure;
2603   const GValue *v;
2604
2605   g_return_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CONTEXT);
2606   g_return_if_fail (context != NULL);
2607
2608   structure = GST_QUERY_STRUCTURE (query);
2609   v = gst_structure_id_get_value (structure, GST_QUARK (CONTEXT));
2610   if (v)
2611     *context = g_value_get_boxed (v);
2612   else
2613     *context = NULL;
2614 }
2615
2616 /**
2617  * gst_query_parse_context_type:
2618  * @query: a GST_QUERY_CONTEXT type query
2619  * @context_type: (out) (transfer none) (allow-none): the context type, or %NULL
2620  *
2621  * Parse a context type from an existing GST_QUERY_CONTEXT query.
2622  *
2623  * Returns: a #gboolean indicating if the parsing succeeded.
2624  *
2625  * Since: 1.2
2626  */
2627 gboolean
2628 gst_query_parse_context_type (GstQuery * query, const gchar ** context_type)
2629 {
2630   GstStructure *structure;
2631   const GValue *value;
2632
2633   g_return_val_if_fail (GST_QUERY_TYPE (query) == GST_QUERY_CONTEXT, FALSE);
2634
2635   structure = GST_QUERY_STRUCTURE (query);
2636
2637   if (context_type) {
2638     value = gst_structure_id_get_value (structure, GST_QUARK (CONTEXT_TYPE));
2639     *context_type = g_value_get_string (value);
2640   }
2641
2642   return TRUE;
2643 }