meson: add option to disable parse-launch pipeline string parser
[platform/upstream/gstreamer.git] / gst / gstquery.h
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  *                    2011 Wim Taymans <wim.taymans@gmail.com>
6  *
7  * gstquery.h: GstQuery API declaration
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301, USA.
23  */
24
25
26 #ifndef __GST_QUERY_H__
27 #define __GST_QUERY_H__
28
29 #include <glib.h>
30 #include <glib-object.h>
31 #include <gst/gstconfig.h>
32
33 G_BEGIN_DECLS
34
35 typedef struct _GstQuery GstQuery;
36
37 #include <gst/gstminiobject.h>
38
39 /**
40  * GstQueryTypeFlags:
41  * @GST_QUERY_TYPE_UPSTREAM:     Set if the query can travel upstream.
42  * @GST_QUERY_TYPE_DOWNSTREAM:   Set if the query can travel downstream.
43  * @GST_QUERY_TYPE_SERIALIZED:   Set if the query should be serialized with data
44  *                               flow.
45  *
46  * #GstQueryTypeFlags indicate the aspects of the different #GstQueryType
47  * values. You can get the type flags of a #GstQueryType with the
48  * gst_query_type_get_flags() function.
49  */
50 typedef enum {
51   GST_QUERY_TYPE_UPSTREAM       = 1 << 0,
52   GST_QUERY_TYPE_DOWNSTREAM     = 1 << 1,
53   GST_QUERY_TYPE_SERIALIZED     = 1 << 2
54 } GstQueryTypeFlags;
55
56 /**
57  * GST_QUERY_TYPE_BOTH: (value 3) (type GstQueryTypeFlags)
58  *
59  * The same thing as #GST_QUERY_TYPE_UPSTREAM | #GST_QUERY_TYPE_DOWNSTREAM.
60  */
61 #define GST_QUERY_TYPE_BOTH \
62     ((GstQueryTypeFlags)(GST_QUERY_TYPE_UPSTREAM | GST_QUERY_TYPE_DOWNSTREAM))
63
64 #define GST_QUERY_NUM_SHIFT     (8)
65
66 /**
67  * GST_QUERY_MAKE_TYPE:
68  * @num: the query number to create
69  * @flags: the query flags
70  *
71  * when making custom query types, use this macro with the num and
72  * the given flags
73  */
74 #define GST_QUERY_MAKE_TYPE(num,flags) \
75     (((num) << GST_QUERY_NUM_SHIFT) | (flags))
76
77 #define FLAG(name) GST_QUERY_TYPE_##name
78
79
80 /**
81  * GstQueryType:
82  * @GST_QUERY_UNKNOWN: unknown query type
83  * @GST_QUERY_POSITION: current position in stream
84  * @GST_QUERY_DURATION: total duration of the stream
85  * @GST_QUERY_LATENCY: latency of stream
86  * @GST_QUERY_JITTER: current jitter of stream
87  * @GST_QUERY_RATE: current rate of the stream
88  * @GST_QUERY_SEEKING: seeking capabilities
89  * @GST_QUERY_SEGMENT: segment start/stop positions
90  * @GST_QUERY_CONVERT: convert values between formats
91  * @GST_QUERY_FORMATS: query supported formats for convert
92  * @GST_QUERY_BUFFERING: query available media for efficient seeking.
93  * @GST_QUERY_CUSTOM: a custom application or element defined query.
94  * @GST_QUERY_URI: query the URI of the source or sink.
95  * @GST_QUERY_ALLOCATION: the buffer allocation properties
96  * @GST_QUERY_SCHEDULING: the scheduling properties
97  * @GST_QUERY_ACCEPT_CAPS: the accept caps query
98  * @GST_QUERY_CAPS: the caps query
99  * @GST_QUERY_DRAIN: wait till all serialized data is consumed downstream
100  * @GST_QUERY_CONTEXT: query the pipeline-local context from
101  *     downstream or upstream (since 1.2)
102  *
103  * Standard predefined Query types
104  */
105 /* NOTE: don't forget to update the table in gstquery.c when changing
106  * this enum */
107 typedef enum {
108   GST_QUERY_UNKNOWN      = GST_QUERY_MAKE_TYPE (0, 0),
109   GST_QUERY_POSITION     = GST_QUERY_MAKE_TYPE (10, FLAG(BOTH)),
110   GST_QUERY_DURATION     = GST_QUERY_MAKE_TYPE (20, FLAG(BOTH)),
111   GST_QUERY_LATENCY      = GST_QUERY_MAKE_TYPE (30, FLAG(BOTH)),
112   GST_QUERY_JITTER       = GST_QUERY_MAKE_TYPE (40, FLAG(BOTH)),
113   GST_QUERY_RATE         = GST_QUERY_MAKE_TYPE (50, FLAG(BOTH)),
114   GST_QUERY_SEEKING      = GST_QUERY_MAKE_TYPE (60, FLAG(BOTH)),
115   GST_QUERY_SEGMENT      = GST_QUERY_MAKE_TYPE (70, FLAG(BOTH)),
116   GST_QUERY_CONVERT      = GST_QUERY_MAKE_TYPE (80, FLAG(BOTH)),
117   GST_QUERY_FORMATS      = GST_QUERY_MAKE_TYPE (90, FLAG(BOTH)),
118   GST_QUERY_BUFFERING    = GST_QUERY_MAKE_TYPE (110, FLAG(BOTH)),
119   GST_QUERY_CUSTOM       = GST_QUERY_MAKE_TYPE (120, FLAG(BOTH)),
120   GST_QUERY_URI          = GST_QUERY_MAKE_TYPE (130, FLAG(BOTH)),
121   GST_QUERY_ALLOCATION   = GST_QUERY_MAKE_TYPE (140, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
122   GST_QUERY_SCHEDULING   = GST_QUERY_MAKE_TYPE (150, FLAG(UPSTREAM)),
123   GST_QUERY_ACCEPT_CAPS  = GST_QUERY_MAKE_TYPE (160, FLAG(BOTH)),
124   GST_QUERY_CAPS         = GST_QUERY_MAKE_TYPE (170, FLAG(BOTH)),
125   GST_QUERY_DRAIN        = GST_QUERY_MAKE_TYPE (180, FLAG(DOWNSTREAM) | FLAG(SERIALIZED)),
126   GST_QUERY_CONTEXT      = GST_QUERY_MAKE_TYPE (190, FLAG(BOTH))
127 } GstQueryType;
128 #undef FLAG
129
130 GST_API GType _gst_query_type;
131
132 #define GST_TYPE_QUERY                         (_gst_query_type)
133 #define GST_IS_QUERY(obj)                      (GST_IS_MINI_OBJECT_TYPE (obj, GST_TYPE_QUERY))
134 #define GST_QUERY_CAST(obj)                    ((GstQuery*)(obj))
135 #define GST_QUERY(obj)                         (GST_QUERY_CAST(obj))
136
137 /**
138  * GST_QUERY_TYPE:
139  * @query: the query to query
140  *
141  * Get the #GstQueryType of the query.
142  */
143 #define GST_QUERY_TYPE(query)  (((GstQuery*)(query))->type)
144
145 /**
146  * GST_QUERY_TYPE_NAME:
147  * @query: the query to query
148  *
149  * Get a constant string representation of the #GstQueryType of the query.
150  */
151 #define GST_QUERY_TYPE_NAME(query) (gst_query_type_get_name(GST_QUERY_TYPE(query)))
152
153 /**
154  * GST_QUERY_IS_UPSTREAM:
155  * @ev: the query to query
156  *
157  * Check if an query can travel upstream.
158  */
159 #define GST_QUERY_IS_UPSTREAM(ev)       !!(GST_QUERY_TYPE (ev) & GST_QUERY_TYPE_UPSTREAM)
160 /**
161  * GST_QUERY_IS_DOWNSTREAM:
162  * @ev: the query to query
163  *
164  * Check if an query can travel downstream.
165  */
166 #define GST_QUERY_IS_DOWNSTREAM(ev)     !!(GST_QUERY_TYPE (ev) & GST_QUERY_TYPE_DOWNSTREAM)
167 /**
168  * GST_QUERY_IS_SERIALIZED:
169  * @ev: the query to query
170  *
171  * Check if an query is serialized with the data stream.
172  */
173 #define GST_QUERY_IS_SERIALIZED(ev)     !!(GST_QUERY_TYPE (ev) & GST_QUERY_TYPE_SERIALIZED)
174
175
176 /**
177  * GstQuery:
178  * @mini_object: The parent #GstMiniObject type
179  * @type: the #GstQueryType
180  *
181  * The #GstQuery structure.
182  */
183 struct _GstQuery
184 {
185   GstMiniObject mini_object;
186
187   /*< public > *//* with COW */
188   GstQueryType type;
189 };
190
191 /**
192  * GstBufferingMode:
193  * @GST_BUFFERING_STREAM: a small amount of data is buffered
194  * @GST_BUFFERING_DOWNLOAD: the stream is being downloaded
195  * @GST_BUFFERING_TIMESHIFT: the stream is being downloaded in a ringbuffer
196  * @GST_BUFFERING_LIVE: the stream is a live stream
197  *
198  * The different types of buffering methods.
199  */
200 typedef enum {
201   GST_BUFFERING_STREAM,
202   GST_BUFFERING_DOWNLOAD,
203   GST_BUFFERING_TIMESHIFT,
204   GST_BUFFERING_LIVE
205 } GstBufferingMode;
206
207 #include <gst/gstiterator.h>
208 #include <gst/gststructure.h>
209 #include <gst/gstformat.h>
210 #include <gst/gstpad.h>
211 #include <gst/gstallocator.h>
212 #include <gst/gsttoc.h>
213 #include <gst/gstcontext.h>
214
215 GST_API
216 const gchar*    gst_query_type_get_name        (GstQueryType type);
217
218 GST_API
219 GQuark          gst_query_type_to_quark        (GstQueryType type);
220
221 GST_API
222 GstQueryTypeFlags
223                 gst_query_type_get_flags       (GstQueryType type);
224
225
226 GST_API
227 GType           gst_query_get_type             (void);
228
229 /* refcounting */
230 /**
231  * gst_query_ref:
232  * @q: a #GstQuery to increase the refcount of.
233  *
234  * Increases the refcount of the given query by one.
235  *
236  * Returns: @q
237  */
238 static inline GstQuery *
239 gst_query_ref (GstQuery * q)
240 {
241   return GST_QUERY_CAST (gst_mini_object_ref (GST_MINI_OBJECT_CAST (q)));
242 }
243
244 /**
245  * gst_query_unref:
246  * @q: a #GstQuery to decrease the refcount of.
247  *
248  * Decreases the refcount of the query. If the refcount reaches 0, the query
249  * will be freed.
250  */
251 static inline void
252 gst_query_unref (GstQuery * q)
253 {
254   gst_mini_object_unref (GST_MINI_OBJECT_CAST (q));
255 }
256
257 /* copy query */
258 /**
259  * gst_query_copy:
260  * @q: a #GstQuery to copy.
261  *
262  * Copies the given query using the copy function of the parent #GstStructure.
263  *
264  * Free-function: gst_query_unref
265  *
266  * Returns: (transfer full): a new copy of @q.
267  */
268 static inline GstQuery *
269 gst_query_copy (const GstQuery * q)
270 {
271   return GST_QUERY_CAST (gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (q)));
272 }
273
274 /**
275  * gst_query_is_writable:
276  * @q: a #GstQuery
277  *
278  * Tests if you can safely write data into a query's structure.
279  */
280 #define         gst_query_is_writable(q)     gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (q))
281 /**
282  * gst_query_make_writable:
283  * @q: (transfer full): a #GstQuery to make writable
284  *
285  * Makes a writable query from the given query.
286  *
287  * Returns: (transfer full): a new writable query (possibly same as @q)
288  */
289 #define         gst_query_make_writable(q)      GST_QUERY_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (q)))
290 /**
291  * gst_query_replace:
292  * @old_query: (inout) (transfer full) (nullable): pointer to a pointer to a
293  *     #GstQuery to be replaced.
294  * @new_query: (allow-none) (transfer none): pointer to a #GstQuery that will
295  *     replace the query pointed to by @old_query.
296  *
297  * Modifies a pointer to a #GstQuery to point to a different #GstQuery. The
298  * modification is done atomically (so this is useful for ensuring thread safety
299  * in some cases), and the reference counts are updated appropriately (the old
300  * query is unreffed, the new one is reffed).
301  *
302  * Either @new_query or the #GstQuery pointed to by @old_query may be %NULL.
303  *
304  * Returns: %TRUE if @new_query was different from @old_query
305  */
306 static inline gboolean
307 gst_query_replace (GstQuery **old_query, GstQuery *new_query)
308 {
309   return gst_mini_object_replace ((GstMiniObject **) old_query, (GstMiniObject *) new_query);
310 }
311
312 /* application specific query */
313
314 GST_API
315 GstQuery *      gst_query_new_custom            (GstQueryType type, GstStructure *structure) G_GNUC_MALLOC;
316
317 GST_API
318 const GstStructure *
319                 gst_query_get_structure         (GstQuery *query);
320
321 GST_API
322 GstStructure *  gst_query_writable_structure    (GstQuery *query);
323
324 /* position query */
325
326 GST_API
327 GstQuery*       gst_query_new_position          (GstFormat format) G_GNUC_MALLOC;
328
329 GST_API
330 void            gst_query_set_position          (GstQuery *query, GstFormat format, gint64 cur);
331
332 GST_API
333 void            gst_query_parse_position        (GstQuery *query, GstFormat *format, gint64 *cur);
334
335 /* duration query */
336
337 GST_API
338 GstQuery*       gst_query_new_duration          (GstFormat format) G_GNUC_MALLOC;
339
340 GST_API
341 void            gst_query_set_duration          (GstQuery *query, GstFormat format, gint64 duration);
342
343 GST_API
344 void            gst_query_parse_duration        (GstQuery *query, GstFormat *format, gint64 *duration);
345
346 /* latency query */
347
348 GST_API
349 GstQuery*       gst_query_new_latency           (void) G_GNUC_MALLOC;
350
351 GST_API
352 void            gst_query_set_latency           (GstQuery *query, gboolean live, GstClockTime min_latency,
353                                                  GstClockTime max_latency);
354
355 GST_API
356 void            gst_query_parse_latency         (GstQuery *query, gboolean *live, GstClockTime *min_latency,
357                                                  GstClockTime *max_latency);
358
359 /* convert query */
360
361 GST_API
362 GstQuery*       gst_query_new_convert           (GstFormat src_format, gint64 value, GstFormat dest_format) G_GNUC_MALLOC;
363
364 GST_API
365 void            gst_query_set_convert           (GstQuery *query, GstFormat src_format, gint64 src_value,
366                                                  GstFormat dest_format, gint64 dest_value);
367
368 GST_API
369 void            gst_query_parse_convert         (GstQuery *query, GstFormat *src_format, gint64 *src_value,
370                                                  GstFormat *dest_format, gint64 *dest_value);
371 /* segment query */
372
373 GST_API
374 GstQuery*       gst_query_new_segment           (GstFormat format) G_GNUC_MALLOC;
375
376 GST_API
377 void            gst_query_set_segment           (GstQuery *query, gdouble rate, GstFormat format,
378                                                  gint64 start_value, gint64 stop_value);
379
380 GST_API
381 void            gst_query_parse_segment         (GstQuery *query, gdouble *rate, GstFormat *format,
382                                                  gint64 *start_value, gint64 *stop_value);
383
384 /* seeking query */
385
386 GST_API
387 GstQuery*       gst_query_new_seeking           (GstFormat format) G_GNUC_MALLOC;
388
389 GST_API
390 void            gst_query_set_seeking           (GstQuery *query, GstFormat format,
391                                                  gboolean seekable,
392                                                  gint64 segment_start,
393                                                  gint64 segment_end);
394
395 GST_API
396 void            gst_query_parse_seeking         (GstQuery *query, GstFormat *format,
397                                                  gboolean *seekable,
398                                                  gint64 *segment_start,
399                                                  gint64 *segment_end);
400 /* formats query */
401
402 GST_API
403 GstQuery*       gst_query_new_formats           (void) G_GNUC_MALLOC;
404
405 GST_API
406 void            gst_query_set_formats           (GstQuery *query, gint n_formats, ...);
407
408 GST_API
409 void            gst_query_set_formatsv          (GstQuery *query, gint n_formats, const GstFormat *formats);
410
411 GST_API
412 void            gst_query_parse_n_formats       (GstQuery *query, guint *n_formats);
413
414 GST_API
415 void            gst_query_parse_nth_format      (GstQuery *query, guint nth, GstFormat *format);
416
417 /* buffering query */
418
419 GST_API
420 GstQuery*       gst_query_new_buffering           (GstFormat format) G_GNUC_MALLOC;
421
422 GST_API
423 void            gst_query_set_buffering_percent   (GstQuery *query, gboolean busy, gint percent);
424
425 GST_API
426 void            gst_query_parse_buffering_percent (GstQuery *query, gboolean *busy, gint *percent);
427
428 GST_API
429 void            gst_query_set_buffering_stats     (GstQuery *query, GstBufferingMode mode,
430                                                    gint avg_in, gint avg_out,
431                                                    gint64 buffering_left);
432
433 GST_API
434 void            gst_query_parse_buffering_stats    (GstQuery *query, GstBufferingMode *mode,
435                                                    gint *avg_in, gint *avg_out,
436                                                    gint64 *buffering_left);
437
438 GST_API
439 void            gst_query_set_buffering_range     (GstQuery *query, GstFormat format,
440                                                    gint64 start, gint64 stop,
441                                                    gint64 estimated_total);
442
443 GST_API
444 void            gst_query_parse_buffering_range   (GstQuery *query, GstFormat *format,
445                                                    gint64 *start, gint64 *stop,
446                                                    gint64 *estimated_total);
447
448 GST_API
449 gboolean        gst_query_add_buffering_range       (GstQuery *query,
450                                                      gint64 start, gint64 stop);
451
452 GST_API
453 guint           gst_query_get_n_buffering_ranges    (GstQuery *query);
454
455 GST_API
456 gboolean        gst_query_parse_nth_buffering_range (GstQuery *query,
457                                                      guint index, gint64 *start,
458                                                      gint64 *stop);
459
460 /* URI query */
461
462 GST_API
463 GstQuery *      gst_query_new_uri                    (void) G_GNUC_MALLOC;
464
465 GST_API
466 void            gst_query_parse_uri                  (GstQuery *query, gchar **uri);
467
468 GST_API
469 void            gst_query_set_uri                    (GstQuery *query, const gchar *uri);
470
471 GST_API
472 void            gst_query_parse_uri_redirection      (GstQuery *query, gchar **uri);
473
474 GST_API
475 void            gst_query_set_uri_redirection        (GstQuery *query, const gchar *uri);
476
477 GST_API
478 void            gst_query_parse_uri_redirection_permanent (GstQuery *query, gboolean * permanent);
479
480 GST_API
481 void            gst_query_set_uri_redirection_permanent (GstQuery *query, gboolean permanent);
482
483 /* allocation query */
484
485 GST_API
486 GstQuery *      gst_query_new_allocation             (GstCaps *caps, gboolean need_pool) G_GNUC_MALLOC;
487
488 GST_API
489 void            gst_query_parse_allocation           (GstQuery *query, GstCaps **caps, gboolean *need_pool);
490
491 /* pools */
492
493 GST_API
494 void            gst_query_add_allocation_pool        (GstQuery *query, GstBufferPool *pool,
495                                                       guint size, guint min_buffers,
496                                                       guint max_buffers);
497
498 GST_API
499 guint           gst_query_get_n_allocation_pools     (GstQuery *query);
500
501 GST_API
502 void            gst_query_parse_nth_allocation_pool  (GstQuery *query, guint index,
503                                                       GstBufferPool **pool,
504                                                       guint *size, guint *min_buffers,
505                                                       guint *max_buffers);
506
507 GST_API
508 void            gst_query_set_nth_allocation_pool    (GstQuery *query, guint index,
509                                                       GstBufferPool *pool,
510                                                       guint size, guint min_buffers,
511                                                       guint max_buffers);
512
513 GST_API
514 void            gst_query_remove_nth_allocation_pool (GstQuery *query, guint index);
515
516 /* allocators */
517
518 GST_API
519 void            gst_query_add_allocation_param       (GstQuery *query, GstAllocator *allocator,
520                                                       const GstAllocationParams *params);
521
522 GST_API
523 guint           gst_query_get_n_allocation_params    (GstQuery *query);
524
525 GST_API
526 void            gst_query_parse_nth_allocation_param (GstQuery *query, guint index,
527                                                       GstAllocator **allocator,
528                                                       GstAllocationParams *params);
529
530 GST_API
531 void            gst_query_set_nth_allocation_param   (GstQuery *query, guint index,
532                                                       GstAllocator *allocator,
533                                                       const GstAllocationParams *params);
534
535 GST_API
536 void            gst_query_remove_nth_allocation_param (GstQuery *query, guint index);
537
538 /* metadata */
539
540 GST_API
541 void            gst_query_add_allocation_meta        (GstQuery *query, GType api, const GstStructure *params);
542
543 GST_API
544 guint           gst_query_get_n_allocation_metas     (GstQuery *query);
545
546 GST_API
547 GType           gst_query_parse_nth_allocation_meta  (GstQuery *query, guint index,
548                                                       const GstStructure **params);
549
550 GST_API
551 void            gst_query_remove_nth_allocation_meta (GstQuery *query, guint index);
552
553 GST_API
554 gboolean        gst_query_find_allocation_meta       (GstQuery *query, GType api, guint *index);
555
556
557 /* scheduling query */
558 /**
559  * GstSchedulingFlags:
560  * @GST_SCHEDULING_FLAG_SEEKABLE: if seeking is possible
561  * @GST_SCHEDULING_FLAG_SEQUENTIAL: if sequential access is recommended
562  * @GST_SCHEDULING_FLAG_BANDWIDTH_LIMITED: if bandwidth is limited and buffering possible (since 1.2)
563  *
564  * The different scheduling flags.
565  */
566 typedef enum {
567   GST_SCHEDULING_FLAG_SEEKABLE          = (1 << 0),
568   GST_SCHEDULING_FLAG_SEQUENTIAL        = (1 << 1),
569   GST_SCHEDULING_FLAG_BANDWIDTH_LIMITED = (1 << 2)
570 } GstSchedulingFlags;
571
572 GST_API
573 GstQuery *      gst_query_new_scheduling          (void) G_GNUC_MALLOC;
574
575 GST_API
576 void            gst_query_set_scheduling          (GstQuery *query, GstSchedulingFlags flags,
577                                                    gint minsize, gint maxsize, gint align);
578
579 GST_API
580 void            gst_query_parse_scheduling        (GstQuery *query, GstSchedulingFlags *flags,
581                                                    gint *minsize, gint *maxsize, gint *align);
582
583 GST_API
584 void            gst_query_add_scheduling_mode       (GstQuery *query, GstPadMode mode);
585
586 GST_API
587 guint           gst_query_get_n_scheduling_modes    (GstQuery *query);
588
589 GST_API
590 GstPadMode      gst_query_parse_nth_scheduling_mode (GstQuery *query, guint index);
591
592 GST_API
593 gboolean        gst_query_has_scheduling_mode       (GstQuery *query, GstPadMode mode);
594
595 GST_API
596 gboolean        gst_query_has_scheduling_mode_with_flags (GstQuery * query, GstPadMode mode,
597                                                     GstSchedulingFlags flags);
598
599 /* accept-caps query */
600
601 GST_API
602 GstQuery *      gst_query_new_accept_caps          (GstCaps *caps) G_GNUC_MALLOC;
603
604 GST_API
605 void            gst_query_parse_accept_caps        (GstQuery *query, GstCaps **caps);
606
607 GST_API
608 void            gst_query_set_accept_caps_result   (GstQuery *query, gboolean result);
609
610 GST_API
611 void            gst_query_parse_accept_caps_result (GstQuery *query, gboolean *result);
612
613 /* caps query */
614
615 GST_API
616 GstQuery *      gst_query_new_caps                 (GstCaps *filter) G_GNUC_MALLOC;
617
618 GST_API
619 void            gst_query_parse_caps               (GstQuery *query, GstCaps **filter);
620
621 GST_API
622 void            gst_query_set_caps_result          (GstQuery *query, GstCaps *caps);
623
624 GST_API
625 void            gst_query_parse_caps_result        (GstQuery *query, GstCaps **caps);
626
627 /* drain query */
628
629 GST_API
630 GstQuery *      gst_query_new_drain                (void) G_GNUC_MALLOC;
631
632 /* context query */
633
634 GST_API
635 GstQuery *      gst_query_new_context              (const gchar * context_type) G_GNUC_MALLOC;
636
637 GST_API
638 gboolean        gst_query_parse_context_type       (GstQuery * query, const gchar ** context_type);
639
640 GST_API
641 void            gst_query_set_context              (GstQuery *query, GstContext *context);
642
643 GST_API
644 void            gst_query_parse_context            (GstQuery *query, GstContext **context);
645
646 #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
647 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstQuery, gst_query_unref)
648 #endif
649
650 G_END_DECLS
651
652 #endif /* __GST_QUERY_H__ */
653