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>
7 * gstquery.h: GstQuery API declaration
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.
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.
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., 59 Temple Place - Suite 330,
22 * Boston, MA 02111-1307, USA.
26 #ifndef __GST_QUERY_H__
27 #define __GST_QUERY_H__
31 #include <gst/gstiterator.h>
32 #include <gst/gstminiobject.h>
33 #include <gst/gststructure.h>
34 #include <gst/gstformat.h>
35 #include <gst/gstpad.h>
41 * @GST_QUERY_NONE: invalid query type
42 * @GST_QUERY_POSITION: current position in stream
43 * @GST_QUERY_DURATION: total duration of the stream
44 * @GST_QUERY_LATENCY: latency of stream
45 * @GST_QUERY_JITTER: current jitter of stream
46 * @GST_QUERY_RATE: current rate of the stream
47 * @GST_QUERY_SEEKING: seeking capabilities
48 * @GST_QUERY_SEGMENT: segment start/stop positions
49 * @GST_QUERY_CONVERT: convert values between formats
50 * @GST_QUERY_FORMATS: query supported formats for convert
51 * @GST_QUERY_BUFFERING: query available media for efficient seeking. Since
53 * @GST_QUERY_CUSTOM: a custom application or element defined query. Since
55 * @GST_QUERY_URI: query the URI of the source or sink. Since 0.10.22.
56 * @GST_QUERY_ALLOCATION: the buffer allocation properties
57 * @GST_QUERY_SCHEDULING: the scheduling properties
59 * Standard predefined Query types
61 /* NOTE: don't forget to update the table in gstquery.c when changing
68 GST_QUERY_JITTER, /* not in draft-query, necessary? */
83 * @GST_BUFFERING_STREAM: a small amount of data is buffered
84 * @GST_BUFFERING_DOWNLOAD: the stream is being downloaded
85 * @GST_BUFFERING_TIMESHIFT: the stream is being downloaded in a ringbuffer
86 * @GST_BUFFERING_LIVE: the stream is a live stream
88 * The different types of buffering methods.
92 GST_BUFFERING_DOWNLOAD,
93 GST_BUFFERING_TIMESHIFT,
97 typedef struct _GstQueryTypeDefinition GstQueryTypeDefinition;
98 typedef struct _GstQuery GstQuery;
101 * GstQueryTypeDefinition:
102 * @value: the unique id of the Query type
103 * @nick: a short nick
104 * @description: a longer description of the query type
105 * @quark: the quark for the nick
107 * A Query Type definition
109 struct _GstQueryTypeDefinition
113 const gchar *description;
117 #define GST_TYPE_QUERY (gst_query_get_type())
118 #define GST_IS_QUERY(obj) (GST_IS_MINI_OBJECT_TYPE (obj, GST_TYPE_QUERY))
119 #define GST_QUERY_CAST(obj) ((GstQuery*)(obj))
120 #define GST_QUERY(obj) (GST_QUERY_CAST(obj))
125 * @query: the query to query
127 * Get the #GstQueryType of the query.
129 #define GST_QUERY_TYPE(query) (((GstQuery*)(query))->type)
132 * GST_QUERY_TYPE_NAME:
133 * @query: the query to query
135 * Get a constant string representation of the #GstQueryType of the query.
139 #define GST_QUERY_TYPE_NAME(query) (gst_query_type_get_name(GST_QUERY_TYPE(query)))
144 * @mini_object: The parent #GstMiniObject type
145 * @type: the #GstQueryType
147 * The #GstQuery structure.
151 GstMiniObject mini_object;
153 /*< public > *//* with COW */
157 const gchar* gst_query_type_get_name (GstQueryType query);
158 GQuark gst_query_type_to_quark (GstQueryType query);
160 GType gst_query_get_type (void);
162 /* register a new query */
163 GstQueryType gst_query_type_register (const gchar *nick,
164 const gchar *description);
165 GstQueryType gst_query_type_get_by_nick (const gchar *nick);
167 /* check if a query is in an array of querys */
168 gboolean gst_query_types_contains (const GstQueryType *types,
171 /* query for query details */
173 const GstQueryTypeDefinition*
174 gst_query_type_get_details (GstQueryType type);
175 GstIterator* gst_query_type_iterate_definitions (void);
180 * @q: a #GstQuery to increase the refcount of.
182 * Increases the refcount of the given query by one.
186 #ifdef _FOOL_GTK_DOC_
187 G_INLINE_FUNC GstQuery * gst_query_ref (GstQuery * q);
190 static inline GstQuery *
191 gst_query_ref (GstQuery * q)
193 return GST_QUERY_CAST (gst_mini_object_ref (GST_MINI_OBJECT_CAST (q)));
198 * @q: a #GstQuery to decrease the refcount of.
200 * Decreases the refcount of the query. If the refcount reaches 0, the query
203 #ifdef _FOOL_GTK_DOC_
204 G_INLINE_FUNC void gst_query_unref (GstQuery * q);
208 gst_query_unref (GstQuery * q)
210 gst_mini_object_unref (GST_MINI_OBJECT_CAST (q));
216 * @q: a #GstQuery to copy.
218 * Copies the given query using the copy function of the parent #GstStructure.
220 * Free-function: gst_query_unref
222 * Returns: (transfer full): a new copy of @q.
224 #ifdef _FOOL_GTK_DOC_
225 G_INLINE_FUNC GstQuery * gst_query_copy (const GstQuery * q);
228 static inline GstQuery *
229 gst_query_copy (const GstQuery * q)
231 return GST_QUERY_CAST (gst_mini_object_copy (GST_MINI_OBJECT_CONST_CAST (q)));
235 * gst_query_is_writable:
238 * Tests if you can safely write data into a query's structure.
240 #define gst_query_is_writable(q) gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (q))
242 * gst_query_make_writable:
243 * @q: (transfer full): a #GstQuery to make writable
245 * Makes a writable query from the given query.
247 * Returns: (transfer full): a new writable query (possibly same as @q)
249 #define gst_query_make_writable(q) GST_QUERY_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (q)))
252 * @old_query: (inout) (transfer full): pointer to a pointer to a #GstQuery
254 * @new_query: (allow-none) (transfer none): pointer to a #GstQuery that will
255 * replace the query pointed to by @old_query.
257 * Modifies a pointer to a #GstQuery to point to a different #GstQuery. The
258 * modification is done atomically (so this is useful for ensuring thread safety
259 * in some cases), and the reference counts are updated appropriately (the old
260 * query is unreffed, the new one is reffed).
262 * Either @new_query or the #GstQuery pointed to by @old_query may be NULL.
264 #define gst_query_replace(old_query,new_query) \
265 gst_mini_object_replace ((GstMiniObject **)(old_query), GST_MINI_OBJECT_CAST (new_query))
268 /* application specific query */
269 GstQuery * gst_query_new_custom (GstQueryType type, GstStructure *structure);
271 gst_query_get_structure (GstQuery *query);
272 GstStructure * gst_query_writable_structure (GstQuery *query);
275 GstQuery* gst_query_new_position (GstFormat format);
276 void gst_query_set_position (GstQuery *query, GstFormat format, gint64 cur);
277 void gst_query_parse_position (GstQuery *query, GstFormat *format, gint64 *cur);
280 GstQuery* gst_query_new_duration (GstFormat format);
281 void gst_query_set_duration (GstQuery *query, GstFormat format, gint64 duration);
282 void gst_query_parse_duration (GstQuery *query, GstFormat *format, gint64 *duration);
285 GstQuery* gst_query_new_latency (void);
286 void gst_query_set_latency (GstQuery *query, gboolean live, GstClockTime min_latency,
287 GstClockTime max_latency);
288 void gst_query_parse_latency (GstQuery *query, gboolean *live, GstClockTime *min_latency,
289 GstClockTime *max_latency);
292 GstQuery* gst_query_new_convert (GstFormat src_format, gint64 value, GstFormat dest_format);
293 void gst_query_set_convert (GstQuery *query, GstFormat src_format, gint64 src_value,
294 GstFormat dest_format, gint64 dest_value);
295 void gst_query_parse_convert (GstQuery *query, GstFormat *src_format, gint64 *src_value,
296 GstFormat *dest_format, gint64 *dest_value);
298 GstQuery* gst_query_new_segment (GstFormat format);
299 void gst_query_set_segment (GstQuery *query, gdouble rate, GstFormat format,
300 gint64 start_value, gint64 stop_value);
301 void gst_query_parse_segment (GstQuery *query, gdouble *rate, GstFormat *format,
302 gint64 *start_value, gint64 *stop_value);
305 GstQuery* gst_query_new_seeking (GstFormat format);
306 void gst_query_set_seeking (GstQuery *query, GstFormat format,
308 gint64 segment_start,
310 void gst_query_parse_seeking (GstQuery *query, GstFormat *format,
312 gint64 *segment_start,
313 gint64 *segment_end);
315 GstQuery* gst_query_new_formats (void);
316 void gst_query_set_formats (GstQuery *query, gint n_formats, ...);
317 void gst_query_set_formatsv (GstQuery *query, gint n_formats, const GstFormat *formats);
318 void gst_query_parse_n_formats (GstQuery *query, guint *n_formats);
319 void gst_query_parse_nth_format (GstQuery *query, guint nth, GstFormat *format);
321 /* buffering query */
322 GstQuery* gst_query_new_buffering (GstFormat format);
323 void gst_query_set_buffering_percent (GstQuery *query, gboolean busy, gint percent);
324 void gst_query_parse_buffering_percent (GstQuery *query, gboolean *busy, gint *percent);
326 void gst_query_set_buffering_stats (GstQuery *query, GstBufferingMode mode,
327 gint avg_in, gint avg_out,
328 gint64 buffering_left);
329 void gst_query_parse_buffering_stats (GstQuery *query, GstBufferingMode *mode,
330 gint *avg_in, gint *avg_out,
331 gint64 *buffering_left);
333 void gst_query_set_buffering_range (GstQuery *query, GstFormat format,
334 gint64 start, gint64 stop,
335 gint64 estimated_total);
336 void gst_query_parse_buffering_range (GstQuery *query, GstFormat *format,
337 gint64 *start, gint64 *stop,
338 gint64 *estimated_total);
340 gboolean gst_query_add_buffering_range (GstQuery *query,
341 gint64 start, gint64 stop);
342 guint gst_query_get_n_buffering_ranges (GstQuery *query);
343 gboolean gst_query_parse_nth_buffering_range (GstQuery *query,
344 guint index, gint64 *start,
348 GstQuery * gst_query_new_uri (void);
349 void gst_query_parse_uri (GstQuery *query, gchar **uri);
350 void gst_query_set_uri (GstQuery *query, const gchar *uri);
352 /* allocation query */
353 GstQuery * gst_query_new_allocation (GstCaps *caps, gboolean need_pool);
354 void gst_query_parse_allocation (GstQuery *query, GstCaps **caps, gboolean *need_pool);
356 void gst_query_set_allocation_params (GstQuery *query, guint size, guint min_buffers,
357 guint max_buffers, guint prefix, guint alignment,
358 GstBufferPool *pool);
359 void gst_query_parse_allocation_params (GstQuery *query, guint *size, guint *min_buffers,
360 guint *max_buffers, guint *prefix, guint *alignment,
361 GstBufferPool **pool);
363 void gst_query_add_allocation_meta (GstQuery *query, const gchar *api);
364 guint gst_query_get_n_allocation_metas (GstQuery *query);
365 const gchar * gst_query_parse_nth_allocation_meta (GstQuery *query, guint index);
366 gboolean gst_query_has_allocation_meta (GstQuery *query, const gchar *api);
368 void gst_query_add_allocation_memory (GstQuery *query, const gchar *alloc);
369 guint gst_query_get_n_allocation_memories (GstQuery *query);
370 const gchar * gst_query_parse_nth_allocation_memory (GstQuery *query, guint index);
372 /* scheduling query */
373 GstQuery * gst_query_new_scheduling (void);
375 void gst_query_set_scheduling (GstQuery *query, gboolean pull_mode,
376 gboolean random_access, gboolean sequential,
377 gint minsize, gint maxsize, gint align);
378 void gst_query_parse_scheduling (GstQuery *query, gboolean *pull_mode,
379 gboolean *random_access, gboolean *sequential,
380 gint *minsize, gint *maxsize, gint *align);
384 #endif /* __GST_QUERY_H__ */