2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
4 * 2002 Thomas Vander Stichele <thomas@apestaart.org>
6 * gstutils.h: Header for various utility functions
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.
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.
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., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
25 #ifndef __GST_UTILS_H__
26 #define __GST_UTILS_H__
29 #include <gst/gstbin.h>
30 #include <gst/gstparse.h>
34 void gst_util_set_value_from_string (GValue *value, const gchar *value_str);
35 void gst_util_set_object_arg (GObject *object, const gchar *name, const gchar *value);
36 void gst_util_dump_mem (const guchar *mem, guint size);
38 guint64 gst_util_gdouble_to_guint64 (gdouble value) G_GNUC_CONST;
39 gdouble gst_util_guint64_to_gdouble (guint64 value) G_GNUC_CONST;
42 * gst_guint64_to_gdouble:
43 * @value: the #guint64 value to convert
45 * Convert @value to a gdouble.
47 * Returns: @value converted to a #gdouble.
51 * gst_gdouble_to_guint64:
52 * @value: the #gdouble value to convert
54 * Convert @value to a guint64.
56 * Returns: @value converted to a #guint64.
59 #define gst_gdouble_to_guint64(value) gst_util_gdouble_to_guint64(value)
60 #define gst_guint64_to_gdouble(value) gst_util_guint64_to_gdouble(value)
62 #define gst_gdouble_to_guint64(value) ((guint64) (value))
63 #define gst_guint64_to_gdouble(value) ((gdouble) (value))
66 guint64 gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom);
67 guint64 gst_util_uint64_scale_round (guint64 val, guint64 num, guint64 denom);
68 guint64 gst_util_uint64_scale_ceil (guint64 val, guint64 num, guint64 denom);
70 guint64 gst_util_uint64_scale_int (guint64 val, gint num, gint denom);
71 guint64 gst_util_uint64_scale_int_round (guint64 val, gint num, gint denom);
72 guint64 gst_util_uint64_scale_int_ceil (guint64 val, gint num, gint denom);
74 guint32 gst_util_seqnum_next (void);
75 gint32 gst_util_seqnum_compare (guint32 s1, guint32 s2);
77 void gst_print_pad_caps (GString *buf, gint indent, GstPad *pad);
78 void gst_print_element_args (GString *buf, gint indent, GstElement *element);
81 GType gst_type_register_static_full (GType parent_type,
82 const gchar *type_name,
84 GBaseInitFunc base_init,
85 GBaseFinalizeFunc base_finalize,
86 GClassInitFunc class_init,
87 GClassFinalizeFunc class_finalize,
88 gconstpointer class_data,
91 GInstanceInitFunc instance_init,
92 const GTypeValueTable *value_table,
96 /* Macros for defining classes. Ideas taken from Bonobo, which took theirs
97 from Nautilus and GOB. */
100 * GST_BOILERPLATE_FULL:
101 * @type: the name of the type struct
102 * @type_as_function: the prefix for the functions
103 * @parent_type: the parent type struct name
104 * @parent_type_macro: the parent type macro
105 * @additional_initializations: function pointer in the form of
106 * void additional_initializations (GType type) that can be used for
107 * initializing interfaces and the like
109 * Define the boilerplate type stuff to reduce typos and code size. Defines
110 * the get_type method and the parent_class static variable.
114 * GST_BOILERPLATE_FULL (GstFdSink, gst_fdsink, GstElement, GST_TYPE_ELEMENT, _do_init);
118 #define GST_BOILERPLATE_FULL(type, type_as_function, parent_type, parent_type_macro, additional_initializations) \
120 static void type_as_function ## _base_init (gpointer g_class); \
121 static void type_as_function ## _class_init (type ## Class *g_class);\
122 static void type_as_function ## _init (type *object, \
123 type ## Class *g_class);\
124 static parent_type ## Class *parent_class = NULL; \
126 type_as_function ## _class_init_trampoline (gpointer g_class) \
128 parent_class = (parent_type ## Class *) \
129 g_type_class_peek_parent (g_class); \
130 type_as_function ## _class_init ((type ## Class *)g_class); \
134 type_as_function ## _get_type (void) \
136 /* The typedef for GType may be gulong or gsize, depending on the \
137 * system and whether the compiler is c++ or not. The g_once_init_* \
138 * functions always take a gsize * though ... */ \
139 static volatile gsize gonce_data = 0; \
140 if (g_once_init_enter (&gonce_data)) { \
142 _type = gst_type_register_static_full (parent_type_macro, \
143 g_intern_static_string (#type), \
144 sizeof (type ## Class), \
145 type_as_function ## _base_init, \
146 NULL, /* base_finalize */ \
147 (GClassInitFunc) type_as_function ## _class_init_trampoline, \
148 NULL, /* class_finalize */ \
149 NULL, /* class_data */ \
151 0, /* n_preallocs */ \
152 (GInstanceInitFunc) type_as_function ## _init, \
155 additional_initializations (_type); \
156 g_once_init_leave (&gonce_data, (gsize) _type); \
158 return (GType) gonce_data; \
161 #define __GST_DO_NOTHING(type) /* NOP */
165 * @type: the name of the type struct
166 * @type_as_function: the prefix for the functions
167 * @parent_type: the parent type struct name
168 * @parent_type_macro: the parent type macro
170 * Define the boilerplate type stuff to reduce typos and code size. Defines
171 * the get_type method and the parent_class static variable.
175 * GST_BOILERPLATE (GstFdSink, gst_fdsink, GstElement, GST_TYPE_ELEMENT);
179 #define GST_BOILERPLATE(type,type_as_function,parent_type,parent_type_macro) \
180 GST_BOILERPLATE_FULL (type, type_as_function, parent_type, parent_type_macro, \
183 /* Like GST_BOILERPLATE, but makes the type 1) implement an interface, and 2)
184 * implement GstImplementsInterface for that type
186 * After this you will need to implement interface_as_function ## _supported
187 * and interface_as_function ## _interface_init
190 * GST_BOILERPLATE_WITH_INTERFACE:
191 * @type: the name of the type struct
192 * @type_as_function: the prefix for the functions
193 * @parent_type: the parent type struct name
194 * @parent_type_as_macro: the parent type macro
195 * @interface_type: the name of the interface type struct
196 * @interface_type_as_macro: the interface type macro
197 * @interface_as_function: the interface function name prefix
199 * Like GST_BOILERPLATE, but makes the type 1) implement an interface, and 2)
200 * implement GstImplementsInterface for that type.
202 * After this you will need to implement interface_as_function ## _supported
203 * and interface_as_function ## _interface_init
205 #define GST_BOILERPLATE_WITH_INTERFACE(type, type_as_function, \
206 parent_type, parent_type_as_macro, interface_type, \
207 interface_type_as_macro, interface_as_function) \
209 static void interface_as_function ## _interface_init (interface_type ## Class *klass); \
210 static gboolean interface_as_function ## _supported (type *object, GType iface_type); \
213 type_as_function ## _implements_interface_init (GstImplementsInterfaceClass *klass) \
215 klass->supported = (gboolean (*)(GstImplementsInterface*, GType))interface_as_function ## _supported; \
219 type_as_function ## _init_interfaces (GType type) \
221 static const GInterfaceInfo implements_iface_info = { \
222 (GInterfaceInitFunc) type_as_function ## _implements_interface_init,\
226 static const GInterfaceInfo iface_info = { \
227 (GInterfaceInitFunc) interface_as_function ## _interface_init, \
232 g_type_add_interface_static (type, GST_TYPE_IMPLEMENTS_INTERFACE, \
233 &implements_iface_info); \
234 g_type_add_interface_static (type, interface_type_as_macro, \
238 GST_BOILERPLATE_FULL (type, type_as_function, parent_type, \
239 parent_type_as_macro, type_as_function ## _init_interfaces)
243 * @parent_class_cast: the name of the class cast macro for the parent type
244 * @name: name of the function to call
245 * @args: arguments enclosed in '( )'
247 * Just call the parent handler. This assumes that there is a variable
248 * named parent_class that points to the (duh!) parent class. Note that
249 * this macro is not to be used with things that return something, use
250 * the _WITH_DEFAULT version for that
252 #define GST_CALL_PARENT(parent_class_cast, name, args) \
253 ((parent_class_cast(parent_class)->name != NULL) ? \
254 parent_class_cast(parent_class)->name args : (void) 0)
257 * GST_CALL_PARENT_WITH_DEFAULT:
258 * @parent_class_cast: the name of the class cast macro for the parent type
259 * @name: name of the function to call
260 * @args: arguments enclosed in '( )'
261 * @def_return: default result
263 * Same as GST_CALL_PARENT(), but in case there is no implementation, it
264 * evaluates to @def_return.
266 #define GST_CALL_PARENT_WITH_DEFAULT(parent_class_cast, name, args, def_return)\
267 ((parent_class_cast(parent_class)->name != NULL) ? \
268 parent_class_cast(parent_class)->name args : def_return)
270 /* Define PUT and GET functions for unaligned memory */
271 #define _GST_GET(__data, __idx, __size, __shift) \
272 (((guint##__size) (((const guint8 *) (__data))[__idx])) << (__shift))
274 #define _GST_PUT(__data, __idx, __size, __shift, __num) \
275 (((guint8 *) (__data))[__idx] = (((guint##__size) (__num)) >> (__shift)) & 0xff)
278 * GST_READ_UINT64_BE:
279 * @data: memory location
281 * Read a 64 bit unsigned integer value in big endian format from the memory buffer.
283 #define GST_READ_UINT64_BE(data) (_GST_GET (data, 0, 64, 56) | \
284 _GST_GET (data, 1, 64, 48) | \
285 _GST_GET (data, 2, 64, 40) | \
286 _GST_GET (data, 3, 64, 32) | \
287 _GST_GET (data, 4, 64, 24) | \
288 _GST_GET (data, 5, 64, 16) | \
289 _GST_GET (data, 6, 64, 8) | \
290 _GST_GET (data, 7, 64, 0))
293 * GST_READ_UINT64_LE:
294 * @data: memory location
296 * Read a 64 bit unsigned integer value in little endian format from the memory buffer.
298 #define GST_READ_UINT64_LE(data) (_GST_GET (data, 7, 64, 56) | \
299 _GST_GET (data, 6, 64, 48) | \
300 _GST_GET (data, 5, 64, 40) | \
301 _GST_GET (data, 4, 64, 32) | \
302 _GST_GET (data, 3, 64, 24) | \
303 _GST_GET (data, 2, 64, 16) | \
304 _GST_GET (data, 1, 64, 8) | \
305 _GST_GET (data, 0, 64, 0))
308 * GST_READ_UINT32_BE:
309 * @data: memory location
311 * Read a 32 bit unsigned integer value in big endian format from the memory buffer.
313 #define GST_READ_UINT32_BE(data) (_GST_GET (data, 0, 32, 24) | \
314 _GST_GET (data, 1, 32, 16) | \
315 _GST_GET (data, 2, 32, 8) | \
316 _GST_GET (data, 3, 32, 0))
319 * GST_READ_UINT32_LE:
320 * @data: memory location
322 * Read a 32 bit unsigned integer value in little endian format from the memory buffer.
324 #define GST_READ_UINT32_LE(data) (_GST_GET (data, 3, 32, 24) | \
325 _GST_GET (data, 2, 32, 16) | \
326 _GST_GET (data, 1, 32, 8) | \
327 _GST_GET (data, 0, 32, 0))
330 * GST_READ_UINT24_BE:
331 * @data: memory location
333 * Read a 24 bit unsigned integer value in big endian format from the memory buffer.
337 #define GST_READ_UINT24_BE(data) (_GST_GET (data, 0, 32, 16) | \
338 _GST_GET (data, 1, 32, 8) | \
339 _GST_GET (data, 2, 32, 0))
342 * GST_READ_UINT24_LE:
343 * @data: memory location
345 * Read a 24 bit unsigned integer value in little endian format from the memory buffer.
349 #define GST_READ_UINT24_LE(data) (_GST_GET (data, 2, 32, 16) | \
350 _GST_GET (data, 1, 32, 8) | \
351 _GST_GET (data, 0, 32, 0))
354 * GST_READ_UINT16_BE:
355 * @data: memory location
357 * Read a 16 bit unsigned integer value in big endian format from the memory buffer.
359 #define GST_READ_UINT16_BE(data) (_GST_GET (data, 0, 16, 8) | \
360 _GST_GET (data, 1, 16, 0))
363 * GST_READ_UINT16_LE:
364 * @data: memory location
366 * Read a 16 bit unsigned integer value in little endian format from the memory buffer.
368 #define GST_READ_UINT16_LE(data) (_GST_GET (data, 1, 16, 8) | \
369 _GST_GET (data, 0, 16, 0))
373 * @data: memory location
375 * Read an 8 bit unsigned integer value from the memory buffer.
377 #define GST_READ_UINT8(data) (_GST_GET (data, 0, 8, 0))
380 * GST_WRITE_UINT64_BE:
381 * @data: memory location
382 * @num: value to store
384 * Store a 64 bit unsigned integer value in big endian format into the memory buffer.
386 #define GST_WRITE_UINT64_BE(data, num) do { \
387 _GST_PUT (data, 0, 64, 56, num); \
388 _GST_PUT (data, 1, 64, 48, num); \
389 _GST_PUT (data, 2, 64, 40, num); \
390 _GST_PUT (data, 3, 64, 32, num); \
391 _GST_PUT (data, 4, 64, 24, num); \
392 _GST_PUT (data, 5, 64, 16, num); \
393 _GST_PUT (data, 6, 64, 8, num); \
394 _GST_PUT (data, 7, 64, 0, num); \
398 * GST_WRITE_UINT64_LE:
399 * @data: memory location
400 * @num: value to store
402 * Store a 64 bit unsigned integer value in little endian format into the memory buffer.
404 #define GST_WRITE_UINT64_LE(data, num) do { \
405 _GST_PUT (data, 0, 64, 0, num); \
406 _GST_PUT (data, 1, 64, 8, num); \
407 _GST_PUT (data, 2, 64, 16, num); \
408 _GST_PUT (data, 3, 64, 24, num); \
409 _GST_PUT (data, 4, 64, 32, num); \
410 _GST_PUT (data, 5, 64, 40, num); \
411 _GST_PUT (data, 6, 64, 48, num); \
412 _GST_PUT (data, 7, 64, 56, num); \
416 * GST_WRITE_UINT32_BE:
417 * @data: memory location
418 * @num: value to store
420 * Store a 32 bit unsigned integer value in big endian format into the memory buffer.
422 #define GST_WRITE_UINT32_BE(data, num) do { \
423 _GST_PUT (data, 0, 32, 24, num); \
424 _GST_PUT (data, 1, 32, 16, num); \
425 _GST_PUT (data, 2, 32, 8, num); \
426 _GST_PUT (data, 3, 32, 0, num); \
430 * GST_WRITE_UINT32_LE:
431 * @data: memory location
432 * @num: value to store
434 * Store a 32 bit unsigned integer value in little endian format into the memory buffer.
436 #define GST_WRITE_UINT32_LE(data, num) do { \
437 _GST_PUT (data, 0, 32, 0, num); \
438 _GST_PUT (data, 1, 32, 8, num); \
439 _GST_PUT (data, 2, 32, 16, num); \
440 _GST_PUT (data, 3, 32, 24, num); \
444 * GST_WRITE_UINT24_BE:
445 * @data: memory location
446 * @num: value to store
448 * Store a 24 bit unsigned integer value in big endian format into the memory buffer.
452 #define GST_WRITE_UINT24_BE(data, num) do { \
453 _GST_PUT (data, 0, 32, 16, num); \
454 _GST_PUT (data, 1, 32, 8, num); \
455 _GST_PUT (data, 2, 32, 0, num); \
459 * GST_WRITE_UINT24_LE:
460 * @data: memory location
461 * @num: value to store
463 * Store a 24 bit unsigned integer value in little endian format into the memory buffer.
467 #define GST_WRITE_UINT24_LE(data, num) do { \
468 _GST_PUT (data, 0, 32, 0, num); \
469 _GST_PUT (data, 1, 32, 8, num); \
470 _GST_PUT (data, 2, 32, 16, num); \
474 * GST_WRITE_UINT16_BE:
475 * @data: memory location
476 * @num: value to store
478 * Store a 16 bit unsigned integer value in big endian format into the memory buffer.
480 #define GST_WRITE_UINT16_BE(data, num) do { \
481 _GST_PUT (data, 0, 16, 8, num); \
482 _GST_PUT (data, 1, 16, 0, num); \
486 * GST_WRITE_UINT16_LE:
487 * @data: memory location
488 * @num: value to store
490 * Store a 16 bit unsigned integer value in little endian format into the memory buffer.
492 #define GST_WRITE_UINT16_LE(data, num) do { \
493 _GST_PUT (data, 0, 16, 0, num); \
494 _GST_PUT (data, 1, 16, 8, num); \
499 * @data: memory location
500 * @num: value to store
502 * Store an 8 bit unsigned integer value into the memory buffer.
504 #define GST_WRITE_UINT8(data, num) do { \
505 _GST_PUT (data, 0, 8, 0, num); \
508 /* Float endianess conversion macros */
510 /* FIXME: Remove this once we depend on a GLib version with this */
511 #ifndef GFLOAT_FROM_LE
516 * Swap byte order of a 32-bit floating point value (float).
518 * Returns: @in byte-swapped.
523 #ifdef _FOOL_GTK_DOC_
524 G_INLINE_FUNC gfloat GFLOAT_SWAP_LE_BE (gfloat in);
528 GFLOAT_SWAP_LE_BE(gfloat in)
537 u.i = GUINT32_SWAP_LE_BE (u.i);
542 * GDOUBLE_SWAP_LE_BE:
545 * Swap byte order of a 64-bit floating point value (double).
547 * Returns: @in byte-swapped.
552 #ifdef _FOOL_GTK_DOC_
553 G_INLINE_FUNC gdouble GDOUBLE_SWAP_LE_BE (gdouble in);
556 inline static gdouble
557 GDOUBLE_SWAP_LE_BE(gdouble in)
566 u.i = GUINT64_SWAP_LE_BE (u.i);
574 * Convert 64-bit floating point value (double) from native byte order into
575 * little endian byte order.
584 * Convert 64-bit floating point value (double) from native byte order into
585 * big endian byte order.
594 * Convert 64-bit floating point value (double) from little endian byte order
595 * into native byte order.
604 * Convert 64-bit floating point value (double) from big endian byte order
605 * into native byte order.
615 * Convert 32-bit floating point value (float) from native byte order into
616 * little endian byte order.
625 * Convert 32-bit floating point value (float) from native byte order into
626 * big endian byte order.
635 * Convert 32-bit floating point value (float) from little endian byte order
636 * into native byte order.
645 * Convert 32-bit floating point value (float) from big endian byte order
646 * into native byte order.
652 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
653 #define GFLOAT_TO_LE(val) ((gfloat) (val))
654 #define GFLOAT_TO_BE(val) (GFLOAT_SWAP_LE_BE (val))
655 #define GDOUBLE_TO_LE(val) ((gdouble) (val))
656 #define GDOUBLE_TO_BE(val) (GDOUBLE_SWAP_LE_BE (val))
658 #elif G_BYTE_ORDER == G_BIG_ENDIAN
659 #define GFLOAT_TO_LE(val) (GFLOAT_SWAP_LE_BE (val))
660 #define GFLOAT_TO_BE(val) ((gfloat) (val))
661 #define GDOUBLE_TO_LE(val) (GDOUBLE_SWAP_LE_BE (val))
662 #define GDOUBLE_TO_BE(val) ((gdouble) (val))
664 #else /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
665 #error unknown ENDIAN type
666 #endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
668 #define GFLOAT_FROM_LE(val) (GFLOAT_TO_LE (val))
669 #define GFLOAT_FROM_BE(val) (GFLOAT_TO_BE (val))
670 #define GDOUBLE_FROM_LE(val) (GDOUBLE_TO_LE (val))
671 #define GDOUBLE_FROM_BE(val) (GDOUBLE_TO_BE (val))
673 #endif /* !defined(GFLOAT_FROM_LE) */
677 * @data: memory location
679 * Read a 32 bit float value in little endian format from the memory buffer.
681 * Returns: The floating point value read from @data
686 #ifdef _FOOL_GTK_DOC_
687 G_INLINE_FUNC gfloat GST_READ_FLOAT_LE (const guint8 *data);
691 GST_READ_FLOAT_LE(const guint8 *data)
699 u.i = GST_READ_UINT32_LE (data);
705 * @data: memory location
707 * Read a 32 bit float value in big endian format from the memory buffer.
709 * Returns: The floating point value read from @data
714 #ifdef _FOOL_GTK_DOC_
715 G_INLINE_FUNC gfloat GST_READ_FLOAT_BE (const guint8 *data);
719 GST_READ_FLOAT_BE(const guint8 *data)
727 u.i = GST_READ_UINT32_BE (data);
732 * GST_READ_DOUBLE_LE:
733 * @data: memory location
735 * Read a 64 bit double value in little endian format from the memory buffer.
737 * Returns: The double-precision floating point value read from @data
742 #ifdef _FOOL_GTK_DOC_
743 G_INLINE_FUNC gdouble GST_READ_DOUBLE_LE (const guint8 *data);
746 inline static gdouble
747 GST_READ_DOUBLE_LE(const guint8 *data)
755 u.i = GST_READ_UINT64_LE (data);
760 * GST_READ_DOUBLE_BE:
761 * @data: memory location
763 * Read a 64 bit double value in big endian format from the memory buffer.
765 * Returns: The double-precision floating point value read from @data
770 #ifdef _FOOL_GTK_DOC_
771 G_INLINE_FUNC gdouble GST_READ_DOUBLE_BE (const guint8 *data);
774 inline static gdouble
775 GST_READ_DOUBLE_BE(const guint8 *data)
783 u.i = GST_READ_UINT64_BE (data);
788 * GST_WRITE_FLOAT_LE:
789 * @data: memory location
790 * @num: value to store
792 * Store a 32 bit float value in little endian format into the memory buffer.
797 #ifdef _FOOL_GTK_DOC_
798 G_INLINE_FUNC void GST_WRITE_FLOAT_LE (guint8 *data, gfloat num);
802 GST_WRITE_FLOAT_LE(guint8 *data, gfloat num)
811 GST_WRITE_UINT32_LE (data, u.i);
815 * GST_WRITE_FLOAT_BE:
816 * @data: memory location
817 * @num: value to store
819 * Store a 32 bit float value in big endian format into the memory buffer.
824 #ifdef _FOOL_GTK_DOC_
825 G_INLINE_FUNC void GST_WRITE_FLOAT_BE (guint8 *data, gfloat num);
829 GST_WRITE_FLOAT_BE(guint8 *data, gfloat num)
838 GST_WRITE_UINT32_BE (data, u.i);
842 * GST_WRITE_DOUBLE_LE:
843 * @data: memory location
844 * @num: value to store
846 * Store a 64 bit double value in little endian format into the memory buffer.
851 #ifdef _FOOL_GTK_DOC_
852 G_INLINE_FUNC void GST_WRITE_DOUBLE_LE (guint8 *data, gdouble num);
856 GST_WRITE_DOUBLE_LE(guint8 *data, gdouble num)
865 GST_WRITE_UINT64_LE (data, u.i);
869 * GST_WRITE_DOUBLE_BE:
870 * @data: memory location
871 * @num: value to store
873 * Store a 64 bit double value in big endian format into the memory buffer.
878 #ifdef _FOOL_GTK_DOC_
879 G_INLINE_FUNC void GST_WRITE_DOUBLE_BE (guint8 *data, gdouble num);
883 GST_WRITE_DOUBLE_BE(guint8 *data, gdouble num)
892 GST_WRITE_UINT64_BE (data, u.i);
895 /* Miscellaneous utility macros */
899 * @num: integer value to round up
901 * Rounds an integer value up to the next multiple of 2.
903 #define GST_ROUND_UP_2(num) (((num)+1)&~1)
906 * @num: integer value to round up
908 * Rounds an integer value up to the next multiple of 4.
910 #define GST_ROUND_UP_4(num) (((num)+3)&~3)
913 * @num: integer value to round up
915 * Rounds an integer value up to the next multiple of 8.
917 #define GST_ROUND_UP_8(num) (((num)+7)&~7)
920 * @num: integer value to round up
922 * Rounds an integer value up to the next multiple of 16.
924 #define GST_ROUND_UP_16(num) (((num)+15)&~15)
927 * @num: integer value to round up
929 * Rounds an integer value up to the next multiple of 32.
931 #define GST_ROUND_UP_32(num) (((num)+31)&~31)
934 * @num: integer value to round up
936 * Rounds an integer value up to the next multiple of 64.
938 #define GST_ROUND_UP_64(num) (((num)+63)&~63)
942 * @num: integer value to round down
944 * Rounds an integer value down to the next multiple of 2.
948 #define GST_ROUND_DOWN_2(num) ((num)&(~1))
951 * @num: integer value to round down
953 * Rounds an integer value down to the next multiple of 4.
957 #define GST_ROUND_DOWN_4(num) ((num)&(~3))
960 * @num: integer value to round down
962 * Rounds an integer value down to the next multiple of 8.
966 #define GST_ROUND_DOWN_8(num) ((num)&(~7))
969 * @num: integer value to round down
971 * Rounds an integer value down to the next multiple of 16.
975 #define GST_ROUND_DOWN_16(num) ((num)&(~15))
978 * @num: integer value to round down
980 * Rounds an integer value down to the next multiple of 32.
984 #define GST_ROUND_DOWN_32(num) ((num)&(~31))
987 * @num: integer value to round down
989 * Rounds an integer value down to the next multiple of 64.
993 #define GST_ROUND_DOWN_64(num) ((num)&(~63))
995 void gst_object_default_error (GstObject * source,
996 const GError * error,
997 const gchar * debug);
999 /* element functions */
1000 void gst_element_create_all_pads (GstElement *element);
1001 GstPad* gst_element_get_compatible_pad (GstElement *element, GstPad *pad,
1002 const GstCaps *caps);
1004 GstPadTemplate* gst_element_get_compatible_pad_template (GstElement *element, GstPadTemplate *compattempl);
1006 G_CONST_RETURN gchar* gst_element_state_get_name (GstState state);
1007 G_CONST_RETURN gchar * gst_element_state_change_return_get_name (GstStateChangeReturn state_ret);
1009 gboolean gst_element_link (GstElement *src, GstElement *dest);
1010 gboolean gst_element_link_many (GstElement *element_1,
1011 GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
1012 gboolean gst_element_link_filtered (GstElement * src,
1015 void gst_element_unlink (GstElement *src, GstElement *dest);
1016 void gst_element_unlink_many (GstElement *element_1,
1017 GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
1019 gboolean gst_element_link_pads (GstElement *src, const gchar *srcpadname,
1020 GstElement *dest, const gchar *destpadname);
1021 gboolean gst_element_link_pads_full (GstElement *src, const gchar *srcpadname,
1022 GstElement *dest, const gchar *destpadname,
1023 GstPadLinkCheck flags);
1024 void gst_element_unlink_pads (GstElement *src, const gchar *srcpadname,
1025 GstElement *dest, const gchar *destpadname);
1027 gboolean gst_element_link_pads_filtered (GstElement * src, const gchar * srcpadname,
1028 GstElement * dest, const gchar * destpadname,
1031 gboolean gst_element_seek_simple (GstElement *element,
1033 GstSeekFlags seek_flags,
1036 /* util elementfactory functions */
1037 gboolean gst_element_factory_can_sink_all_caps (GstElementFactory *factory, const GstCaps *caps);
1038 gboolean gst_element_factory_can_src_all_caps (GstElementFactory *factory, const GstCaps *caps);
1039 gboolean gst_element_factory_can_sink_any_caps (GstElementFactory *factory, const GstCaps *caps);
1040 gboolean gst_element_factory_can_src_any_caps (GstElementFactory *factory, const GstCaps *caps);
1042 /* util query functions */
1043 gboolean gst_element_query_position (GstElement *element, GstFormat *format,
1045 gboolean gst_element_query_duration (GstElement *element, GstFormat *format,
1047 gboolean gst_element_query_convert (GstElement *element, GstFormat src_format, gint64 src_val,
1048 GstFormat *dest_format, gint64 *dest_val);
1050 /* element class functions */
1051 void gst_element_class_install_std_props (GstElementClass * klass,
1052 const gchar * first_name, ...) G_GNUC_NULL_TERMINATED;
1055 void gst_pad_use_fixed_caps (GstPad *pad);
1056 GstCaps* gst_pad_get_fixed_caps_func (GstPad *pad);
1057 GstCaps* gst_pad_proxy_getcaps (GstPad * pad);
1058 gboolean gst_pad_proxy_setcaps (GstPad * pad, GstCaps * caps);
1060 GstElement* gst_pad_get_parent_element (GstPad *pad);
1062 /* util query functions */
1063 gboolean gst_pad_query_position (GstPad *pad, GstFormat *format,
1065 gboolean gst_pad_query_duration (GstPad *pad, GstFormat *format,
1067 gboolean gst_pad_query_convert (GstPad *pad, GstFormat src_format, gint64 src_val,
1068 GstFormat *dest_format, gint64 *dest_val);
1070 gboolean gst_pad_query_peer_position (GstPad *pad, GstFormat *format,
1072 gboolean gst_pad_query_peer_duration (GstPad *pad, GstFormat *format,
1074 gboolean gst_pad_query_peer_convert (GstPad *pad, GstFormat src_format, gint64 src_val,
1075 GstFormat *dest_format, gint64 *dest_val);
1078 void gst_bin_add_many (GstBin *bin, GstElement *element_1, ...) G_GNUC_NULL_TERMINATED;
1079 void gst_bin_remove_many (GstBin *bin, GstElement *element_1, ...) G_GNUC_NULL_TERMINATED;
1080 GstPad * gst_bin_find_unlinked_pad (GstBin *bin, GstPadDirection direction);
1082 /* buffer functions */
1083 GstBuffer * gst_buffer_merge (GstBuffer * buf1, GstBuffer * buf2);
1084 GstBuffer * gst_buffer_join (GstBuffer * buf1, GstBuffer * buf2);
1087 gulong gst_pad_add_data_probe (GstPad * pad,
1091 gulong gst_pad_add_data_probe_full (GstPad * pad,
1094 GDestroyNotify notify);
1096 void gst_pad_remove_data_probe (GstPad * pad, guint handler_id);
1098 gulong gst_pad_add_event_probe (GstPad * pad,
1102 gulong gst_pad_add_event_probe_full (GstPad * pad,
1105 GDestroyNotify notify);
1107 void gst_pad_remove_event_probe (GstPad * pad, guint handler_id);
1109 gulong gst_pad_add_buffer_probe (GstPad * pad,
1113 gulong gst_pad_add_buffer_probe_full (GstPad * pad,
1116 GDestroyNotify notify);
1118 void gst_pad_remove_buffer_probe (GstPad * pad, guint handler_id);
1120 /* tag emission utility functions */
1121 void gst_element_found_tags_for_pad (GstElement * element,
1124 void gst_element_found_tags (GstElement * element,
1127 /* parse utility functions */
1128 GstElement * gst_parse_bin_from_description (const gchar * bin_description,
1129 gboolean ghost_unlinked_pads,
1132 GstElement * gst_parse_bin_from_description_full (const gchar * bin_description,
1133 gboolean ghost_unlinked_pads,
1134 GstParseContext * context,
1135 GstParseFlags flags,
1138 GstClockTime gst_util_get_timestamp (void);
1142 * @GST_SEARCH_MODE_EXACT : Only search for exact matches.
1143 * @GST_SEARCH_MODE_BEFORE: Search for an exact match or the element just before.
1144 * @GST_SEARCH_MODE_AFTER : Search for an exact match or the element just after.
1146 * The different search modes.
1151 GST_SEARCH_MODE_EXACT = 0,
1152 GST_SEARCH_MODE_BEFORE,
1153 GST_SEARCH_MODE_AFTER
1156 gpointer gst_util_array_binary_search (gpointer array, guint num_elements,
1157 gsize element_size, GCompareDataFunc search_func,
1158 GstSearchMode mode, gconstpointer search_data,
1159 gpointer user_data);
1161 gint gst_util_greatest_common_divisor (gint a, gint b);
1162 void gst_util_fraction_to_double (gint src_n, gint src_d, gdouble *dest);
1163 void gst_util_double_to_fraction (gdouble src, gint *dest_n, gint *dest_d);
1164 gboolean gst_util_fraction_multiply (gint a_n, gint a_d, gint b_n, gint b_d, gint *res_n, gint *res_d);
1165 gboolean gst_util_fraction_add (gint a_n, gint a_d, gint b_n, gint b_d, gint *res_n, gint *res_d);
1166 gint gst_util_fraction_compare (gint a_n, gint a_d, gint b_n, gint b_d);
1169 /* sink message event
1171 * FIXME: This should be in gstevent.h but can't because
1172 * it needs GstMessage and this would introduce circular
1173 * header includes. And forward declarations of typedefs
1174 * are unfortunately not possible. The implementation of
1175 * these functions is in gstevent.c.
1177 GstEvent* gst_event_new_sink_message (GstMessage *msg);
1178 void gst_event_parse_sink_message (GstEvent *event, GstMessage **msg);
1183 #endif /* __GST_UTILS_H__ */