docs: fix gtk-doc syntax for doc-blob start
[platform/upstream/gstreamer.git] / gst / gstutils.c
1 /* GStreamer
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>
5  *
6  * gstutils.c: Utility functions
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., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 /**
25  * SECTION:gstutils
26  * @short_description: Various utility functions
27  *
28  * When defining own plugins, use the GST_BOILERPLATE ease gobject creation.
29  */
30
31 #include "gst_private.h"
32 #include <stdio.h>
33 #include <string.h>
34
35 #include "gstghostpad.h"
36 #include "gstutils.h"
37 #include "gsterror.h"
38 #include "gstinfo.h"
39 #include "gstparse.h"
40 #include "gstvalue.h"
41 #include "gst-i18n-lib.h"
42 #include <math.h>
43
44 /**
45  * gst_util_dump_mem:
46  * @mem: a pointer to the memory to dump
47  * @size: the size of the memory block to dump
48  *
49  * Dumps the memory block into a hex representation. Useful for debugging.
50  */
51 void
52 gst_util_dump_mem (const guchar * mem, guint size)
53 {
54   guint i, j;
55   GString *string = g_string_sized_new (50);
56   GString *chars = g_string_sized_new (18);
57
58   i = j = 0;
59   while (i < size) {
60     if (g_ascii_isprint (mem[i]))
61       g_string_append_c (chars, mem[i]);
62     else
63       g_string_append_c (chars, '.');
64
65     g_string_append_printf (string, "%02x ", mem[i]);
66
67     j++;
68     i++;
69
70     if (j == 16 || i == size) {
71       g_print ("%08x (%p): %-48.48s %-16.16s\n", i - j, mem + i - j,
72           string->str, chars->str);
73       g_string_set_size (string, 0);
74       g_string_set_size (chars, 0);
75       j = 0;
76     }
77   }
78   g_string_free (string, TRUE);
79   g_string_free (chars, TRUE);
80 }
81
82
83 /**
84  * gst_util_set_value_from_string:
85  * @value: the value to set
86  * @value_str: the string to get the value from
87  *
88  * Converts the string to the type of the value and
89  * sets the value with it.
90  *
91  * Note that this function is dangerous as it does not return any indication
92  * if the conversion worked or not.
93  */
94 void
95 gst_util_set_value_from_string (GValue * value, const gchar * value_str)
96 {
97   gboolean res;
98
99   g_return_if_fail (value != NULL);
100   g_return_if_fail (value_str != NULL);
101
102   GST_CAT_DEBUG (GST_CAT_PARAMS, "parsing '%s' to type %s", value_str,
103       g_type_name (G_VALUE_TYPE (value)));
104
105   res = gst_value_deserialize (value, value_str);
106   if (!res && G_VALUE_TYPE (value) == G_TYPE_BOOLEAN) {
107     /* backwards compat, all booleans that fail to parse are false */
108     g_value_set_boolean (value, FALSE);
109     res = TRUE;
110   }
111   g_return_if_fail (res);
112 }
113
114 /**
115  * gst_util_set_object_arg:
116  * @object: the object to set the argument of
117  * @name: the name of the argument to set
118  * @value: the string value to set
119  *
120  * Convertes the string value to the type of the objects argument and
121  * sets the argument with it.
122  *
123  * Note that this function silently returns if @object has no property named
124  * @name or when @value cannot be converted to the type of the property.
125  */
126 void
127 gst_util_set_object_arg (GObject * object, const gchar * name,
128     const gchar * value)
129 {
130   GParamSpec *pspec;
131   GType value_type;
132   GValue v = { 0, };
133
134   g_return_if_fail (G_IS_OBJECT (object));
135   g_return_if_fail (name != NULL);
136   g_return_if_fail (value != NULL);
137
138   pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), name);
139   if (!pspec)
140     return;
141
142   value_type = G_PARAM_SPEC_VALUE_TYPE (pspec);
143
144   GST_DEBUG ("pspec->flags is %d, pspec->value_type is %s",
145       pspec->flags, g_type_name (value_type));
146
147   if (!(pspec->flags & G_PARAM_WRITABLE))
148     return;
149
150   g_value_init (&v, value_type);
151
152   /* special case for element <-> xml (de)serialisation */
153   if (GST_VALUE_HOLDS_STRUCTURE (&v) && strcmp (value, "NULL") == 0) {
154     g_value_set_boxed (&v, NULL);
155     goto done;
156   }
157
158   if (!gst_value_deserialize (&v, value))
159     return;
160
161 done:
162
163   g_object_set_property (object, pspec->name, &v);
164   g_value_unset (&v);
165 }
166
167 /* work around error C2520: conversion from unsigned __int64 to double
168  * not implemented, use signed __int64
169  *
170  * These are implemented as functions because on some platforms a 64bit int to
171  * double conversion is not defined/implemented.
172  */
173
174 gdouble
175 gst_util_guint64_to_gdouble (guint64 value)
176 {
177   if (value & G_GINT64_CONSTANT (0x8000000000000000))
178     return (gdouble) ((gint64) value) + (gdouble) 18446744073709551616.;
179   else
180     return (gdouble) ((gint64) value);
181 }
182
183 guint64
184 gst_util_gdouble_to_guint64 (gdouble value)
185 {
186   if (value < (gdouble) 9223372036854775808.)   /* 1 << 63 */
187     return ((guint64) ((gint64) value));
188
189   value -= (gdouble) 18446744073709551616.;
190   return ((guint64) ((gint64) value));
191 }
192
193 #ifndef HAVE_UINT128_T
194 /* convenience struct for getting high and low uint32 parts of
195  * a guint64 */
196 typedef union
197 {
198   guint64 ll;
199   struct
200   {
201 #if G_BYTE_ORDER == G_BIG_ENDIAN
202     guint32 high, low;
203 #else
204     guint32 low, high;
205 #endif
206   } l;
207 } GstUInt64;
208
209 #if defined (__x86_64__) && defined (__GNUC__)
210 static inline void
211 gst_util_uint64_mul_uint64 (GstUInt64 * c1, GstUInt64 * c0, guint64 arg1,
212     guint64 arg2)
213 {
214   __asm__ __volatile__ ("mul %3":"=a" (c0->ll), "=d" (c1->ll)
215       :"a" (arg1), "g" (arg2)
216       );
217 }
218 #else /* defined (__x86_64__) */
219 /* multiply two 64-bit unsigned ints into a 128-bit unsigned int.  the high
220  * and low 64 bits of the product are placed in c1 and c0 respectively.
221  * this operation cannot overflow. */
222 static inline void
223 gst_util_uint64_mul_uint64 (GstUInt64 * c1, GstUInt64 * c0, guint64 arg1,
224     guint64 arg2)
225 {
226   GstUInt64 a1, b0;
227   GstUInt64 v, n;
228
229   /* prepare input */
230   v.ll = arg1;
231   n.ll = arg2;
232
233   /* do 128 bits multiply
234    *                   nh   nl
235    *                *  vh   vl
236    *                ----------
237    * a0 =              vl * nl
238    * a1 =         vl * nh
239    * b0 =         vh * nl
240    * b1 =  + vh * nh
241    *       -------------------
242    *        c1h  c1l  c0h  c0l
243    *
244    * "a0" is optimized away, result is stored directly in c0.  "b1" is
245    * optimized away, result is stored directly in c1.
246    */
247   c0->ll = (guint64) v.l.low * n.l.low;
248   a1.ll = (guint64) v.l.low * n.l.high;
249   b0.ll = (guint64) v.l.high * n.l.low;
250
251   /* add the high word of a0 to the low words of a1 and b0 using c1 as
252    * scrach space to capture the carry.  the low word of the result becomes
253    * the final high word of c0 */
254   c1->ll = (guint64) c0->l.high + a1.l.low + b0.l.low;
255   c0->l.high = c1->l.low;
256
257   /* add the carry from the result above (found in the high word of c1) and
258    * the high words of a1 and b0 to b1, the result is c1. */
259   c1->ll = (guint64) v.l.high * n.l.high + c1->l.high + a1.l.high + b0.l.high;
260 }
261 #endif /* defined (__x86_64__) */
262
263 #if defined (__x86_64__) && defined (__GNUC__)
264 static inline guint64
265 gst_util_div128_64 (GstUInt64 c1, GstUInt64 c0, guint64 denom)
266 {
267   guint64 res;
268
269   __asm__ __volatile__ ("divq %3":"=a" (res)
270       :"d" (c1.ll), "a" (c0.ll), "g" (denom)
271       );
272
273   return res;
274 }
275 #else
276 /* count leading zeros */
277 static inline guint
278 gst_util_clz (guint32 val)
279 {
280   guint s;
281
282   s = val | (val >> 1);
283   s |= (s >> 2);
284   s |= (s >> 4);
285   s |= (s >> 8);
286   s = ~(s | (s >> 16));
287   s = s - ((s >> 1) & 0x55555555);
288   s = (s & 0x33333333) + ((s >> 2) & 0x33333333);
289   s = (s + (s >> 4)) & 0x0f0f0f0f;
290   s += (s >> 8);
291   s = (s + (s >> 16)) & 0x3f;
292
293   return s;
294 }
295
296 /* based on Hacker's Delight p152 */
297 static inline guint64
298 gst_util_div128_64 (GstUInt64 c1, GstUInt64 c0, guint64 denom)
299 {
300   GstUInt64 q1, q0, rhat;
301   GstUInt64 v, cmp1, cmp2;
302   guint s;
303
304   v.ll = denom;
305
306   /* count number of leading zeroes, we know they must be in the high
307    * part of denom since denom > G_MAXUINT32. */
308   s = gst_util_clz (v.l.high);
309
310   if (s > 0) {
311     /* normalize divisor and dividend */
312     v.ll <<= s;
313     c1.ll = (c1.ll << s) | (c0.l.high >> (32 - s));
314     c0.ll <<= s;
315   }
316
317   q1.ll = c1.ll / v.l.high;
318   rhat.ll = c1.ll - q1.ll * v.l.high;
319
320   cmp1.l.high = rhat.l.low;
321   cmp1.l.low = c0.l.high;
322   cmp2.ll = q1.ll * v.l.low;
323
324   while (q1.l.high || cmp2.ll > cmp1.ll) {
325     q1.ll--;
326     rhat.ll += v.l.high;
327     if (rhat.l.high)
328       break;
329     cmp1.l.high = rhat.l.low;
330     cmp2.ll -= v.l.low;
331   }
332   c1.l.high = c1.l.low;
333   c1.l.low = c0.l.high;
334   c1.ll -= q1.ll * v.ll;
335   q0.ll = c1.ll / v.l.high;
336   rhat.ll = c1.ll - q0.ll * v.l.high;
337
338   cmp1.l.high = rhat.l.low;
339   cmp1.l.low = c0.l.low;
340   cmp2.ll = q0.ll * v.l.low;
341
342   while (q0.l.high || cmp2.ll > cmp1.ll) {
343     q0.ll--;
344     rhat.ll += v.l.high;
345     if (rhat.l.high)
346       break;
347     cmp1.l.high = rhat.l.low;
348     cmp2.ll -= v.l.low;
349   }
350   q0.l.high += q1.l.low;
351
352   return q0.ll;
353 }
354 #endif /* defined (__GNUC__) */
355
356 /* This always gives the correct result because:
357  * a) val <= G_MAXUINT64-1
358  * b) (c0,c1) <= G_MAXUINT64 * (G_MAXUINT64-1)
359  *    or
360  *    (c0,c1) == G_MAXUINT64 * G_MAXUINT64 and denom < G_MAXUINT64
361  *    (note: num==denom case is handled by short path)
362  * This means that (c0,c1) either has enough space for val
363  * or that the overall result will overflow anyway.
364  */
365
366 /* add correction with carry */
367 #define CORRECT(c0,c1,val)                    \
368   if (val) {                                  \
369     if (G_MAXUINT64 - c0.ll < val) {          \
370       if (G_UNLIKELY (c1.ll == G_MAXUINT64))  \
371         /* overflow */                        \
372         return G_MAXUINT64;                   \
373       c1.ll++;                                \
374     }                                         \
375     c0.ll += val;                             \
376   }
377
378 static guint64
379 gst_util_uint64_scale_uint64_unchecked (guint64 val, guint64 num,
380     guint64 denom, guint64 correct)
381 {
382   GstUInt64 c1, c0;
383
384   /* compute 128-bit numerator product */
385   gst_util_uint64_mul_uint64 (&c1, &c0, val, num);
386
387   /* perform rounding correction */
388   CORRECT (c0, c1, correct);
389
390   /* high word as big as or bigger than denom --> overflow */
391   if (G_UNLIKELY (c1.ll >= denom))
392     return G_MAXUINT64;
393
394   /* compute quotient, fits in 64 bits */
395   return gst_util_div128_64 (c1, c0, denom);
396 }
397 #else
398
399 #define GST_MAXUINT128 ((__uint128_t) -1)
400 static guint64
401 gst_util_uint64_scale_uint64_unchecked (guint64 val, guint64 num,
402     guint64 denom, guint64 correct)
403 {
404   __uint128_t tmp;
405
406   /* Calculate val * num */
407   tmp = ((__uint128_t) val) * ((__uint128_t) num);
408
409   /* overflow checks */
410   if (G_UNLIKELY (GST_MAXUINT128 - correct < tmp))
411     return G_MAXUINT64;
412
413   /* perform rounding correction */
414   tmp += correct;
415
416   /* Divide by denom */
417   tmp /= denom;
418
419   /* if larger than G_MAXUINT64 --> overflow */
420   if (G_UNLIKELY (tmp > G_MAXUINT64))
421     return G_MAXUINT64;
422
423   /* compute quotient, fits in 64 bits */
424   return (guint64) tmp;
425 }
426
427 #endif
428
429 #if !defined (__x86_64__) && !defined (HAVE_UINT128_T)
430 static inline void
431 gst_util_uint64_mul_uint32 (GstUInt64 * c1, GstUInt64 * c0, guint64 arg1,
432     guint32 arg2)
433 {
434   GstUInt64 a;
435
436   a.ll = arg1;
437
438   c0->ll = (guint64) a.l.low * arg2;
439   c1->ll = (guint64) a.l.high * arg2 + c0->l.high;
440   c0->l.high = 0;
441 }
442
443 /* divide a 96-bit unsigned int by a 32-bit unsigned int when we know the
444  * quotient fits into 64 bits.  the high 64 bits and low 32 bits of the
445  * numerator are expected in c1 and c0 respectively. */
446 static inline guint64
447 gst_util_div96_32 (guint64 c1, guint64 c0, guint32 denom)
448 {
449   c0 += (c1 % denom) << 32;
450   return ((c1 / denom) << 32) + (c0 / denom);
451 }
452
453 static inline guint64
454 gst_util_uint64_scale_uint32_unchecked (guint64 val, guint32 num,
455     guint32 denom, guint32 correct)
456 {
457   GstUInt64 c1, c0;
458
459   /* compute 96-bit numerator product */
460   gst_util_uint64_mul_uint32 (&c1, &c0, val, num);
461
462   /* condition numerator based on rounding mode */
463   CORRECT (c0, c1, correct);
464
465   /* high 32 bits as big as or bigger than denom --> overflow */
466   if (G_UNLIKELY (c1.l.high >= denom))
467     return G_MAXUINT64;
468
469   /* compute quotient, fits in 64 bits */
470   return gst_util_div96_32 (c1.ll, c0.ll, denom);
471 }
472 #endif
473
474 /* the guts of the gst_util_uint64_scale() variants */
475 static guint64
476 _gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom,
477     guint64 correct)
478 {
479   g_return_val_if_fail (denom != 0, G_MAXUINT64);
480
481   if (G_UNLIKELY (num == 0))
482     return 0;
483
484   if (G_UNLIKELY (num == denom))
485     return val;
486
487   /* on 64bits we always use a full 128bits multipy/division */
488 #if !defined (__x86_64__) && !defined (HAVE_UINT128_T)
489   /* denom is low --> try to use 96 bit muldiv */
490   if (G_LIKELY (denom <= G_MAXUINT32)) {
491     /* num is low --> use 96 bit muldiv */
492     if (G_LIKELY (num <= G_MAXUINT32))
493       return gst_util_uint64_scale_uint32_unchecked (val, (guint32) num,
494           (guint32) denom, correct);
495
496     /* num is high but val is low --> swap and use 96-bit muldiv */
497     if (G_LIKELY (val <= G_MAXUINT32))
498       return gst_util_uint64_scale_uint32_unchecked (num, (guint32) val,
499           (guint32) denom, correct);
500   }
501 #endif /* !defined (__x86_64__) && !defined (HAVE_UINT128_T) */
502
503   /* val is high and num is high --> use 128-bit muldiv */
504   return gst_util_uint64_scale_uint64_unchecked (val, num, denom, correct);
505 }
506
507 /**
508  * gst_util_uint64_scale:
509  * @val: the number to scale
510  * @num: the numerator of the scale ratio
511  * @denom: the denominator of the scale ratio
512  *
513  * Scale @val by the rational number @num / @denom, avoiding overflows and
514  * underflows and without loss of precision.
515  *
516  * This function can potentially be very slow if val and num are both
517  * greater than G_MAXUINT32.
518  *
519  * Returns: @val * @num / @denom.  In the case of an overflow, this
520  * function returns G_MAXUINT64.  If the result is not exactly
521  * representable as an integer it is truncated.  See also
522  * gst_util_uint64_scale_round(), gst_util_uint64_scale_ceil(),
523  * gst_util_uint64_scale_int(), gst_util_uint64_scale_int_round(),
524  * gst_util_uint64_scale_int_ceil().
525  */
526 guint64
527 gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom)
528 {
529   return _gst_util_uint64_scale (val, num, denom, 0);
530 }
531
532 /**
533  * gst_util_uint64_scale_round:
534  * @val: the number to scale
535  * @num: the numerator of the scale ratio
536  * @denom: the denominator of the scale ratio
537  *
538  * Scale @val by the rational number @num / @denom, avoiding overflows and
539  * underflows and without loss of precision.
540  *
541  * This function can potentially be very slow if val and num are both
542  * greater than G_MAXUINT32.
543  *
544  * Returns: @val * @num / @denom.  In the case of an overflow, this
545  * function returns G_MAXUINT64.  If the result is not exactly
546  * representable as an integer, it is rounded to the nearest integer
547  * (half-way cases are rounded up).  See also gst_util_uint64_scale(),
548  * gst_util_uint64_scale_ceil(), gst_util_uint64_scale_int(),
549  * gst_util_uint64_scale_int_round(), gst_util_uint64_scale_int_ceil().
550  */
551 guint64
552 gst_util_uint64_scale_round (guint64 val, guint64 num, guint64 denom)
553 {
554   return _gst_util_uint64_scale (val, num, denom, denom >> 1);
555 }
556
557 /**
558  * gst_util_uint64_scale_ceil:
559  * @val: the number to scale
560  * @num: the numerator of the scale ratio
561  * @denom: the denominator of the scale ratio
562  *
563  * Scale @val by the rational number @num / @denom, avoiding overflows and
564  * underflows and without loss of precision.
565  *
566  * This function can potentially be very slow if val and num are both
567  * greater than G_MAXUINT32.
568  *
569  * Returns: @val * @num / @denom.  In the case of an overflow, this
570  * function returns G_MAXUINT64.  If the result is not exactly
571  * representable as an integer, it is rounded up.  See also
572  * gst_util_uint64_scale(), gst_util_uint64_scale_round(),
573  * gst_util_uint64_scale_int(), gst_util_uint64_scale_int_round(),
574  * gst_util_uint64_scale_int_ceil().
575  */
576 guint64
577 gst_util_uint64_scale_ceil (guint64 val, guint64 num, guint64 denom)
578 {
579   return _gst_util_uint64_scale (val, num, denom, denom - 1);
580 }
581
582 /* the guts of the gst_util_uint64_scale_int() variants */
583 static guint64
584 _gst_util_uint64_scale_int (guint64 val, gint num, gint denom, gint correct)
585 {
586   g_return_val_if_fail (denom > 0, G_MAXUINT64);
587   g_return_val_if_fail (num >= 0, G_MAXUINT64);
588
589   if (G_UNLIKELY (num == 0))
590     return 0;
591
592   if (G_UNLIKELY (num == denom))
593     return val;
594
595   if (val <= G_MAXUINT32) {
596     /* simple case.  num and denom are not negative so casts are OK.  when
597      * not truncating, the additions to the numerator cannot overflow
598      * because val*num <= G_MAXUINT32 * G_MAXINT32 < G_MAXUINT64 -
599      * G_MAXINT32, so there's room to add another gint32. */
600     val *= (guint64) num;
601     /* add rounding correction */
602     val += correct;
603
604     return val / (guint64) denom;
605   }
606 #if !defined (__x86_64__) && !defined (HAVE_UINT128_T)
607   /* num and denom are not negative so casts are OK */
608   return gst_util_uint64_scale_uint32_unchecked (val, (guint32) num,
609       (guint32) denom, (guint32) correct);
610 #else
611   /* always use full 128bits scale */
612   return gst_util_uint64_scale_uint64_unchecked (val, num, denom, correct);
613 #endif
614 }
615
616 /**
617  * gst_util_uint64_scale_int:
618  * @val: guint64 (such as a #GstClockTime) to scale.
619  * @num: numerator of the scale factor.
620  * @denom: denominator of the scale factor.
621  *
622  * Scale @val by the rational number @num / @denom, avoiding overflows and
623  * underflows and without loss of precision.  @num must be non-negative and
624  * @denom must be positive.
625  *
626  * Returns: @val * @num / @denom.  In the case of an overflow, this
627  * function returns G_MAXUINT64.  If the result is not exactly
628  * representable as an integer, it is truncated.  See also
629  * gst_util_uint64_scale_int_round(), gst_util_uint64_scale_int_ceil(),
630  * gst_util_uint64_scale(), gst_util_uint64_scale_round(),
631  * gst_util_uint64_scale_ceil().
632  */
633 guint64
634 gst_util_uint64_scale_int (guint64 val, gint num, gint denom)
635 {
636   return _gst_util_uint64_scale_int (val, num, denom, 0);
637 }
638
639 /**
640  * gst_util_uint64_scale_int_round:
641  * @val: guint64 (such as a #GstClockTime) to scale.
642  * @num: numerator of the scale factor.
643  * @denom: denominator of the scale factor.
644  *
645  * Scale @val by the rational number @num / @denom, avoiding overflows and
646  * underflows and without loss of precision.  @num must be non-negative and
647  * @denom must be positive.
648  *
649  * Returns: @val * @num / @denom.  In the case of an overflow, this
650  * function returns G_MAXUINT64.  If the result is not exactly
651  * representable as an integer, it is rounded to the nearest integer
652  * (half-way cases are rounded up).  See also gst_util_uint64_scale_int(),
653  * gst_util_uint64_scale_int_ceil(), gst_util_uint64_scale(),
654  * gst_util_uint64_scale_round(), gst_util_uint64_scale_ceil().
655  */
656 guint64
657 gst_util_uint64_scale_int_round (guint64 val, gint num, gint denom)
658 {
659   /* we can use a shift to divide by 2 because denom is required to be
660    * positive. */
661   return _gst_util_uint64_scale_int (val, num, denom, denom >> 1);
662 }
663
664 /**
665  * gst_util_uint64_scale_int_ceil:
666  * @val: guint64 (such as a #GstClockTime) to scale.
667  * @num: numerator of the scale factor.
668  * @denom: denominator of the scale factor.
669  *
670  * Scale @val by the rational number @num / @denom, avoiding overflows and
671  * underflows and without loss of precision.  @num must be non-negative and
672  * @denom must be positive.
673  *
674  * Returns: @val * @num / @denom.  In the case of an overflow, this
675  * function returns G_MAXUINT64.  If the result is not exactly
676  * representable as an integer, it is rounded up.  See also
677  * gst_util_uint64_scale_int(), gst_util_uint64_scale_int_round(),
678  * gst_util_uint64_scale(), gst_util_uint64_scale_round(),
679  * gst_util_uint64_scale_ceil().
680  */
681 guint64
682 gst_util_uint64_scale_int_ceil (guint64 val, gint num, gint denom)
683 {
684   return _gst_util_uint64_scale_int (val, num, denom, denom - 1);
685 }
686
687 /**
688  * gst_util_seqnum_next:
689  *
690  * Return a constantly incrementing sequence number.
691  *
692  * This function is used internally to GStreamer to be able to determine which
693  * events and messages are "the same". For example, elements may set the seqnum
694  * on a segment-done message to be the same as that of the last seek event, to
695  * indicate that event and the message correspond to the same segment.
696  *
697  * Returns: A constantly incrementing 32-bit unsigned integer, which might
698  * overflow back to 0 at some point. Use gst_util_seqnum_compare() to make sure
699  * you handle wraparound correctly.
700  *
701  * Since: 0.10.22
702  */
703 guint32
704 gst_util_seqnum_next (void)
705 {
706   static gint counter = 0;
707   return g_atomic_int_exchange_and_add (&counter, 1);
708 }
709
710 /**
711  * gst_util_seqnum_compare:
712  * @s1: A sequence number.
713  * @s2: Another sequence number.
714  *
715  * Compare two sequence numbers, handling wraparound.
716  *
717  * The current implementation just returns (gint32)(@s1 - @s2).
718  *
719  * Returns: A negative number if @s1 is before @s2, 0 if they are equal, or a
720  * positive number if @s1 is after @s2.
721  *
722  * Since: 0.10.22
723  */
724 gint32
725 gst_util_seqnum_compare (guint32 s1, guint32 s2)
726 {
727   return (gint32) (s1 - s2);
728 }
729
730 /* -----------------------------------------------------
731  *
732  *  The following code will be moved out of the main
733  * gstreamer library someday.
734  */
735
736 #include "gstpad.h"
737
738 static void
739 string_append_indent (GString * str, gint count)
740 {
741   gint xx;
742
743   for (xx = 0; xx < count; xx++)
744     g_string_append_c (str, ' ');
745 }
746
747 /**
748  * gst_print_pad_caps:
749  * @buf: the buffer to print the caps in
750  * @indent: initial indentation
751  * @pad: the pad to print the caps from
752  *
753  * Write the pad capabilities in a human readable format into
754  * the given GString.
755  */
756 void
757 gst_print_pad_caps (GString * buf, gint indent, GstPad * pad)
758 {
759   GstCaps *caps;
760
761   caps = pad->caps;
762
763   if (!caps) {
764     string_append_indent (buf, indent);
765     g_string_printf (buf, "%s:%s has no capabilities",
766         GST_DEBUG_PAD_NAME (pad));
767   } else {
768     char *s;
769
770     s = gst_caps_to_string (caps);
771     g_string_append (buf, s);
772     g_free (s);
773   }
774 }
775
776 /**
777  * gst_print_element_args:
778  * @buf: the buffer to print the args in
779  * @indent: initial indentation
780  * @element: the element to print the args of
781  *
782  * Print the element argument in a human readable format in the given
783  * GString.
784  */
785 void
786 gst_print_element_args (GString * buf, gint indent, GstElement * element)
787 {
788   guint width;
789   GValue value = { 0, };        /* the important thing is that value.type = 0 */
790   gchar *str = NULL;
791   GParamSpec *spec, **specs, **walk;
792
793   specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element), NULL);
794
795   width = 0;
796   for (walk = specs; *walk; walk++) {
797     spec = *walk;
798     if (width < strlen (spec->name))
799       width = strlen (spec->name);
800   }
801
802   for (walk = specs; *walk; walk++) {
803     spec = *walk;
804
805     if (spec->flags & G_PARAM_READABLE) {
806       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (spec));
807       g_object_get_property (G_OBJECT (element), spec->name, &value);
808       str = g_strdup_value_contents (&value);
809       g_value_unset (&value);
810     } else {
811       str = g_strdup ("Parameter not readable.");
812     }
813
814     string_append_indent (buf, indent);
815     g_string_append (buf, spec->name);
816     string_append_indent (buf, 2 + width - strlen (spec->name));
817     g_string_append (buf, str);
818     g_string_append_c (buf, '\n');
819
820     g_free (str);
821   }
822
823   g_free (specs);
824 }
825
826 /**
827  * gst_element_create_all_pads:
828  * @element: a #GstElement to create pads for
829  *
830  * Creates a pad for each pad template that is always available.
831  * This function is only useful during object intialization of
832  * subclasses of #GstElement.
833  */
834 void
835 gst_element_create_all_pads (GstElement * element)
836 {
837   GList *padlist;
838
839   /* FIXME: lock element */
840
841   padlist =
842       gst_element_class_get_pad_template_list (GST_ELEMENT_CLASS
843       (G_OBJECT_GET_CLASS (element)));
844
845   while (padlist) {
846     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
847
848     if (padtempl->presence == GST_PAD_ALWAYS) {
849       GstPad *pad;
850
851       pad = gst_pad_new_from_template (padtempl, padtempl->name_template);
852
853       gst_element_add_pad (element, pad);
854     }
855     padlist = padlist->next;
856   }
857 }
858
859 /**
860  * gst_element_get_compatible_pad_template:
861  * @element: a #GstElement to get a compatible pad template for.
862  * @compattempl: the #GstPadTemplate to find a compatible template for.
863  *
864  * Retrieves a pad template from @element that is compatible with @compattempl.
865  * Pads from compatible templates can be linked together.
866  *
867  * Returns: a compatible #GstPadTemplate, or NULL if none was found. No
868  * unreferencing is necessary.
869  */
870 GstPadTemplate *
871 gst_element_get_compatible_pad_template (GstElement * element,
872     GstPadTemplate * compattempl)
873 {
874   GstPadTemplate *newtempl = NULL;
875   GList *padlist;
876   GstElementClass *class;
877   gboolean compatible;
878
879   g_return_val_if_fail (element != NULL, NULL);
880   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
881   g_return_val_if_fail (compattempl != NULL, NULL);
882
883   class = GST_ELEMENT_GET_CLASS (element);
884
885   padlist = gst_element_class_get_pad_template_list (class);
886
887   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
888       "Looking for a suitable pad template in %s out of %d templates...",
889       GST_ELEMENT_NAME (element), g_list_length (padlist));
890
891   while (padlist) {
892     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
893
894     /* Ignore name
895      * Ignore presence
896      * Check direction (must be opposite)
897      * Check caps
898      */
899     GST_CAT_LOG (GST_CAT_CAPS,
900         "checking pad template %s", padtempl->name_template);
901     if (padtempl->direction != compattempl->direction) {
902       GST_CAT_DEBUG (GST_CAT_CAPS,
903           "compatible direction: found %s pad template \"%s\"",
904           padtempl->direction == GST_PAD_SRC ? "src" : "sink",
905           padtempl->name_template);
906
907       GST_CAT_DEBUG (GST_CAT_CAPS,
908           "intersecting %" GST_PTR_FORMAT, GST_PAD_TEMPLATE_CAPS (compattempl));
909       GST_CAT_DEBUG (GST_CAT_CAPS,
910           "..and %" GST_PTR_FORMAT, GST_PAD_TEMPLATE_CAPS (padtempl));
911
912       compatible = gst_caps_can_intersect (GST_PAD_TEMPLATE_CAPS (compattempl),
913           GST_PAD_TEMPLATE_CAPS (padtempl));
914
915       GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
916           (compatible ? "" : "not "));
917
918       if (compatible) {
919         newtempl = padtempl;
920         break;
921       }
922     }
923
924     padlist = g_list_next (padlist);
925   }
926   if (newtempl)
927     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
928         "Returning new pad template %p", newtempl);
929   else
930     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "No compatible pad template found");
931
932   return newtempl;
933 }
934
935 static GstPad *
936 gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
937     const gchar * name)
938 {
939   GstPad *newpad = NULL;
940   GstElementClass *oclass;
941
942   oclass = GST_ELEMENT_GET_CLASS (element);
943
944   if (oclass->request_new_pad)
945     newpad = (oclass->request_new_pad) (element, templ, name);
946
947   if (newpad)
948     gst_object_ref (newpad);
949
950   return newpad;
951 }
952
953
954
955 /**
956  * gst_element_get_pad_from_template:
957  * @element: a #GstElement.
958  * @templ: a #GstPadTemplate belonging to @element.
959  *
960  * Gets a pad from @element described by @templ. If the presence of @templ is
961  * #GST_PAD_REQUEST, requests a new pad. Can return %NULL for #GST_PAD_SOMETIMES
962  * templates.
963  *
964  * Returns: the #GstPad, or NULL if one could not be found or created.
965  */
966 static GstPad *
967 gst_element_get_pad_from_template (GstElement * element, GstPadTemplate * templ)
968 {
969   GstPad *ret = NULL;
970   GstPadPresence presence;
971
972   /* If this function is ever exported, we need check the validity of `element'
973    * and `templ', and to make sure the template actually belongs to the
974    * element. */
975
976   presence = GST_PAD_TEMPLATE_PRESENCE (templ);
977
978   switch (presence) {
979     case GST_PAD_ALWAYS:
980     case GST_PAD_SOMETIMES:
981       ret = gst_element_get_static_pad (element, templ->name_template);
982       if (!ret && presence == GST_PAD_ALWAYS)
983         g_warning
984             ("Element %s has an ALWAYS template %s, but no pad of the same name",
985             GST_OBJECT_NAME (element), templ->name_template);
986       break;
987
988     case GST_PAD_REQUEST:
989       ret = gst_element_request_pad (element, templ, NULL);
990       break;
991   }
992
993   return ret;
994 }
995
996 /**
997  * gst_element_request_compatible_pad:
998  * @element: a #GstElement.
999  * @templ: the #GstPadTemplate to which the new pad should be able to link.
1000  *
1001  * Requests a pad from @element. The returned pad should be unlinked and
1002  * compatible with @templ. Might return an existing pad, or request a new one.
1003  *
1004  * Returns: a #GstPad, or %NULL if one could not be found or created.
1005  */
1006 GstPad *
1007 gst_element_request_compatible_pad (GstElement * element,
1008     GstPadTemplate * templ)
1009 {
1010   GstPadTemplate *templ_new;
1011   GstPad *pad = NULL;
1012
1013   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1014   g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
1015
1016   /* FIXME: should really loop through the templates, testing each for
1017    *      compatibility and pad availability. */
1018   templ_new = gst_element_get_compatible_pad_template (element, templ);
1019   if (templ_new)
1020     pad = gst_element_get_pad_from_template (element, templ_new);
1021
1022   /* This can happen for non-request pads. No need to unref. */
1023   if (pad && GST_PAD_PEER (pad))
1024     pad = NULL;
1025
1026   return pad;
1027 }
1028
1029 /*
1030  * Checks if the source pad and the sink pad can be linked.
1031  * Both @srcpad and @sinkpad must be unlinked and have a parent.
1032  */
1033 static gboolean
1034 gst_pad_check_link (GstPad * srcpad, GstPad * sinkpad)
1035 {
1036   /* FIXME This function is gross.  It's almost a direct copy of
1037    * gst_pad_link_filtered().  Any decent programmer would attempt
1038    * to merge the two functions, which I will do some day. --ds
1039    */
1040
1041   /* generic checks */
1042   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1043   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1044
1045   GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1046       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1047
1048   /* FIXME: shouldn't we convert this to g_return_val_if_fail? */
1049   if (GST_PAD_PEER (srcpad) != NULL) {
1050     GST_CAT_INFO (GST_CAT_PADS, "Source pad %s:%s has a peer, failed",
1051         GST_DEBUG_PAD_NAME (srcpad));
1052     return FALSE;
1053   }
1054   if (GST_PAD_PEER (sinkpad) != NULL) {
1055     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s has a peer, failed",
1056         GST_DEBUG_PAD_NAME (sinkpad));
1057     return FALSE;
1058   }
1059   if (!GST_PAD_IS_SRC (srcpad)) {
1060     GST_CAT_INFO (GST_CAT_PADS, "Src pad %s:%s is not source pad, failed",
1061         GST_DEBUG_PAD_NAME (srcpad));
1062     return FALSE;
1063   }
1064   if (!GST_PAD_IS_SINK (sinkpad)) {
1065     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s is not sink pad, failed",
1066         GST_DEBUG_PAD_NAME (sinkpad));
1067     return FALSE;
1068   }
1069   if (GST_PAD_PARENT (srcpad) == NULL) {
1070     GST_CAT_INFO (GST_CAT_PADS, "Src pad %s:%s has no parent, failed",
1071         GST_DEBUG_PAD_NAME (srcpad));
1072     return FALSE;
1073   }
1074   if (GST_PAD_PARENT (sinkpad) == NULL) {
1075     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s has no parent, failed",
1076         GST_DEBUG_PAD_NAME (srcpad));
1077     return FALSE;
1078   }
1079
1080   return TRUE;
1081 }
1082
1083 /**
1084  * gst_element_get_compatible_pad:
1085  * @element: a #GstElement in which the pad should be found.
1086  * @pad: the #GstPad to find a compatible one for.
1087  * @caps: the #GstCaps to use as a filter.
1088  *
1089  * Looks for an unlinked pad to which the given pad can link. It is not
1090  * guaranteed that linking the pads will work, though it should work in most
1091  * cases.
1092  *
1093  * Returns: the #GstPad to which a link can be made, or %NULL if one cannot be
1094  * found. gst_object_unref() after usage.
1095  */
1096 GstPad *
1097 gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
1098     const GstCaps * caps)
1099 {
1100   GstIterator *pads;
1101   GstPadTemplate *templ;
1102   GstCaps *templcaps;
1103   GstPad *foundpad = NULL;
1104   gboolean done;
1105
1106   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
1107   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
1108
1109   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1110       "finding pad in %s compatible with %s:%s",
1111       GST_ELEMENT_NAME (element), GST_DEBUG_PAD_NAME (pad));
1112
1113   g_return_val_if_fail (GST_PAD_PEER (pad) == NULL, NULL);
1114
1115   done = FALSE;
1116   /* try to get an existing unlinked pad */
1117   pads = gst_element_iterate_pads (element);
1118   while (!done) {
1119     gpointer padptr;
1120
1121     switch (gst_iterator_next (pads, &padptr)) {
1122       case GST_ITERATOR_OK:
1123       {
1124         GstPad *peer;
1125         GstPad *current;
1126
1127         current = GST_PAD (padptr);
1128
1129         GST_CAT_LOG (GST_CAT_ELEMENT_PADS, "examining pad %s:%s",
1130             GST_DEBUG_PAD_NAME (current));
1131
1132         peer = gst_pad_get_peer (current);
1133
1134         if (peer == NULL && gst_pad_check_link (pad, current)) {
1135           GstCaps *temp, *intersection;
1136           gboolean compatible;
1137
1138           /* Now check if the two pads' caps are compatible */
1139           temp = gst_pad_get_caps (pad);
1140           if (caps) {
1141             intersection = gst_caps_intersect (temp, caps);
1142             gst_caps_unref (temp);
1143           } else {
1144             intersection = temp;
1145           }
1146
1147           temp = gst_pad_get_caps (current);
1148           compatible = gst_caps_can_intersect (temp, intersection);
1149           gst_caps_unref (temp);
1150           gst_caps_unref (intersection);
1151
1152           if (compatible) {
1153             GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1154                 "found existing unlinked compatible pad %s:%s",
1155                 GST_DEBUG_PAD_NAME (current));
1156             gst_iterator_free (pads);
1157
1158             return current;
1159           } else {
1160             GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "incompatible pads");
1161           }
1162         } else {
1163           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1164               "already linked or cannot be linked (peer = %p)", peer);
1165         }
1166         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unreffing pads");
1167
1168         gst_object_unref (current);
1169         if (peer)
1170           gst_object_unref (peer);
1171         break;
1172       }
1173       case GST_ITERATOR_DONE:
1174         done = TRUE;
1175         break;
1176       case GST_ITERATOR_RESYNC:
1177         gst_iterator_resync (pads);
1178         break;
1179       case GST_ITERATOR_ERROR:
1180         g_assert_not_reached ();
1181         break;
1182     }
1183   }
1184   gst_iterator_free (pads);
1185
1186   GST_CAT_DEBUG_OBJECT (GST_CAT_ELEMENT_PADS, element,
1187       "Could not find a compatible unlinked always pad to link to %s:%s, now checking request pads",
1188       GST_DEBUG_PAD_NAME (pad));
1189
1190   /* try to create a new one */
1191   /* requesting is a little crazy, we need a template. Let's create one */
1192   /* FIXME: why not gst_pad_get_pad_template (pad); */
1193   templcaps = gst_pad_get_caps (pad);
1194
1195   templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
1196       GST_PAD_DIRECTION (pad), GST_PAD_ALWAYS, templcaps);
1197
1198   foundpad = gst_element_request_compatible_pad (element, templ);
1199   gst_object_unref (templ);
1200
1201   if (foundpad) {
1202     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1203         "found existing request pad %s:%s", GST_DEBUG_PAD_NAME (foundpad));
1204     return foundpad;
1205   }
1206
1207   GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element,
1208       "Could not find a compatible pad to link to %s:%s",
1209       GST_DEBUG_PAD_NAME (pad));
1210   return NULL;
1211 }
1212
1213 /**
1214  * gst_element_state_get_name:
1215  * @state: a #GstState to get the name of.
1216  *
1217  * Gets a string representing the given state.
1218  *
1219  * Returns: a string with the name of the state.
1220  */
1221 G_CONST_RETURN gchar *
1222 gst_element_state_get_name (GstState state)
1223 {
1224   switch (state) {
1225 #ifdef GST_DEBUG_COLOR
1226     case GST_STATE_VOID_PENDING:
1227       return "VOID_PENDING";
1228     case GST_STATE_NULL:
1229       return "\033[01;34mNULL\033[00m";
1230     case GST_STATE_READY:
1231       return "\033[01;31mREADY\033[00m";
1232     case GST_STATE_PLAYING:
1233       return "\033[01;32mPLAYING\033[00m";
1234     case GST_STATE_PAUSED:
1235       return "\033[01;33mPAUSED\033[00m";
1236     default:
1237       /* This is a memory leak */
1238       return g_strdup_printf ("\033[01;35;41mUNKNOWN!\033[00m(%d)", state);
1239 #else
1240     case GST_STATE_VOID_PENDING:
1241       return "VOID_PENDING";
1242     case GST_STATE_NULL:
1243       return "NULL";
1244     case GST_STATE_READY:
1245       return "READY";
1246     case GST_STATE_PLAYING:
1247       return "PLAYING";
1248     case GST_STATE_PAUSED:
1249       return "PAUSED";
1250     default:
1251       /* This is a memory leak */
1252       return g_strdup_printf ("UNKNOWN!(%d)", state);
1253 #endif
1254   }
1255 }
1256
1257 /**
1258  * gst_element_state_change_return_get_name:
1259  * @state_ret: a #GstStateChangeReturn to get the name of.
1260  *
1261  * Gets a string representing the given state change result.
1262  *
1263  * Returns: a string with the name of the state change result.
1264  *
1265  * Since: 0.10.11
1266  */
1267 G_CONST_RETURN gchar *
1268 gst_element_state_change_return_get_name (GstStateChangeReturn state_ret)
1269 {
1270   switch (state_ret) {
1271 #ifdef GST_DEBUG_COLOR
1272     case GST_STATE_CHANGE_FAILURE:
1273       return "\033[01;31mFAILURE\033[00m";
1274     case GST_STATE_CHANGE_SUCCESS:
1275       return "\033[01;32mSUCCESS\033[00m";
1276     case GST_STATE_CHANGE_ASYNC:
1277       return "\033[01;33mASYNC\033[00m";
1278     case GST_STATE_CHANGE_NO_PREROLL:
1279       return "\033[01;34mNO_PREROLL\033[00m";
1280     default:
1281       /* This is a memory leak */
1282       return g_strdup_printf ("\033[01;35;41mUNKNOWN!\033[00m(%d)", state_ret);
1283 #else
1284     case GST_STATE_CHANGE_FAILURE:
1285       return "FAILURE";
1286     case GST_STATE_CHANGE_SUCCESS:
1287       return "SUCCESS";
1288     case GST_STATE_CHANGE_ASYNC:
1289       return "ASYNC";
1290     case GST_STATE_CHANGE_NO_PREROLL:
1291       return "NO PREROLL";
1292     default:
1293       /* This is a memory leak */
1294       return g_strdup_printf ("UNKNOWN!(%d)", state_ret);
1295 #endif
1296   }
1297 }
1298
1299
1300 /**
1301  * gst_element_factory_can_src_caps:
1302  * @factory: factory to query
1303  * @caps: the caps to check
1304  *
1305  * Checks if the factory can source the given capability.
1306  *
1307  * Returns: true if it can src the capabilities
1308  */
1309 gboolean
1310 gst_element_factory_can_src_caps (GstElementFactory * factory,
1311     const GstCaps * caps)
1312 {
1313   GList *templates;
1314
1315   g_return_val_if_fail (factory != NULL, FALSE);
1316   g_return_val_if_fail (caps != NULL, FALSE);
1317
1318   templates = factory->staticpadtemplates;
1319
1320   while (templates) {
1321     GstStaticPadTemplate *template = (GstStaticPadTemplate *) templates->data;
1322
1323     if (template->direction == GST_PAD_SRC) {
1324       if (gst_caps_is_always_compatible (gst_static_caps_get
1325               (&template->static_caps), caps))
1326         return TRUE;
1327     }
1328     templates = g_list_next (templates);
1329   }
1330
1331   return FALSE;
1332 }
1333
1334 /**
1335  * gst_element_factory_can_sink_caps:
1336  * @factory: factory to query
1337  * @caps: the caps to check
1338  *
1339  * Checks if the factory can sink the given capability.
1340  *
1341  * Returns: true if it can sink the capabilities
1342  */
1343 gboolean
1344 gst_element_factory_can_sink_caps (GstElementFactory * factory,
1345     const GstCaps * caps)
1346 {
1347   GList *templates;
1348
1349   g_return_val_if_fail (factory != NULL, FALSE);
1350   g_return_val_if_fail (caps != NULL, FALSE);
1351
1352   templates = factory->staticpadtemplates;
1353
1354   while (templates) {
1355     GstStaticPadTemplate *template = (GstStaticPadTemplate *) templates->data;
1356
1357     if (template->direction == GST_PAD_SINK) {
1358       if (gst_caps_is_always_compatible (caps,
1359               gst_static_caps_get (&template->static_caps)))
1360         return TRUE;
1361     }
1362     templates = g_list_next (templates);
1363   }
1364
1365   return FALSE;
1366 }
1367
1368
1369 /* if return val is true, *direct_child is a caller-owned ref on the direct
1370  * child of ancestor that is part of object's ancestry */
1371 static gboolean
1372 object_has_ancestor (GstObject * object, GstObject * ancestor,
1373     GstObject ** direct_child)
1374 {
1375   GstObject *child, *parent;
1376
1377   if (direct_child)
1378     *direct_child = NULL;
1379
1380   child = gst_object_ref (object);
1381   parent = gst_object_get_parent (object);
1382
1383   while (parent) {
1384     if (ancestor == parent) {
1385       if (direct_child)
1386         *direct_child = child;
1387       else
1388         gst_object_unref (child);
1389       gst_object_unref (parent);
1390       return TRUE;
1391     }
1392
1393     gst_object_unref (child);
1394     child = parent;
1395     parent = gst_object_get_parent (parent);
1396   }
1397
1398   gst_object_unref (child);
1399
1400   return FALSE;
1401 }
1402
1403 /* caller owns return */
1404 static GstObject *
1405 find_common_root (GstObject * o1, GstObject * o2)
1406 {
1407   GstObject *top = o1;
1408   GstObject *kid1, *kid2;
1409   GstObject *root = NULL;
1410
1411   while (GST_OBJECT_PARENT (top))
1412     top = GST_OBJECT_PARENT (top);
1413
1414   /* the itsy-bitsy spider... */
1415
1416   if (!object_has_ancestor (o2, top, &kid2))
1417     return NULL;
1418
1419   root = gst_object_ref (top);
1420   while (TRUE) {
1421     if (!object_has_ancestor (o1, kid2, &kid1)) {
1422       gst_object_unref (kid2);
1423       return root;
1424     }
1425     root = kid2;
1426     if (!object_has_ancestor (o2, kid1, &kid2)) {
1427       gst_object_unref (kid1);
1428       return root;
1429     }
1430     root = kid1;
1431   }
1432 }
1433
1434 /* caller does not own return */
1435 static GstPad *
1436 ghost_up (GstElement * e, GstPad * pad)
1437 {
1438   static gint ghost_pad_index = 0;
1439   GstPad *gpad;
1440   gchar *name;
1441   GstObject *parent = GST_OBJECT_PARENT (e);
1442
1443   name = g_strdup_printf ("ghost%d", ghost_pad_index++);
1444   gpad = gst_ghost_pad_new (name, pad);
1445   g_free (name);
1446
1447   if (!gst_element_add_pad ((GstElement *) parent, gpad)) {
1448     g_warning ("Pad named %s already exists in element %s\n",
1449         GST_OBJECT_NAME (gpad), GST_OBJECT_NAME (parent));
1450     gst_object_unref ((GstObject *) gpad);
1451     return NULL;
1452   }
1453
1454   return gpad;
1455 }
1456
1457 static void
1458 remove_pad (gpointer ppad, gpointer unused)
1459 {
1460   GstPad *pad = ppad;
1461
1462   if (!gst_element_remove_pad ((GstElement *) GST_OBJECT_PARENT (pad), pad))
1463     g_warning ("Couldn't remove pad %s from element %s",
1464         GST_OBJECT_NAME (pad), GST_OBJECT_NAME (GST_OBJECT_PARENT (pad)));
1465 }
1466
1467 static gboolean
1468 prepare_link_maybe_ghosting (GstPad ** src, GstPad ** sink,
1469     GSList ** pads_created)
1470 {
1471   GstObject *root;
1472   GstObject *e1, *e2;
1473   GSList *pads_created_local = NULL;
1474
1475   g_assert (pads_created);
1476
1477   e1 = GST_OBJECT_PARENT (*src);
1478   e2 = GST_OBJECT_PARENT (*sink);
1479
1480   if (G_UNLIKELY (e1 == NULL)) {
1481     GST_WARNING ("Trying to ghost a pad that doesn't have a parent: %"
1482         GST_PTR_FORMAT, *src);
1483     return FALSE;
1484   }
1485   if (G_UNLIKELY (e2 == NULL)) {
1486     GST_WARNING ("Trying to ghost a pad that doesn't have a parent: %"
1487         GST_PTR_FORMAT, *sink);
1488     return FALSE;
1489   }
1490
1491   if (GST_OBJECT_PARENT (e1) == GST_OBJECT_PARENT (e2)) {
1492     GST_CAT_INFO (GST_CAT_PADS, "%s and %s in same bin, no need for ghost pads",
1493         GST_OBJECT_NAME (e1), GST_OBJECT_NAME (e2));
1494     return TRUE;
1495   }
1496
1497   GST_CAT_INFO (GST_CAT_PADS, "%s and %s not in same bin, making ghost pads",
1498       GST_OBJECT_NAME (e1), GST_OBJECT_NAME (e2));
1499
1500   /* we need to setup some ghost pads */
1501   root = find_common_root (e1, e2);
1502   if (!root) {
1503     g_warning ("Trying to connect elements that don't share a common "
1504         "ancestor: %s and %s", GST_ELEMENT_NAME (e1), GST_ELEMENT_NAME (e2));
1505     return FALSE;
1506   }
1507
1508   while (GST_OBJECT_PARENT (e1) != root) {
1509     *src = ghost_up ((GstElement *) e1, *src);
1510     if (!*src)
1511       goto cleanup_fail;
1512     e1 = GST_OBJECT_PARENT (*src);
1513     pads_created_local = g_slist_prepend (pads_created_local, *src);
1514   }
1515   while (GST_OBJECT_PARENT (e2) != root) {
1516     *sink = ghost_up ((GstElement *) e2, *sink);
1517     if (!*sink)
1518       goto cleanup_fail;
1519     e2 = GST_OBJECT_PARENT (*sink);
1520     pads_created_local = g_slist_prepend (pads_created_local, *sink);
1521   }
1522
1523   gst_object_unref (root);
1524   *pads_created = g_slist_concat (*pads_created, pads_created_local);
1525   return TRUE;
1526
1527 cleanup_fail:
1528   gst_object_unref (root);
1529   g_slist_foreach (pads_created_local, remove_pad, NULL);
1530   g_slist_free (pads_created_local);
1531   return FALSE;
1532 }
1533
1534 static gboolean
1535 pad_link_maybe_ghosting (GstPad * src, GstPad * sink)
1536 {
1537   GSList *pads_created = NULL;
1538   gboolean ret;
1539
1540   if (!prepare_link_maybe_ghosting (&src, &sink, &pads_created)) {
1541     ret = FALSE;
1542   } else {
1543     ret = (gst_pad_link (src, sink) == GST_PAD_LINK_OK);
1544   }
1545
1546   if (!ret) {
1547     g_slist_foreach (pads_created, remove_pad, NULL);
1548   }
1549   g_slist_free (pads_created);
1550
1551   return ret;
1552 }
1553
1554 /**
1555  * gst_element_link_pads:
1556  * @src: a #GstElement containing the source pad.
1557  * @srcpadname: the name of the #GstPad in source element or NULL for any pad.
1558  * @dest: the #GstElement containing the destination pad.
1559  * @destpadname: the name of the #GstPad in destination element,
1560  * or NULL for any pad.
1561  *
1562  * Links the two named pads of the source and destination elements.
1563  * Side effect is that if one of the pads has no parent, it becomes a
1564  * child of the parent of the other element.  If they have different
1565  * parents, the link fails.
1566  *
1567  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1568  */
1569 gboolean
1570 gst_element_link_pads (GstElement * src, const gchar * srcpadname,
1571     GstElement * dest, const gchar * destpadname)
1572 {
1573   const GList *srcpads, *destpads, *srctempls, *desttempls, *l;
1574   GstPad *srcpad, *destpad;
1575   GstPadTemplate *srctempl, *desttempl;
1576   GstElementClass *srcclass, *destclass;
1577
1578   /* checks */
1579   g_return_val_if_fail (GST_IS_ELEMENT (src), FALSE);
1580   g_return_val_if_fail (GST_IS_ELEMENT (dest), FALSE);
1581
1582   srcclass = GST_ELEMENT_GET_CLASS (src);
1583   destclass = GST_ELEMENT_GET_CLASS (dest);
1584
1585   GST_CAT_INFO (GST_CAT_ELEMENT_PADS,
1586       "trying to link element %s:%s to element %s:%s", GST_ELEMENT_NAME (src),
1587       srcpadname ? srcpadname : "(any)", GST_ELEMENT_NAME (dest),
1588       destpadname ? destpadname : "(any)");
1589
1590   /* get a src pad */
1591   if (srcpadname) {
1592     /* name specified, look it up */
1593     if (!(srcpad = gst_element_get_static_pad (src, srcpadname)))
1594       srcpad = gst_element_get_request_pad (src, srcpadname);
1595     if (!srcpad) {
1596       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no pad %s:%s",
1597           GST_ELEMENT_NAME (src), srcpadname);
1598       return FALSE;
1599     } else {
1600       if (!(GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC)) {
1601         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no src pad",
1602             GST_DEBUG_PAD_NAME (srcpad));
1603         gst_object_unref (srcpad);
1604         return FALSE;
1605       }
1606       if (GST_PAD_PEER (srcpad) != NULL) {
1607         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
1608             GST_DEBUG_PAD_NAME (srcpad));
1609         gst_object_unref (srcpad);
1610         return FALSE;
1611       }
1612     }
1613     srcpads = NULL;
1614   } else {
1615     /* no name given, get the first available pad */
1616     GST_OBJECT_LOCK (src);
1617     srcpads = GST_ELEMENT_PADS (src);
1618     srcpad = srcpads ? GST_PAD_CAST (srcpads->data) : NULL;
1619     if (srcpad)
1620       gst_object_ref (srcpad);
1621     GST_OBJECT_UNLOCK (src);
1622   }
1623
1624   /* get a destination pad */
1625   if (destpadname) {
1626     /* name specified, look it up */
1627     if (!(destpad = gst_element_get_static_pad (dest, destpadname)))
1628       destpad = gst_element_get_request_pad (dest, destpadname);
1629     if (!destpad) {
1630       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no pad %s:%s",
1631           GST_ELEMENT_NAME (dest), destpadname);
1632       return FALSE;
1633     } else {
1634       if (!(GST_PAD_DIRECTION (destpad) == GST_PAD_SINK)) {
1635         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no sink pad",
1636             GST_DEBUG_PAD_NAME (destpad));
1637         gst_object_unref (destpad);
1638         return FALSE;
1639       }
1640       if (GST_PAD_PEER (destpad) != NULL) {
1641         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
1642             GST_DEBUG_PAD_NAME (destpad));
1643         gst_object_unref (destpad);
1644         return FALSE;
1645       }
1646     }
1647     destpads = NULL;
1648   } else {
1649     /* no name given, get the first available pad */
1650     GST_OBJECT_LOCK (dest);
1651     destpads = GST_ELEMENT_PADS (dest);
1652     destpad = destpads ? GST_PAD_CAST (destpads->data) : NULL;
1653     if (destpad)
1654       gst_object_ref (destpad);
1655     GST_OBJECT_UNLOCK (dest);
1656   }
1657
1658   if (srcpadname && destpadname) {
1659     gboolean result;
1660
1661     /* two explicitly specified pads */
1662     result = pad_link_maybe_ghosting (srcpad, destpad);
1663
1664     gst_object_unref (srcpad);
1665     gst_object_unref (destpad);
1666
1667     return result;
1668   }
1669
1670   if (srcpad) {
1671     /* loop through the allowed pads in the source, trying to find a
1672      * compatible destination pad */
1673     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1674         "looping through allowed src and dest pads");
1675     do {
1676       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "trying src pad %s:%s",
1677           GST_DEBUG_PAD_NAME (srcpad));
1678       if ((GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC) &&
1679           (GST_PAD_PEER (srcpad) == NULL)) {
1680         GstPad *temp;
1681
1682         if (destpadname) {
1683           temp = destpad;
1684           gst_object_ref (temp);
1685         } else {
1686           temp = gst_element_get_compatible_pad (dest, srcpad, NULL);
1687         }
1688
1689         if (temp && pad_link_maybe_ghosting (srcpad, temp)) {
1690           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
1691               GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (temp));
1692           if (destpad)
1693             gst_object_unref (destpad);
1694           gst_object_unref (srcpad);
1695           gst_object_unref (temp);
1696           return TRUE;
1697         }
1698
1699         if (temp) {
1700           gst_object_unref (temp);
1701         }
1702       }
1703       /* find a better way for this mess */
1704       if (srcpads) {
1705         srcpads = g_list_next (srcpads);
1706         if (srcpads) {
1707           gst_object_unref (srcpad);
1708           srcpad = GST_PAD_CAST (srcpads->data);
1709           gst_object_ref (srcpad);
1710         }
1711       }
1712     } while (srcpads);
1713   }
1714   if (srcpadname) {
1715     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s:%s to %s",
1716         GST_DEBUG_PAD_NAME (srcpad), GST_ELEMENT_NAME (dest));
1717     if (destpad)
1718       gst_object_unref (destpad);
1719     destpad = NULL;
1720   }
1721   if (srcpad)
1722     gst_object_unref (srcpad);
1723   srcpad = NULL;
1724
1725   if (destpad) {
1726     /* loop through the existing pads in the destination */
1727     do {
1728       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "trying dest pad %s:%s",
1729           GST_DEBUG_PAD_NAME (destpad));
1730       if ((GST_PAD_DIRECTION (destpad) == GST_PAD_SINK) &&
1731           (GST_PAD_PEER (destpad) == NULL)) {
1732         GstPad *temp = gst_element_get_compatible_pad (src, destpad, NULL);
1733
1734         if (temp && pad_link_maybe_ghosting (temp, destpad)) {
1735           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
1736               GST_DEBUG_PAD_NAME (temp), GST_DEBUG_PAD_NAME (destpad));
1737           gst_object_unref (temp);
1738           gst_object_unref (destpad);
1739           return TRUE;
1740         }
1741         if (temp) {
1742           gst_object_unref (temp);
1743         }
1744       }
1745       if (destpads) {
1746         destpads = g_list_next (destpads);
1747         if (destpads) {
1748           gst_object_unref (destpad);
1749           destpad = GST_PAD_CAST (destpads->data);
1750           gst_object_ref (destpad);
1751         }
1752       }
1753     } while (destpads);
1754   }
1755
1756   if (destpadname) {
1757     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s:%s",
1758         GST_ELEMENT_NAME (src), GST_DEBUG_PAD_NAME (destpad));
1759     gst_object_unref (destpad);
1760     return FALSE;
1761   } else {
1762     if (destpad)
1763       gst_object_unref (destpad);
1764     destpad = NULL;
1765   }
1766
1767   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1768       "we might have request pads on both sides, checking...");
1769   srctempls = gst_element_class_get_pad_template_list (srcclass);
1770   desttempls = gst_element_class_get_pad_template_list (destclass);
1771
1772   if (srctempls && desttempls) {
1773     while (srctempls) {
1774       srctempl = (GstPadTemplate *) srctempls->data;
1775       if (srctempl->presence == GST_PAD_REQUEST) {
1776         for (l = desttempls; l; l = l->next) {
1777           desttempl = (GstPadTemplate *) l->data;
1778           if (desttempl->presence == GST_PAD_REQUEST &&
1779               desttempl->direction != srctempl->direction) {
1780             if (gst_caps_is_always_compatible (gst_pad_template_get_caps
1781                     (srctempl), gst_pad_template_get_caps (desttempl))) {
1782               srcpad =
1783                   gst_element_get_request_pad (src, srctempl->name_template);
1784               destpad =
1785                   gst_element_get_request_pad (dest, desttempl->name_template);
1786               if (srcpad && destpad
1787                   && pad_link_maybe_ghosting (srcpad, destpad)) {
1788                 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1789                     "linked pad %s:%s to pad %s:%s",
1790                     GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (destpad));
1791                 gst_object_unref (srcpad);
1792                 gst_object_unref (destpad);
1793                 return TRUE;
1794               }
1795               /* it failed, so we release the request pads */
1796               if (srcpad)
1797                 gst_element_release_request_pad (src, srcpad);
1798               if (destpad)
1799                 gst_element_release_request_pad (dest, destpad);
1800             }
1801           }
1802         }
1803       }
1804       srctempls = srctempls->next;
1805     }
1806   }
1807
1808   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s",
1809       GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (dest));
1810   return FALSE;
1811 }
1812
1813 /**
1814  * gst_element_link_pads_filtered:
1815  * @src: a #GstElement containing the source pad.
1816  * @srcpadname: the name of the #GstPad in source element or NULL for any pad.
1817  * @dest: the #GstElement containing the destination pad.
1818  * @destpadname: the name of the #GstPad in destination element or NULL for any pad.
1819  * @filter: the #GstCaps to filter the link, or #NULL for no filter.
1820  *
1821  * Links the two named pads of the source and destination elements. Side effect
1822  * is that if one of the pads has no parent, it becomes a child of the parent of
1823  * the other element. If they have different parents, the link fails. If @caps
1824  * is not #NULL, makes sure that the caps of the link is a subset of @caps.
1825  *
1826  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1827  */
1828 gboolean
1829 gst_element_link_pads_filtered (GstElement * src, const gchar * srcpadname,
1830     GstElement * dest, const gchar * destpadname, GstCaps * filter)
1831 {
1832   /* checks */
1833   g_return_val_if_fail (GST_IS_ELEMENT (src), FALSE);
1834   g_return_val_if_fail (GST_IS_ELEMENT (dest), FALSE);
1835   g_return_val_if_fail (filter == NULL || GST_IS_CAPS (filter), FALSE);
1836
1837   if (filter) {
1838     GstElement *capsfilter;
1839     GstObject *parent;
1840     GstState state, pending;
1841
1842     capsfilter = gst_element_factory_make ("capsfilter", NULL);
1843     if (!capsfilter) {
1844       GST_ERROR ("Could not make a capsfilter");
1845       return FALSE;
1846     }
1847
1848     parent = gst_object_get_parent (GST_OBJECT (src));
1849     g_return_val_if_fail (GST_IS_BIN (parent), FALSE);
1850
1851     gst_element_get_state (GST_ELEMENT_CAST (parent), &state, &pending, 0);
1852
1853     if (!gst_bin_add (GST_BIN (parent), capsfilter)) {
1854       GST_ERROR ("Could not add capsfilter");
1855       gst_object_unref (capsfilter);
1856       gst_object_unref (parent);
1857       return FALSE;
1858     }
1859
1860     if (pending != GST_STATE_VOID_PENDING)
1861       state = pending;
1862
1863     gst_element_set_state (capsfilter, state);
1864
1865     gst_object_unref (parent);
1866
1867     g_object_set (capsfilter, "caps", filter, NULL);
1868
1869     if (gst_element_link_pads (src, srcpadname, capsfilter, "sink")
1870         && gst_element_link_pads (capsfilter, "src", dest, destpadname)) {
1871       return TRUE;
1872     } else {
1873       GST_INFO ("Could not link elements");
1874       gst_element_set_state (capsfilter, GST_STATE_NULL);
1875       /* this will unlink and unref as appropriate */
1876       gst_bin_remove (GST_BIN (GST_OBJECT_PARENT (capsfilter)), capsfilter);
1877       return FALSE;
1878     }
1879   } else {
1880     return gst_element_link_pads (src, srcpadname, dest, destpadname);
1881   }
1882 }
1883
1884 /**
1885  * gst_element_link:
1886  * @src: a #GstElement containing the source pad.
1887  * @dest: the #GstElement containing the destination pad.
1888  *
1889  * Links @src to @dest. The link must be from source to
1890  * destination; the other direction will not be tried. The function looks for
1891  * existing pads that aren't linked yet. It will request new pads if necessary.
1892  * Such pads need to be released manualy when unlinking.
1893  * If multiple links are possible, only one is established.
1894  *
1895  * Make sure you have added your elements to a bin or pipeline with
1896  * gst_bin_add() before trying to link them.
1897  *
1898  * Returns: TRUE if the elements could be linked, FALSE otherwise.
1899  */
1900 gboolean
1901 gst_element_link (GstElement * src, GstElement * dest)
1902 {
1903   return gst_element_link_pads_filtered (src, NULL, dest, NULL, NULL);
1904 }
1905
1906 /**
1907  * gst_element_link_many:
1908  * @element_1: the first #GstElement in the link chain.
1909  * @element_2: the second #GstElement in the link chain.
1910  * @...: the NULL-terminated list of elements to link in order.
1911  *
1912  * Chain together a series of elements. Uses gst_element_link().
1913  * Make sure you have added your elements to a bin or pipeline with
1914  * gst_bin_add() before trying to link them.
1915  *
1916  * Returns: TRUE on success, FALSE otherwise.
1917  */
1918 gboolean
1919 gst_element_link_many (GstElement * element_1, GstElement * element_2, ...)
1920 {
1921   gboolean res = TRUE;
1922   va_list args;
1923
1924   g_return_val_if_fail (GST_IS_ELEMENT (element_1), FALSE);
1925   g_return_val_if_fail (GST_IS_ELEMENT (element_2), FALSE);
1926
1927   va_start (args, element_2);
1928
1929   while (element_2) {
1930     if (!gst_element_link (element_1, element_2)) {
1931       res = FALSE;
1932       break;
1933     }
1934
1935     element_1 = element_2;
1936     element_2 = va_arg (args, GstElement *);
1937   }
1938
1939   va_end (args);
1940
1941   return res;
1942 }
1943
1944 /**
1945  * gst_element_link_filtered:
1946  * @src: a #GstElement containing the source pad.
1947  * @dest: the #GstElement containing the destination pad.
1948  * @filter: the #GstCaps to filter the link, or #NULL for no filter.
1949  *
1950  * Links @src to @dest using the given caps as filtercaps.
1951  * The link must be from source to
1952  * destination; the other direction will not be tried. The function looks for
1953  * existing pads that aren't linked yet. It will request new pads if necessary.
1954  * If multiple links are possible, only one is established.
1955  *
1956  * Make sure you have added your elements to a bin or pipeline with
1957  * gst_bin_add() before trying to link them.
1958  *
1959  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1960  */
1961 gboolean
1962 gst_element_link_filtered (GstElement * src, GstElement * dest,
1963     GstCaps * filter)
1964 {
1965   return gst_element_link_pads_filtered (src, NULL, dest, NULL, filter);
1966 }
1967
1968 /**
1969  * gst_element_unlink_pads:
1970  * @src: a #GstElement containing the source pad.
1971  * @srcpadname: the name of the #GstPad in source element.
1972  * @dest: a #GstElement containing the destination pad.
1973  * @destpadname: the name of the #GstPad in destination element.
1974  *
1975  * Unlinks the two named pads of the source and destination elements.
1976  */
1977 void
1978 gst_element_unlink_pads (GstElement * src, const gchar * srcpadname,
1979     GstElement * dest, const gchar * destpadname)
1980 {
1981   GstPad *srcpad, *destpad;
1982   gboolean srcrequest, destrequest;
1983
1984   srcrequest = destrequest = FALSE;
1985
1986   g_return_if_fail (src != NULL);
1987   g_return_if_fail (GST_IS_ELEMENT (src));
1988   g_return_if_fail (srcpadname != NULL);
1989   g_return_if_fail (dest != NULL);
1990   g_return_if_fail (GST_IS_ELEMENT (dest));
1991   g_return_if_fail (destpadname != NULL);
1992
1993   /* obtain the pads requested */
1994   if (!(srcpad = gst_element_get_static_pad (src, srcpadname)))
1995     if ((srcpad = gst_element_get_request_pad (src, srcpadname)))
1996       srcrequest = TRUE;
1997   if (srcpad == NULL) {
1998     GST_WARNING_OBJECT (src, "source element has no pad \"%s\"", srcpadname);
1999     return;
2000   }
2001   if (!(destpad = gst_element_get_static_pad (dest, destpadname)))
2002     if ((destpad = gst_element_get_request_pad (dest, destpadname)))
2003       destrequest = TRUE;
2004   if (destpad == NULL) {
2005     GST_WARNING_OBJECT (dest, "destination element has no pad \"%s\"",
2006         destpadname);
2007     goto free_src;
2008   }
2009
2010   /* we're satisified they can be unlinked, let's do it */
2011   gst_pad_unlink (srcpad, destpad);
2012
2013   if (destrequest)
2014     gst_element_release_request_pad (dest, destpad);
2015   gst_object_unref (destpad);
2016
2017 free_src:
2018   if (srcrequest)
2019     gst_element_release_request_pad (src, srcpad);
2020   gst_object_unref (srcpad);
2021 }
2022
2023 /**
2024  * gst_element_unlink_many:
2025  * @element_1: the first #GstElement in the link chain.
2026  * @element_2: the second #GstElement in the link chain.
2027  * @...: the NULL-terminated list of elements to unlink in order.
2028  *
2029  * Unlinks a series of elements. Uses gst_element_unlink().
2030  */
2031 void
2032 gst_element_unlink_many (GstElement * element_1, GstElement * element_2, ...)
2033 {
2034   va_list args;
2035
2036   g_return_if_fail (element_1 != NULL && element_2 != NULL);
2037   g_return_if_fail (GST_IS_ELEMENT (element_1) && GST_IS_ELEMENT (element_2));
2038
2039   va_start (args, element_2);
2040
2041   while (element_2) {
2042     gst_element_unlink (element_1, element_2);
2043
2044     element_1 = element_2;
2045     element_2 = va_arg (args, GstElement *);
2046   }
2047
2048   va_end (args);
2049 }
2050
2051 /**
2052  * gst_element_unlink:
2053  * @src: the source #GstElement to unlink.
2054  * @dest: the sink #GstElement to unlink.
2055  *
2056  * Unlinks all source pads of the source element with all sink pads
2057  * of the sink element to which they are linked.
2058  *
2059  * If the link has been made using gst_element_link(), it could have created an
2060  * requestpad, which has to be released using gst_element_release_request_pad().
2061  */
2062 void
2063 gst_element_unlink (GstElement * src, GstElement * dest)
2064 {
2065   GstIterator *pads;
2066   gboolean done = FALSE;
2067
2068   g_return_if_fail (GST_IS_ELEMENT (src));
2069   g_return_if_fail (GST_IS_ELEMENT (dest));
2070
2071   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unlinking \"%s\" and \"%s\"",
2072       GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (dest));
2073
2074   pads = gst_element_iterate_pads (src);
2075   while (!done) {
2076     gpointer data;
2077
2078     switch (gst_iterator_next (pads, &data)) {
2079       case GST_ITERATOR_OK:
2080       {
2081         GstPad *pad = GST_PAD_CAST (data);
2082
2083         if (GST_PAD_IS_SRC (pad)) {
2084           GstPad *peerpad = gst_pad_get_peer (pad);
2085
2086           /* see if the pad is linked and is really a pad of dest */
2087           if (peerpad) {
2088             GstElement *peerelem;
2089
2090             peerelem = gst_pad_get_parent_element (peerpad);
2091
2092             if (peerelem == dest) {
2093               gst_pad_unlink (pad, peerpad);
2094             }
2095             if (peerelem)
2096               gst_object_unref (peerelem);
2097
2098             gst_object_unref (peerpad);
2099           }
2100         }
2101         gst_object_unref (pad);
2102         break;
2103       }
2104       case GST_ITERATOR_RESYNC:
2105         gst_iterator_resync (pads);
2106         break;
2107       case GST_ITERATOR_DONE:
2108         done = TRUE;
2109         break;
2110       default:
2111         g_assert_not_reached ();
2112         break;
2113     }
2114   }
2115   gst_iterator_free (pads);
2116 }
2117
2118 /**
2119  * gst_element_query_position:
2120  * @element: a #GstElement to invoke the position query on.
2121  * @format: a pointer to the #GstFormat asked for.
2122  *          On return contains the #GstFormat used.
2123  * @cur: A location in which to store the current position, or NULL.
2124  *
2125  * Queries an element for the stream position.
2126  *
2127  * Returns: TRUE if the query could be performed.
2128  */
2129 gboolean
2130 gst_element_query_position (GstElement * element, GstFormat * format,
2131     gint64 * cur)
2132 {
2133   GstQuery *query;
2134   gboolean ret;
2135
2136   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
2137   g_return_val_if_fail (format != NULL, FALSE);
2138
2139   query = gst_query_new_position (*format);
2140   ret = gst_element_query (element, query);
2141
2142   if (ret)
2143     gst_query_parse_position (query, format, cur);
2144
2145   gst_query_unref (query);
2146
2147   return ret;
2148 }
2149
2150 /**
2151  * gst_element_query_duration:
2152  * @element: a #GstElement to invoke the duration query on.
2153  * @format: (inout): a pointer to the #GstFormat asked for.
2154  *          On return contains the #GstFormat used.
2155  * @duration: (out): A location in which to store the total duration, or NULL.
2156  *
2157  * Queries an element for the total stream duration.
2158  *
2159  * Returns: TRUE if the query could be performed.
2160  */
2161 gboolean
2162 gst_element_query_duration (GstElement * element, GstFormat * format,
2163     gint64 * duration)
2164 {
2165   GstQuery *query;
2166   gboolean ret;
2167
2168   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
2169   g_return_val_if_fail (format != NULL, FALSE);
2170
2171   query = gst_query_new_duration (*format);
2172   ret = gst_element_query (element, query);
2173
2174   if (ret)
2175     gst_query_parse_duration (query, format, duration);
2176
2177   gst_query_unref (query);
2178
2179   return ret;
2180 }
2181
2182 /**
2183  * gst_element_query_convert:
2184  * @element: a #GstElement to invoke the convert query on.
2185  * @src_format: a #GstFormat to convert from.
2186  * @src_val: a value to convert.
2187  * @dest_format: a pointer to the #GstFormat to convert to.
2188  * @dest_val: a pointer to the result.
2189  *
2190  * Queries an element to convert @src_val in @src_format to @dest_format.
2191  *
2192  * Returns: TRUE if the query could be performed.
2193  */
2194 gboolean
2195 gst_element_query_convert (GstElement * element, GstFormat src_format,
2196     gint64 src_val, GstFormat * dest_format, gint64 * dest_val)
2197 {
2198   GstQuery *query;
2199   gboolean ret;
2200
2201   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
2202   g_return_val_if_fail (dest_format != NULL, FALSE);
2203   g_return_val_if_fail (dest_val != NULL, FALSE);
2204
2205   if (*dest_format == src_format) {
2206     *dest_val = src_val;
2207     return TRUE;
2208   }
2209
2210   query = gst_query_new_convert (src_format, src_val, *dest_format);
2211   ret = gst_element_query (element, query);
2212
2213   if (ret)
2214     gst_query_parse_convert (query, NULL, NULL, dest_format, dest_val);
2215
2216   gst_query_unref (query);
2217
2218   return ret;
2219 }
2220
2221 /**
2222  * gst_element_seek_simple
2223  * @element: a #GstElement to seek on
2224  * @format: a #GstFormat to execute the seek in, such as #GST_FORMAT_TIME
2225  * @seek_flags: seek options; playback applications will usually want to use
2226  *            GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_KEY_UNIT here
2227  * @seek_pos: position to seek to (relative to the start); if you are doing
2228  *            a seek in #GST_FORMAT_TIME this value is in nanoseconds -
2229  *            multiply with #GST_SECOND to convert seconds to nanoseconds or
2230  *            with #GST_MSECOND to convert milliseconds to nanoseconds.
2231  *
2232  * Simple API to perform a seek on the given element, meaning it just seeks
2233  * to the given position relative to the start of the stream. For more complex
2234  * operations like segment seeks (e.g. for looping) or changing the playback
2235  * rate or seeking relative to the last configured playback segment you should
2236  * use gst_element_seek().
2237  *
2238  * In a completely prerolled PAUSED or PLAYING pipeline, seeking is always
2239  * guaranteed to return %TRUE on a seekable media type or %FALSE when the media
2240  * type is certainly not seekable (such as a live stream).
2241  *
2242  * Some elements allow for seeking in the READY state, in this
2243  * case they will store the seek event and execute it when they are put to
2244  * PAUSED. If the element supports seek in READY, it will always return %TRUE when
2245  * it receives the event in the READY state.
2246  *
2247  * Returns: %TRUE if the seek operation succeeded (the seek might not always be
2248  * executed instantly though)
2249  *
2250  * Since: 0.10.7
2251  */
2252 gboolean
2253 gst_element_seek_simple (GstElement * element, GstFormat format,
2254     GstSeekFlags seek_flags, gint64 seek_pos)
2255 {
2256   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
2257   g_return_val_if_fail (seek_pos >= 0, FALSE);
2258
2259   return gst_element_seek (element, 1.0, format, seek_flags,
2260       GST_SEEK_TYPE_SET, seek_pos, GST_SEEK_TYPE_NONE, 0);
2261 }
2262
2263 /**
2264  * gst_pad_use_fixed_caps:
2265  * @pad: the pad to use
2266  *
2267  * A helper function you can use that sets the
2268  * @gst_pad_get_fixed_caps_func as the getcaps function for the
2269  * pad. This way the function will always return the negotiated caps
2270  * or in case the pad is not negotiated, the padtemplate caps.
2271  *
2272  * Use this function on a pad that, once _set_caps() has been called
2273  * on it, cannot be renegotiated to something else.
2274  */
2275 void
2276 gst_pad_use_fixed_caps (GstPad * pad)
2277 {
2278   gst_pad_set_getcaps_function (pad, gst_pad_get_fixed_caps_func);
2279 }
2280
2281 /**
2282  * gst_pad_get_fixed_caps_func:
2283  * @pad: the pad to use
2284  *
2285  * A helper function you can use as a GetCaps function that
2286  * will return the currently negotiated caps or the padtemplate
2287  * when NULL.
2288  *
2289  * Returns: The currently negotiated caps or the padtemplate.
2290  */
2291 GstCaps *
2292 gst_pad_get_fixed_caps_func (GstPad * pad)
2293 {
2294   GstCaps *result;
2295
2296   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2297
2298   GST_OBJECT_LOCK (pad);
2299   if (GST_PAD_CAPS (pad)) {
2300     result = GST_PAD_CAPS (pad);
2301
2302     GST_CAT_DEBUG (GST_CAT_CAPS,
2303         "using pad caps %p %" GST_PTR_FORMAT, result, result);
2304
2305     result = gst_caps_ref (result);
2306   } else if (GST_PAD_PAD_TEMPLATE (pad)) {
2307     GstPadTemplate *templ = GST_PAD_PAD_TEMPLATE (pad);
2308
2309     result = GST_PAD_TEMPLATE_CAPS (templ);
2310     GST_CAT_DEBUG (GST_CAT_CAPS,
2311         "using pad template %p with caps %p %" GST_PTR_FORMAT, templ, result,
2312         result);
2313
2314     result = gst_caps_ref (result);
2315   } else {
2316     GST_CAT_DEBUG (GST_CAT_CAPS, "pad has no caps");
2317     result = gst_caps_new_empty ();
2318   }
2319   GST_OBJECT_UNLOCK (pad);
2320
2321   return result;
2322 }
2323
2324 /**
2325  * gst_pad_get_parent_element:
2326  * @pad: a pad
2327  *
2328  * Gets the parent of @pad, cast to a #GstElement. If a @pad has no parent or
2329  * its parent is not an element, return NULL.
2330  *
2331  * Returns: The parent of the pad. The caller has a reference on the parent, so
2332  * unref when you're finished with it.
2333  *
2334  * MT safe.
2335  */
2336 GstElement *
2337 gst_pad_get_parent_element (GstPad * pad)
2338 {
2339   GstObject *p;
2340
2341   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2342
2343   p = gst_object_get_parent (GST_OBJECT_CAST (pad));
2344
2345   if (p && !GST_IS_ELEMENT (p)) {
2346     gst_object_unref (p);
2347     p = NULL;
2348   }
2349   return GST_ELEMENT_CAST (p);
2350 }
2351
2352 /**
2353  * gst_object_default_error:
2354  * @source: the #GstObject that initiated the error.
2355  * @error: the GError.
2356  * @debug: an additional debug information string, or NULL.
2357  *
2358  * A default error function.
2359  *
2360  * The default handler will simply print the error string using g_print.
2361  */
2362 void
2363 gst_object_default_error (GstObject * source, GError * error, gchar * debug)
2364 {
2365   gchar *name = gst_object_get_path_string (source);
2366
2367   g_print (_("ERROR: from element %s: %s\n"), name, error->message);
2368   if (debug)
2369     g_print (_("Additional debug info:\n%s\n"), debug);
2370
2371   g_free (name);
2372 }
2373
2374 /**
2375  * gst_bin_add_many:
2376  * @bin: a #GstBin
2377  * @element_1: the #GstElement element to add to the bin
2378  * @...: additional elements to add to the bin
2379  *
2380  * Adds a NULL-terminated list of elements to a bin.  This function is
2381  * equivalent to calling gst_bin_add() for each member of the list. The return
2382  * value of each gst_bin_add() is ignored.
2383  */
2384 void
2385 gst_bin_add_many (GstBin * bin, GstElement * element_1, ...)
2386 {
2387   va_list args;
2388
2389   g_return_if_fail (GST_IS_BIN (bin));
2390   g_return_if_fail (GST_IS_ELEMENT (element_1));
2391
2392   va_start (args, element_1);
2393
2394   while (element_1) {
2395     gst_bin_add (bin, element_1);
2396
2397     element_1 = va_arg (args, GstElement *);
2398   }
2399
2400   va_end (args);
2401 }
2402
2403 /**
2404  * gst_bin_remove_many:
2405  * @bin: a #GstBin
2406  * @element_1: the first #GstElement to remove from the bin
2407  * @...: NULL-terminated list of elements to remove from the bin
2408  *
2409  * Remove a list of elements from a bin. This function is equivalent
2410  * to calling gst_bin_remove() with each member of the list.
2411  */
2412 void
2413 gst_bin_remove_many (GstBin * bin, GstElement * element_1, ...)
2414 {
2415   va_list args;
2416
2417   g_return_if_fail (GST_IS_BIN (bin));
2418   g_return_if_fail (GST_IS_ELEMENT (element_1));
2419
2420   va_start (args, element_1);
2421
2422   while (element_1) {
2423     gst_bin_remove (bin, element_1);
2424
2425     element_1 = va_arg (args, GstElement *);
2426   }
2427
2428   va_end (args);
2429 }
2430
2431 static void
2432 gst_element_populate_std_props (GObjectClass * klass, const gchar * prop_name,
2433     guint arg_id, GParamFlags flags)
2434 {
2435   GQuark prop_id = g_quark_from_string (prop_name);
2436   GParamSpec *pspec;
2437
2438   static GQuark fd_id = 0;
2439   static GQuark blocksize_id;
2440   static GQuark bytesperread_id;
2441   static GQuark dump_id;
2442   static GQuark filesize_id;
2443   static GQuark mmapsize_id;
2444   static GQuark location_id;
2445   static GQuark offset_id;
2446   static GQuark silent_id;
2447   static GQuark touch_id;
2448
2449   if (!fd_id) {
2450     fd_id = g_quark_from_static_string ("fd");
2451     blocksize_id = g_quark_from_static_string ("blocksize");
2452     bytesperread_id = g_quark_from_static_string ("bytesperread");
2453     dump_id = g_quark_from_static_string ("dump");
2454     filesize_id = g_quark_from_static_string ("filesize");
2455     mmapsize_id = g_quark_from_static_string ("mmapsize");
2456     location_id = g_quark_from_static_string ("location");
2457     offset_id = g_quark_from_static_string ("offset");
2458     silent_id = g_quark_from_static_string ("silent");
2459     touch_id = g_quark_from_static_string ("touch");
2460   }
2461
2462   if (prop_id == fd_id) {
2463     pspec = g_param_spec_int ("fd", "File-descriptor",
2464         "File-descriptor for the file being read", 0, G_MAXINT, 0, flags);
2465   } else if (prop_id == blocksize_id) {
2466     pspec = g_param_spec_ulong ("blocksize", "Block Size",
2467         "Block size to read per buffer", 0, G_MAXULONG, 4096, flags);
2468
2469   } else if (prop_id == bytesperread_id) {
2470     pspec = g_param_spec_int ("bytesperread", "Bytes per read",
2471         "Number of bytes to read per buffer", G_MININT, G_MAXINT, 0, flags);
2472
2473   } else if (prop_id == dump_id) {
2474     pspec = g_param_spec_boolean ("dump", "Dump",
2475         "Dump bytes to stdout", FALSE, flags);
2476
2477   } else if (prop_id == filesize_id) {
2478     pspec = g_param_spec_int64 ("filesize", "File Size",
2479         "Size of the file being read", 0, G_MAXINT64, 0, flags);
2480
2481   } else if (prop_id == mmapsize_id) {
2482     pspec = g_param_spec_ulong ("mmapsize", "mmap() Block Size",
2483         "Size in bytes of mmap()d regions", 0, G_MAXULONG, 4 * 1048576, flags);
2484
2485   } else if (prop_id == location_id) {
2486     pspec = g_param_spec_string ("location", "File Location",
2487         "Location of the file to read", NULL, flags);
2488
2489   } else if (prop_id == offset_id) {
2490     pspec = g_param_spec_int64 ("offset", "File Offset",
2491         "Byte offset of current read pointer", 0, G_MAXINT64, 0, flags);
2492
2493   } else if (prop_id == silent_id) {
2494     pspec = g_param_spec_boolean ("silent", "Silent", "Don't produce events",
2495         FALSE, flags);
2496
2497   } else if (prop_id == touch_id) {
2498     pspec = g_param_spec_boolean ("touch", "Touch read data",
2499         "Touch data to force disk read before " "push ()", TRUE, flags);
2500   } else {
2501     g_warning ("Unknown - 'standard' property '%s' id %d from klass %s",
2502         prop_name, arg_id, g_type_name (G_OBJECT_CLASS_TYPE (klass)));
2503     pspec = NULL;
2504   }
2505
2506   if (pspec) {
2507     g_object_class_install_property (klass, arg_id, pspec);
2508   }
2509 }
2510
2511 /**
2512  * gst_element_class_install_std_props:
2513  * @klass: the #GstElementClass to add the properties to.
2514  * @first_name: the name of the first property.
2515  * in a NULL terminated
2516  * @...: the id and flags of the first property, followed by
2517  * further 'name', 'id', 'flags' triplets and terminated by NULL.
2518  *
2519  * Adds a list of standardized properties with types to the @klass.
2520  * the id is for the property switch in your get_prop method, and
2521  * the flags determine readability / writeability.
2522  **/
2523 void
2524 gst_element_class_install_std_props (GstElementClass * klass,
2525     const gchar * first_name, ...)
2526 {
2527   const char *name;
2528
2529   va_list args;
2530
2531   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
2532
2533   va_start (args, first_name);
2534
2535   name = first_name;
2536
2537   while (name) {
2538     int arg_id = va_arg (args, int);
2539     int flags = va_arg (args, int);
2540
2541     gst_element_populate_std_props ((GObjectClass *) klass, name, arg_id,
2542         flags);
2543
2544     name = va_arg (args, char *);
2545   }
2546
2547   va_end (args);
2548 }
2549
2550
2551 /**
2552  * gst_buffer_merge:
2553  * @buf1: the first source #GstBuffer to merge.
2554  * @buf2: the second source #GstBuffer to merge.
2555  *
2556  * Create a new buffer that is the concatenation of the two source
2557  * buffers.  The original source buffers will not be modified or
2558  * unref'd.  Make sure you unref the source buffers if they are not used
2559  * anymore afterwards.
2560  *
2561  * If the buffers point to contiguous areas of memory, the buffer
2562  * is created without copying the data.
2563  *
2564  * Returns: the new #GstBuffer which is the concatenation of the source buffers.
2565  */
2566 GstBuffer *
2567 gst_buffer_merge (GstBuffer * buf1, GstBuffer * buf2)
2568 {
2569   GstBuffer *result;
2570
2571   /* we're just a specific case of the more general gst_buffer_span() */
2572   result = gst_buffer_span (buf1, 0, buf2, buf1->size + buf2->size);
2573
2574   return result;
2575 }
2576
2577 /**
2578  * gst_buffer_join:
2579  * @buf1: the first source #GstBuffer.
2580  * @buf2: the second source #GstBuffer.
2581  *
2582  * Create a new buffer that is the concatenation of the two source
2583  * buffers, and unrefs the original source buffers.
2584  *
2585  * If the buffers point to contiguous areas of memory, the buffer
2586  * is created without copying the data.
2587  *
2588  * This is a convenience function for C programmers. See also
2589  * gst_buffer_merge(), which does the same thing without
2590  * unreffing the input parameters. Language bindings without
2591  * explicit reference counting should not wrap this function.
2592  *
2593  * Returns: the new #GstBuffer which is the concatenation of the source buffers.
2594  */
2595 GstBuffer *
2596 gst_buffer_join (GstBuffer * buf1, GstBuffer * buf2)
2597 {
2598   GstBuffer *result;
2599
2600   result = gst_buffer_span (buf1, 0, buf2, buf1->size + buf2->size);
2601   gst_buffer_unref (buf1);
2602   gst_buffer_unref (buf2);
2603
2604   return result;
2605 }
2606
2607
2608 /**
2609  * gst_buffer_stamp:
2610  * @dest: buffer to stamp
2611  * @src: buffer to stamp from
2612  *
2613  * Copies additional information (the timestamp, duration, and offset start
2614  * and end) from one buffer to the other.
2615  *
2616  * This function does not copy any buffer flags or caps and is equivalent to
2617  * gst_buffer_copy_metadata(@dest, @src, GST_BUFFER_COPY_TIMESTAMPS).
2618  *
2619  * Deprecated: use gst_buffer_copy_metadata() instead, it provides more
2620  * control.
2621  */
2622 #ifndef GST_REMOVE_DEPRECATED
2623 void
2624 gst_buffer_stamp (GstBuffer * dest, const GstBuffer * src)
2625 {
2626   gst_buffer_copy_metadata (dest, src, GST_BUFFER_COPY_TIMESTAMPS);
2627 }
2628 #endif /* GST_REMOVE_DEPRECATED */
2629
2630 static gboolean
2631 intersect_caps_func (GstPad * pad, GValue * ret, GstPad * orig)
2632 {
2633   /* skip the pad, the request came from */
2634   if (G_UNLIKELY (pad != orig)) {
2635     GstCaps *peercaps, *existing;
2636
2637     existing = g_value_get_pointer (ret);
2638     peercaps = gst_pad_peer_get_caps_reffed (pad);
2639     if (G_LIKELY (peercaps)) {
2640       g_value_set_pointer (ret, gst_caps_intersect (existing, peercaps));
2641       gst_caps_unref (existing);
2642       gst_caps_unref (peercaps);
2643     }
2644   }
2645   gst_object_unref (pad);
2646   return TRUE;
2647 }
2648
2649 /**
2650  * gst_pad_proxy_getcaps:
2651  * @pad: a #GstPad to proxy.
2652  *
2653  * Calls gst_pad_get_allowed_caps() for every other pad belonging to the
2654  * same element as @pad, and returns the intersection of the results.
2655  *
2656  * This function is useful as a default getcaps function for an element
2657  * that can handle any stream format, but requires all its pads to have
2658  * the same caps.  Two such elements are tee and adder.
2659  *
2660  * Returns: the intersection of the other pads' allowed caps.
2661  */
2662 GstCaps *
2663 gst_pad_proxy_getcaps (GstPad * pad)
2664 {
2665   GstElement *element;
2666   GstCaps *caps, *intersected;
2667   GstIterator *iter;
2668   GstIteratorResult res;
2669   GValue ret = { 0, };
2670
2671   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2672
2673   GST_CAT_DEBUG (GST_CAT_PADS, "proxying getcaps for %s:%s",
2674       GST_DEBUG_PAD_NAME (pad));
2675
2676   element = gst_pad_get_parent_element (pad);
2677   if (element == NULL)
2678     return NULL;
2679
2680   /* value to hold the return, by default it holds ANY, the ref is taken by
2681    * the GValue. */
2682   g_value_init (&ret, G_TYPE_POINTER);
2683   g_value_set_pointer (&ret, gst_caps_new_any ());
2684
2685   iter = gst_element_iterate_pads (element);
2686   while (1) {
2687     res =
2688         gst_iterator_fold (iter, (GstIteratorFoldFunction) intersect_caps_func,
2689         &ret, pad);
2690     switch (res) {
2691       case GST_ITERATOR_RESYNC:
2692         /* unref any value stored */
2693         if ((caps = g_value_get_pointer (&ret)))
2694           gst_caps_unref (caps);
2695         /* need to reset the result again to ANY */
2696         g_value_set_pointer (&ret, gst_caps_new_any ());
2697         gst_iterator_resync (iter);
2698         break;
2699       case GST_ITERATOR_DONE:
2700         /* all pads iterated, return collected value */
2701         goto done;
2702       default:
2703         /* iterator returned _ERROR or premature end with _OK,
2704          * mark an error and exit */
2705         if ((caps = g_value_get_pointer (&ret)))
2706           gst_caps_unref (caps);
2707         g_value_set_pointer (&ret, NULL);
2708         goto error;
2709     }
2710   }
2711 done:
2712   gst_iterator_free (iter);
2713
2714   gst_object_unref (element);
2715
2716   caps = g_value_get_pointer (&ret);
2717   g_value_unset (&ret);
2718
2719   intersected = gst_caps_intersect (caps, gst_pad_get_pad_template_caps (pad));
2720   gst_caps_unref (caps);
2721
2722   return intersected;
2723
2724   /* ERRORS */
2725 error:
2726   {
2727     g_warning ("Pad list returned error on element %s",
2728         GST_ELEMENT_NAME (element));
2729     gst_iterator_free (iter);
2730     gst_object_unref (element);
2731     return NULL;
2732   }
2733 }
2734
2735 typedef struct
2736 {
2737   GstPad *orig;
2738   GstCaps *caps;
2739 } LinkData;
2740
2741 static gboolean
2742 link_fold_func (GstPad * pad, GValue * ret, LinkData * data)
2743 {
2744   gboolean success = TRUE;
2745
2746   if (pad != data->orig) {
2747     success = gst_pad_set_caps (pad, data->caps);
2748     g_value_set_boolean (ret, success);
2749   }
2750   gst_object_unref (pad);
2751
2752   return success;
2753 }
2754
2755 /**
2756  * gst_pad_proxy_setcaps
2757  * @pad: a #GstPad to proxy from
2758  * @caps: the #GstCaps to link with
2759  *
2760  * Calls gst_pad_set_caps() for every other pad belonging to the
2761  * same element as @pad.  If gst_pad_set_caps() fails on any pad,
2762  * the proxy setcaps fails. May be used only during negotiation.
2763  *
2764  * Returns: TRUE if sucessful
2765  */
2766 gboolean
2767 gst_pad_proxy_setcaps (GstPad * pad, GstCaps * caps)
2768 {
2769   GstElement *element;
2770   GstIterator *iter;
2771   GstIteratorResult res;
2772   GValue ret = { 0, };
2773   LinkData data;
2774
2775   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2776   g_return_val_if_fail (caps != NULL, FALSE);
2777
2778   GST_CAT_DEBUG (GST_CAT_PADS, "proxying pad link for %s:%s",
2779       GST_DEBUG_PAD_NAME (pad));
2780
2781   element = gst_pad_get_parent_element (pad);
2782   if (element == NULL)
2783     return FALSE;
2784
2785   iter = gst_element_iterate_pads (element);
2786
2787   g_value_init (&ret, G_TYPE_BOOLEAN);
2788   g_value_set_boolean (&ret, TRUE);
2789   data.orig = pad;
2790   data.caps = caps;
2791
2792   res = gst_iterator_fold (iter, (GstIteratorFoldFunction) link_fold_func,
2793       &ret, &data);
2794   gst_iterator_free (iter);
2795
2796   if (res != GST_ITERATOR_DONE)
2797     goto pads_changed;
2798
2799   gst_object_unref (element);
2800
2801   /* ok not to unset the gvalue */
2802   return g_value_get_boolean (&ret);
2803
2804   /* ERRORS */
2805 pads_changed:
2806   {
2807     g_warning ("Pad list changed during proxy_pad_link for element %s",
2808         GST_ELEMENT_NAME (element));
2809     gst_object_unref (element);
2810     return FALSE;
2811   }
2812 }
2813
2814 /**
2815  * gst_pad_query_position:
2816  * @pad: a #GstPad to invoke the position query on.
2817  * @format: (inout): a pointer to the #GstFormat asked for.
2818  *          On return contains the #GstFormat used.
2819  * @cur: (out): A location in which to store the current position, or NULL.
2820  *
2821  * Queries a pad for the stream position.
2822  *
2823  * Returns: TRUE if the query could be performed.
2824  */
2825 gboolean
2826 gst_pad_query_position (GstPad * pad, GstFormat * format, gint64 * cur)
2827 {
2828   GstQuery *query;
2829   gboolean ret;
2830
2831   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2832   g_return_val_if_fail (format != NULL, FALSE);
2833
2834   query = gst_query_new_position (*format);
2835   ret = gst_pad_query (pad, query);
2836
2837   if (ret)
2838     gst_query_parse_position (query, format, cur);
2839
2840   gst_query_unref (query);
2841
2842   return ret;
2843 }
2844
2845 /**
2846  * gst_pad_query_peer_position:
2847  * @pad: a #GstPad on whose peer to invoke the position query on.
2848  *       Must be a sink pad.
2849  * @format: a pointer to the #GstFormat asked for.
2850  *          On return contains the #GstFormat used.
2851  * @cur: A location in which to store the current position, or NULL.
2852  *
2853  * Queries the peer of a given sink pad for the stream position.
2854  *
2855  * Returns: TRUE if the query could be performed.
2856  */
2857 gboolean
2858 gst_pad_query_peer_position (GstPad * pad, GstFormat * format, gint64 * cur)
2859 {
2860   gboolean ret = FALSE;
2861   GstPad *peer;
2862
2863   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2864   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
2865   g_return_val_if_fail (format != NULL, FALSE);
2866
2867   peer = gst_pad_get_peer (pad);
2868   if (peer) {
2869     ret = gst_pad_query_position (peer, format, cur);
2870     gst_object_unref (peer);
2871   }
2872
2873   return ret;
2874 }
2875
2876 /**
2877  * gst_pad_query_duration:
2878  * @pad: a #GstPad to invoke the duration query on.
2879  * @format: a pointer to the #GstFormat asked for.
2880  *          On return contains the #GstFormat used.
2881  * @duration: A location in which to store the total duration, or NULL.
2882  *
2883  * Queries a pad for the total stream duration.
2884  *
2885  * Returns: TRUE if the query could be performed.
2886  */
2887 gboolean
2888 gst_pad_query_duration (GstPad * pad, GstFormat * format, gint64 * duration)
2889 {
2890   GstQuery *query;
2891   gboolean ret;
2892
2893   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2894   g_return_val_if_fail (format != NULL, FALSE);
2895
2896   query = gst_query_new_duration (*format);
2897   ret = gst_pad_query (pad, query);
2898
2899   if (ret)
2900     gst_query_parse_duration (query, format, duration);
2901
2902   gst_query_unref (query);
2903
2904   return ret;
2905 }
2906
2907 /**
2908  * gst_pad_query_peer_duration:
2909  * @pad: a #GstPad on whose peer pad to invoke the duration query on.
2910  *       Must be a sink pad.
2911  * @format: a pointer to the #GstFormat asked for.
2912  *          On return contains the #GstFormat used.
2913  * @duration: A location in which to store the total duration, or NULL.
2914  *
2915  * Queries the peer pad of a given sink pad for the total stream duration.
2916  *
2917  * Returns: TRUE if the query could be performed.
2918  */
2919 gboolean
2920 gst_pad_query_peer_duration (GstPad * pad, GstFormat * format,
2921     gint64 * duration)
2922 {
2923   gboolean ret = FALSE;
2924   GstPad *peer;
2925
2926   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2927   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
2928   g_return_val_if_fail (format != NULL, FALSE);
2929
2930   peer = gst_pad_get_peer (pad);
2931   if (peer) {
2932     ret = gst_pad_query_duration (peer, format, duration);
2933     gst_object_unref (peer);
2934   }
2935
2936   return ret;
2937 }
2938
2939 /**
2940  * gst_pad_query_convert:
2941  * @pad: a #GstPad to invoke the convert query on.
2942  * @src_format: a #GstFormat to convert from.
2943  * @src_val: a value to convert.
2944  * @dest_format: a pointer to the #GstFormat to convert to.
2945  * @dest_val: a pointer to the result.
2946  *
2947  * Queries a pad to convert @src_val in @src_format to @dest_format.
2948  *
2949  * Returns: TRUE if the query could be performed.
2950  */
2951 gboolean
2952 gst_pad_query_convert (GstPad * pad, GstFormat src_format, gint64 src_val,
2953     GstFormat * dest_format, gint64 * dest_val)
2954 {
2955   GstQuery *query;
2956   gboolean ret;
2957
2958   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2959   g_return_val_if_fail (dest_format != NULL, FALSE);
2960   g_return_val_if_fail (dest_val != NULL, FALSE);
2961
2962   if (*dest_format == src_format) {
2963     *dest_val = src_val;
2964     return TRUE;
2965   }
2966
2967   query = gst_query_new_convert (src_format, src_val, *dest_format);
2968   ret = gst_pad_query (pad, query);
2969
2970   if (ret)
2971     gst_query_parse_convert (query, NULL, NULL, dest_format, dest_val);
2972
2973   gst_query_unref (query);
2974
2975   return ret;
2976 }
2977
2978 /**
2979  * gst_pad_query_peer_convert:
2980  * @pad: a #GstPad, on whose peer pad to invoke the convert query on.
2981  *       Must be a sink pad.
2982  * @src_format: a #GstFormat to convert from.
2983  * @src_val: a value to convert.
2984  * @dest_format: a pointer to the #GstFormat to convert to.
2985  * @dest_val: a pointer to the result.
2986  *
2987  * Queries the peer pad of a given sink pad to convert @src_val in @src_format
2988  * to @dest_format.
2989  *
2990  * Returns: TRUE if the query could be performed.
2991  */
2992 gboolean
2993 gst_pad_query_peer_convert (GstPad * pad, GstFormat src_format, gint64 src_val,
2994     GstFormat * dest_format, gint64 * dest_val)
2995 {
2996   gboolean ret = FALSE;
2997   GstPad *peer;
2998
2999   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
3000   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
3001   g_return_val_if_fail (src_val >= 0, FALSE);
3002   g_return_val_if_fail (dest_format != NULL, FALSE);
3003   g_return_val_if_fail (dest_val != NULL, FALSE);
3004
3005   peer = gst_pad_get_peer (pad);
3006   if (peer) {
3007     ret = gst_pad_query_convert (peer, src_format, src_val, dest_format,
3008         dest_val);
3009     gst_object_unref (peer);
3010   }
3011
3012   return ret;
3013 }
3014
3015 /**
3016  * gst_atomic_int_set:
3017  * @atomic_int: pointer to an atomic integer
3018  * @value: value to set
3019  *
3020  * Unconditionally sets the atomic integer to @value.
3021  *
3022  * Deprecated: Use g_atomic_int_set().
3023  *
3024  */
3025 #ifndef GST_REMOVE_DEPRECATED
3026 void
3027 gst_atomic_int_set (gint * atomic_int, gint value)
3028 {
3029   g_atomic_int_set (atomic_int, value);
3030 }
3031 #endif
3032
3033 /**
3034  * gst_pad_add_data_probe:
3035  * @pad: pad to add the data probe handler to
3036  * @handler: function to call when data is passed over pad
3037  * @data: data to pass along with the handler
3038  *
3039  * Adds a "data probe" to a pad. This function will be called whenever data
3040  * passes through a pad. In this case data means both events and buffers. The
3041  * probe will be called with the data as an argument, meaning @handler should
3042  * have the same callback signature as the #GstPad::have-data signal.
3043  * Note that the data will have a reference count greater than 1, so it will
3044  * be immutable -- you must not change it.
3045  *
3046  * For source pads, the probe will be called after the blocking function, if any
3047  * (see gst_pad_set_blocked_async()), but before looking up the peer to chain
3048  * to. For sink pads, the probe function will be called before configuring the
3049  * sink with new caps, if any, and before calling the pad's chain function.
3050  *
3051  * Your data probe should return TRUE to let the data continue to flow, or FALSE
3052  * to drop it. Dropping data is rarely useful, but occasionally comes in handy
3053  * with events.
3054  *
3055  * Although probes are implemented internally by connecting @handler to the
3056  * have-data signal on the pad, if you want to remove a probe it is insufficient
3057  * to only call g_signal_handler_disconnect on the returned handler id. To
3058  * remove a probe, use the appropriate function, such as
3059  * gst_pad_remove_data_probe().
3060  *
3061  * Returns: The handler id.
3062  */
3063 gulong
3064 gst_pad_add_data_probe (GstPad * pad, GCallback handler, gpointer data)
3065 {
3066   return gst_pad_add_data_probe_full (pad, handler, data, NULL);
3067 }
3068
3069 /**
3070  * gst_pad_add_data_probe_full:
3071  * @pad: pad to add the data probe handler to
3072  * @handler: function to call when data is passed over pad
3073  * @data: data to pass along with the handler
3074  * @notify: function to call when the probe is disconnected, or NULL
3075  *
3076  * Adds a "data probe" to a pad. This function will be called whenever data
3077  * passes through a pad. In this case data means both events and buffers. The
3078  * probe will be called with the data as an argument, meaning @handler should
3079  * have the same callback signature as the #GstPad::have-data signal.
3080  * Note that the data will have a reference count greater than 1, so it will
3081  * be immutable -- you must not change it.
3082  *
3083  * For source pads, the probe will be called after the blocking function, if any
3084  * (see gst_pad_set_blocked_async()), but before looking up the peer to chain
3085  * to. For sink pads, the probe function will be called before configuring the
3086  * sink with new caps, if any, and before calling the pad's chain function.
3087  *
3088  * Your data probe should return TRUE to let the data continue to flow, or FALSE
3089  * to drop it. Dropping data is rarely useful, but occasionally comes in handy
3090  * with events.
3091  *
3092  * Although probes are implemented internally by connecting @handler to the
3093  * have-data signal on the pad, if you want to remove a probe it is insufficient
3094  * to only call g_signal_handler_disconnect on the returned handler id. To
3095  * remove a probe, use the appropriate function, such as
3096  * gst_pad_remove_data_probe().
3097  *
3098  * The @notify function is called when the probe is disconnected and usually
3099  * used to free @data.
3100  *
3101  * Returns: The handler id.
3102  *
3103  * Since: 0.10.20
3104  */
3105 gulong
3106 gst_pad_add_data_probe_full (GstPad * pad, GCallback handler,
3107     gpointer data, GDestroyNotify notify)
3108 {
3109   gulong sigid;
3110
3111   g_return_val_if_fail (GST_IS_PAD (pad), 0);
3112   g_return_val_if_fail (handler != NULL, 0);
3113
3114   GST_OBJECT_LOCK (pad);
3115
3116   /* we only expose a GDestroyNotify in our API because that's less confusing */
3117   sigid = g_signal_connect_data (pad, "have-data", handler, data,
3118       (GClosureNotify) notify, 0);
3119
3120   GST_PAD_DO_EVENT_SIGNALS (pad)++;
3121   GST_PAD_DO_BUFFER_SIGNALS (pad)++;
3122   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3123       "adding data probe, now %d data, %d event probes",
3124       GST_PAD_DO_BUFFER_SIGNALS (pad), GST_PAD_DO_EVENT_SIGNALS (pad));
3125   GST_OBJECT_UNLOCK (pad);
3126
3127   return sigid;
3128 }
3129
3130 /**
3131  * gst_pad_add_event_probe:
3132  * @pad: pad to add the event probe handler to
3133  * @handler: function to call when events are passed over pad
3134  * @data: data to pass along with the handler
3135  *
3136  * Adds a probe that will be called for all events passing through a pad. See
3137  * gst_pad_add_data_probe() for more information.
3138  *
3139  * Returns: The handler id
3140  */
3141 gulong
3142 gst_pad_add_event_probe (GstPad * pad, GCallback handler, gpointer data)
3143 {
3144   return gst_pad_add_event_probe_full (pad, handler, data, NULL);
3145 }
3146
3147 /**
3148  * gst_pad_add_event_probe_full:
3149  * @pad: pad to add the event probe handler to
3150  * @handler: function to call when events are passed over pad
3151  * @data: data to pass along with the handler, or NULL
3152  * @notify: function to call when probe is disconnected, or NULL
3153  *
3154  * Adds a probe that will be called for all events passing through a pad. See
3155  * gst_pad_add_data_probe() for more information.
3156  *
3157  * The @notify function is called when the probe is disconnected and usually
3158  * used to free @data.
3159  *
3160  * Returns: The handler id
3161  *
3162  * Since: 0.10.20
3163  */
3164 gulong
3165 gst_pad_add_event_probe_full (GstPad * pad, GCallback handler,
3166     gpointer data, GDestroyNotify notify)
3167 {
3168   gulong sigid;
3169
3170   g_return_val_if_fail (GST_IS_PAD (pad), 0);
3171   g_return_val_if_fail (handler != NULL, 0);
3172
3173   GST_OBJECT_LOCK (pad);
3174
3175   /* we only expose a GDestroyNotify in our API because that's less confusing */
3176   sigid = g_signal_connect_data (pad, "have-data::event", handler, data,
3177       (GClosureNotify) notify, 0);
3178
3179   GST_PAD_DO_EVENT_SIGNALS (pad)++;
3180   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "adding event probe, now %d probes",
3181       GST_PAD_DO_EVENT_SIGNALS (pad));
3182   GST_OBJECT_UNLOCK (pad);
3183
3184   return sigid;
3185 }
3186
3187 /**
3188  * gst_pad_add_buffer_probe:
3189  * @pad: pad to add the buffer probe handler to
3190  * @handler: function to call when buffers are passed over pad
3191  * @data: data to pass along with the handler
3192  *
3193  * Adds a probe that will be called for all buffers passing through a pad. See
3194  * gst_pad_add_data_probe() for more information.
3195  *
3196  * Returns: The handler id
3197  */
3198 gulong
3199 gst_pad_add_buffer_probe (GstPad * pad, GCallback handler, gpointer data)
3200 {
3201   return gst_pad_add_buffer_probe_full (pad, handler, data, NULL);
3202 }
3203
3204 /**
3205  * gst_pad_add_buffer_probe_full:
3206  * @pad: pad to add the buffer probe handler to
3207  * @handler: function to call when buffer are passed over pad
3208  * @data: data to pass along with the handler
3209  * @notify: function to call when the probe is disconnected, or NULL
3210  *
3211  * Adds a probe that will be called for all buffers passing through a pad. See
3212  * gst_pad_add_data_probe() for more information.
3213  *
3214  * The @notify function is called when the probe is disconnected and usually
3215  * used to free @data.
3216  *
3217  * Returns: The handler id
3218  *
3219  * Since: 0.10.20
3220  */
3221 gulong
3222 gst_pad_add_buffer_probe_full (GstPad * pad, GCallback handler,
3223     gpointer data, GDestroyNotify notify)
3224 {
3225   gulong sigid;
3226
3227   g_return_val_if_fail (GST_IS_PAD (pad), 0);
3228   g_return_val_if_fail (handler != NULL, 0);
3229
3230   GST_OBJECT_LOCK (pad);
3231
3232   /* we only expose a GDestroyNotify in our API because that's less confusing */
3233   sigid = g_signal_connect_data (pad, "have-data::buffer", handler, data,
3234       (GClosureNotify) notify, 0);
3235
3236   GST_PAD_DO_BUFFER_SIGNALS (pad)++;
3237   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad, "adding buffer probe, now %d probes",
3238       GST_PAD_DO_BUFFER_SIGNALS (pad));
3239   GST_OBJECT_UNLOCK (pad);
3240
3241   return sigid;
3242 }
3243
3244 /**
3245  * gst_pad_remove_data_probe:
3246  * @pad: pad to remove the data probe handler from
3247  * @handler_id: handler id returned from gst_pad_add_data_probe
3248  *
3249  * Removes a data probe from @pad.
3250  */
3251 void
3252 gst_pad_remove_data_probe (GstPad * pad, guint handler_id)
3253 {
3254   g_return_if_fail (GST_IS_PAD (pad));
3255   g_return_if_fail (handler_id > 0);
3256
3257   GST_OBJECT_LOCK (pad);
3258   g_signal_handler_disconnect (pad, handler_id);
3259   GST_PAD_DO_BUFFER_SIGNALS (pad)--;
3260   GST_PAD_DO_EVENT_SIGNALS (pad)--;
3261   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3262       "removed data probe, now %d event, %d buffer probes",
3263       GST_PAD_DO_EVENT_SIGNALS (pad), GST_PAD_DO_BUFFER_SIGNALS (pad));
3264   GST_OBJECT_UNLOCK (pad);
3265
3266 }
3267
3268 /**
3269  * gst_pad_remove_event_probe:
3270  * @pad: pad to remove the event probe handler from
3271  * @handler_id: handler id returned from gst_pad_add_event_probe
3272  *
3273  * Removes an event probe from @pad.
3274  */
3275 void
3276 gst_pad_remove_event_probe (GstPad * pad, guint handler_id)
3277 {
3278   g_return_if_fail (GST_IS_PAD (pad));
3279   g_return_if_fail (handler_id > 0);
3280
3281   GST_OBJECT_LOCK (pad);
3282   g_signal_handler_disconnect (pad, handler_id);
3283   GST_PAD_DO_EVENT_SIGNALS (pad)--;
3284   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3285       "removed event probe, now %d event probes",
3286       GST_PAD_DO_EVENT_SIGNALS (pad));
3287   GST_OBJECT_UNLOCK (pad);
3288 }
3289
3290 /**
3291  * gst_pad_remove_buffer_probe:
3292  * @pad: pad to remove the buffer probe handler from
3293  * @handler_id: handler id returned from gst_pad_add_buffer_probe
3294  *
3295  * Removes a buffer probe from @pad.
3296  */
3297 void
3298 gst_pad_remove_buffer_probe (GstPad * pad, guint handler_id)
3299 {
3300   g_return_if_fail (GST_IS_PAD (pad));
3301   g_return_if_fail (handler_id > 0);
3302
3303   GST_OBJECT_LOCK (pad);
3304   g_signal_handler_disconnect (pad, handler_id);
3305   GST_PAD_DO_BUFFER_SIGNALS (pad)--;
3306   GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
3307       "removed buffer probe, now %d buffer probes",
3308       GST_PAD_DO_BUFFER_SIGNALS (pad));
3309   GST_OBJECT_UNLOCK (pad);
3310
3311 }
3312
3313 /**
3314  * gst_element_found_tags_for_pad:
3315  * @element: element for which to post taglist to bus.
3316  * @pad: pad on which to push tag-event.
3317  * @list: the taglist to post on the bus and create event from.
3318  *
3319  * Posts a message to the bus that new tags were found and pushes the
3320  * tags as event. Takes ownership of the @list.
3321  *
3322  * This is a utility method for elements. Applications should use the
3323  * #GstTagSetter interface.
3324  */
3325 void
3326 gst_element_found_tags_for_pad (GstElement * element,
3327     GstPad * pad, GstTagList * list)
3328 {
3329   g_return_if_fail (element != NULL);
3330   g_return_if_fail (pad != NULL);
3331   g_return_if_fail (list != NULL);
3332
3333   gst_pad_push_event (pad, gst_event_new_tag (gst_tag_list_copy (list)));
3334   /* FIXME 0.11: Set the pad as source. */
3335   gst_element_post_message (element,
3336       gst_message_new_tag_full (GST_OBJECT (element), pad, list));
3337 }
3338
3339 static void
3340 push_and_ref (GstPad * pad, GstEvent * event)
3341 {
3342   gst_pad_push_event (pad, gst_event_ref (event));
3343   /* iterator refs pad, we unref when we are done with it */
3344   gst_object_unref (pad);
3345 }
3346
3347 /**
3348  * gst_element_found_tags:
3349  * @element: element for which we found the tags.
3350  * @list: list of tags.
3351  *
3352  * Posts a message to the bus that new tags were found, and pushes an event
3353  * to all sourcepads. Takes ownership of the @list.
3354  *
3355  * This is a utility method for elements. Applications should use the
3356  * #GstTagSetter interface.
3357  */
3358 void
3359 gst_element_found_tags (GstElement * element, GstTagList * list)
3360 {
3361   GstIterator *iter;
3362   GstEvent *event;
3363
3364   g_return_if_fail (element != NULL);
3365   g_return_if_fail (list != NULL);
3366
3367   iter = gst_element_iterate_src_pads (element);
3368   event = gst_event_new_tag (gst_tag_list_copy (list));
3369   gst_iterator_foreach (iter, (GFunc) push_and_ref, event);
3370   gst_iterator_free (iter);
3371   gst_event_unref (event);
3372
3373   gst_element_post_message (element,
3374       gst_message_new_tag (GST_OBJECT (element), list));
3375 }
3376
3377 static GstPad *
3378 element_find_unlinked_pad (GstElement * element, GstPadDirection direction)
3379 {
3380   GstIterator *iter;
3381   GstPad *unlinked_pad = NULL;
3382   gboolean done;
3383
3384   switch (direction) {
3385     case GST_PAD_SRC:
3386       iter = gst_element_iterate_src_pads (element);
3387       break;
3388     case GST_PAD_SINK:
3389       iter = gst_element_iterate_sink_pads (element);
3390       break;
3391     default:
3392       g_return_val_if_reached (NULL);
3393   }
3394
3395   done = FALSE;
3396   while (!done) {
3397     gpointer pad;
3398
3399     switch (gst_iterator_next (iter, &pad)) {
3400       case GST_ITERATOR_OK:{
3401         GstPad *peer;
3402
3403         GST_CAT_LOG (GST_CAT_ELEMENT_PADS, "examining pad %s:%s",
3404             GST_DEBUG_PAD_NAME (pad));
3405
3406         peer = gst_pad_get_peer (GST_PAD (pad));
3407         if (peer == NULL) {
3408           unlinked_pad = pad;
3409           done = TRUE;
3410           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
3411               "found existing unlinked pad %s:%s",
3412               GST_DEBUG_PAD_NAME (unlinked_pad));
3413         } else {
3414           gst_object_unref (pad);
3415           gst_object_unref (peer);
3416         }
3417         break;
3418       }
3419       case GST_ITERATOR_DONE:
3420         done = TRUE;
3421         break;
3422       case GST_ITERATOR_RESYNC:
3423         gst_iterator_resync (iter);
3424         break;
3425       case GST_ITERATOR_ERROR:
3426         g_return_val_if_reached (NULL);
3427         break;
3428     }
3429   }
3430
3431   gst_iterator_free (iter);
3432
3433   return unlinked_pad;
3434 }
3435
3436 /**
3437  * gst_bin_find_unlinked_pad:
3438  * @bin: bin in which to look for elements with unlinked pads
3439  * @direction: whether to look for an unlinked source or sink pad
3440  *
3441  * Recursively looks for elements with an unlinked pad of the given
3442  * direction within the specified bin and returns an unlinked pad
3443  * if one is found, or NULL otherwise. If a pad is found, the caller
3444  * owns a reference to it and should use gst_object_unref() on the
3445  * pad when it is not needed any longer.
3446  *
3447  * Returns: unlinked pad of the given direction, or NULL.
3448  *
3449  * Since: 0.10.20
3450  */
3451 GstPad *
3452 gst_bin_find_unlinked_pad (GstBin * bin, GstPadDirection direction)
3453 {
3454   GstIterator *iter;
3455   gboolean done;
3456   GstPad *pad = NULL;
3457
3458   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3459   g_return_val_if_fail (direction != GST_PAD_UNKNOWN, NULL);
3460
3461   done = FALSE;
3462   iter = gst_bin_iterate_recurse (bin);
3463   while (!done) {
3464     gpointer element;
3465
3466     switch (gst_iterator_next (iter, &element)) {
3467       case GST_ITERATOR_OK:
3468         pad = element_find_unlinked_pad (GST_ELEMENT (element), direction);
3469         gst_object_unref (element);
3470         if (pad != NULL)
3471           done = TRUE;
3472         break;
3473       case GST_ITERATOR_DONE:
3474         done = TRUE;
3475         break;
3476       case GST_ITERATOR_RESYNC:
3477         gst_iterator_resync (iter);
3478         break;
3479       case GST_ITERATOR_ERROR:
3480         g_return_val_if_reached (NULL);
3481         break;
3482     }
3483   }
3484
3485   gst_iterator_free (iter);
3486
3487   return pad;
3488 }
3489
3490 /**
3491  * gst_bin_find_unconnected_pad:
3492  * @bin: bin in which to look for elements with unlinked pads
3493  * @direction: whether to look for an unlinked source or sink pad
3494  *
3495  * Recursively looks for elements with an unlinked pad of the given
3496  * direction within the specified bin and returns an unlinked pad
3497  * if one is found, or NULL otherwise. If a pad is found, the caller
3498  * owns a reference to it and should use gst_object_unref() on the
3499  * pad when it is not needed any longer.
3500  *
3501  * Returns: unlinked pad of the given direction, or NULL.
3502  *
3503  * Since: 0.10.3
3504  *
3505  * Deprecated: use gst_bin_find_unlinked_pad() instead.
3506  */
3507 #ifndef GST_REMOVE_DEPRECATED
3508 GstPad *
3509 gst_bin_find_unconnected_pad (GstBin * bin, GstPadDirection direction)
3510 {
3511   return gst_bin_find_unlinked_pad (bin, direction);
3512 }
3513 #endif
3514
3515 /**
3516  * gst_parse_bin_from_description:
3517  * @bin_description: command line describing the bin
3518  * @ghost_unlinked_pads: whether to automatically create ghost pads
3519  *     for unlinked source or sink pads within the bin
3520  * @err: where to store the error message in case of an error, or NULL
3521  *
3522  * This is a convenience wrapper around gst_parse_launch() to create a
3523  * #GstBin from a gst-launch-style pipeline description. See
3524  * gst_parse_launch() and the gst-launch man page for details about the
3525  * syntax. Ghost pads on the bin for unlinked source or sink pads
3526  * within the bin can automatically be created (but only a maximum of
3527  * one ghost pad for each direction will be created; if you expect
3528  * multiple unlinked source pads or multiple unlinked sink pads
3529  * and want them all ghosted, you will have to create the ghost pads
3530  * yourself).
3531  *
3532  * Returns: a newly-created bin, or NULL if an error occurred.
3533  *
3534  * Since: 0.10.3
3535  */
3536 GstElement *
3537 gst_parse_bin_from_description (const gchar * bin_description,
3538     gboolean ghost_unlinked_pads, GError ** err)
3539 {
3540   return gst_parse_bin_from_description_full (bin_description,
3541       ghost_unlinked_pads, NULL, 0, err);
3542 }
3543
3544 /**
3545  * gst_parse_bin_from_description_full:
3546  * @bin_description: command line describing the bin
3547  * @ghost_unlinked_pads: whether to automatically create ghost pads
3548  *     for unlinked source or sink pads within the bin
3549  * @context: a parse context allocated with gst_parse_context_new(), or %NULL
3550  * @flags: parsing options, or #GST_PARSE_FLAG_NONE
3551  * @err: where to store the error message in case of an error, or NULL
3552  *
3553  * This is a convenience wrapper around gst_parse_launch() to create a
3554  * #GstBin from a gst-launch-style pipeline description. See
3555  * gst_parse_launch() and the gst-launch man page for details about the
3556  * syntax. Ghost pads on the bin for unlinked source or sink pads
3557  * within the bin can automatically be created (but only a maximum of
3558  * one ghost pad for each direction will be created; if you expect
3559  * multiple unlinked source pads or multiple unlinked sink pads
3560  * and want them all ghosted, you will have to create the ghost pads
3561  * yourself).
3562  *
3563  * Returns: a newly-created bin, or NULL if an error occurred.
3564  *
3565  * Since: 0.10.20
3566  */
3567 GstElement *
3568 gst_parse_bin_from_description_full (const gchar * bin_description,
3569     gboolean ghost_unlinked_pads, GstParseContext * context,
3570     GstParseFlags flags, GError ** err)
3571 {
3572 #ifndef GST_DISABLE_PARSE
3573   GstPad *pad = NULL;
3574   GstBin *bin;
3575   gchar *desc;
3576
3577   g_return_val_if_fail (bin_description != NULL, NULL);
3578   g_return_val_if_fail (err == NULL || *err == NULL, NULL);
3579
3580   GST_DEBUG ("Making bin from description '%s'", bin_description);
3581
3582   /* parse the pipeline to a bin */
3583   desc = g_strdup_printf ("bin.( %s )", bin_description);
3584   bin = (GstBin *) gst_parse_launch_full (desc, context, flags, err);
3585   g_free (desc);
3586
3587   if (bin == NULL || (err && *err != NULL)) {
3588     if (bin)
3589       gst_object_unref (bin);
3590     return NULL;
3591   }
3592
3593   /* find pads and ghost them if necessary */
3594   if (ghost_unlinked_pads) {
3595     if ((pad = gst_bin_find_unlinked_pad (bin, GST_PAD_SRC))) {
3596       gst_element_add_pad (GST_ELEMENT (bin), gst_ghost_pad_new ("src", pad));
3597       gst_object_unref (pad);
3598     }
3599     if ((pad = gst_bin_find_unlinked_pad (bin, GST_PAD_SINK))) {
3600       gst_element_add_pad (GST_ELEMENT (bin), gst_ghost_pad_new ("sink", pad));
3601       gst_object_unref (pad);
3602     }
3603   }
3604
3605   return GST_ELEMENT (bin);
3606 #else
3607   gchar *msg;
3608
3609   GST_WARNING ("Disabled API called");
3610
3611   msg = gst_error_get_message (GST_CORE_ERROR, GST_CORE_ERROR_DISABLED);
3612   g_set_error (err, GST_CORE_ERROR, GST_CORE_ERROR_DISABLED, "%s", msg);
3613   g_free (msg);
3614
3615   return NULL;
3616 #endif
3617 }
3618
3619 /**
3620  * gst_type_register_static_full:
3621  * @parent_type: The GType of the parent type the newly registered type will
3622  *   derive from
3623  * @type_name: NULL-terminated string used as the name of the new type
3624  * @class_size: Size of the class structure.
3625  * @base_init: Location of the base initialization function (optional).
3626  * @base_finalize: Location of the base finalization function (optional).
3627  * @class_init: Location of the class initialization function for class types
3628  *   Location of the default vtable inititalization function for interface
3629  *   types. (optional)
3630  * @class_finalize: Location of the class finalization function for class types.
3631  *   Location of the default vtable finalization function for interface types.
3632  *   (optional)
3633  * @class_data: User-supplied data passed to the class init/finalize functions.
3634  * @instance_size: Size of the instance (object) structure (required for
3635  *   instantiatable types only).
3636  * @n_preallocs: The number of pre-allocated (cached) instances to reserve
3637  *   memory for (0 indicates no caching). Ignored on recent GLib's.
3638  * @instance_init: Location of the instance initialization function (optional,
3639  *   for instantiatable types only).
3640  * @value_table: A GTypeValueTable function table for generic handling of
3641  *   GValues of this type (usually only useful for fundamental types).
3642  * @flags: #GTypeFlags for this GType. E.g: G_TYPE_FLAG_ABSTRACT
3643  *
3644  * Helper function which constructs a #GTypeInfo structure and registers a
3645  * GType, but which generates less linker overhead than a static const
3646  * #GTypeInfo structure. For further details of the parameters, please see
3647  * #GTypeInfo in the GLib documentation.
3648  *
3649  * Registers type_name as the name of a new static type derived from
3650  * parent_type. The value of flags determines the nature (e.g. abstract or
3651  * not) of the type. It works by filling a GTypeInfo struct and calling
3652  * g_type_info_register_static().
3653  *
3654  * Returns: A #GType for the newly-registered type.
3655  *
3656  * Since: 0.10.14
3657  */
3658 GType
3659 gst_type_register_static_full (GType parent_type,
3660     const gchar * type_name,
3661     guint class_size,
3662     GBaseInitFunc base_init,
3663     GBaseFinalizeFunc base_finalize,
3664     GClassInitFunc class_init,
3665     GClassFinalizeFunc class_finalize,
3666     gconstpointer class_data,
3667     guint instance_size,
3668     guint16 n_preallocs,
3669     GInstanceInitFunc instance_init,
3670     const GTypeValueTable * value_table, GTypeFlags flags)
3671 {
3672   GTypeInfo info;
3673
3674   info.class_size = class_size;
3675   info.base_init = base_init;
3676   info.base_finalize = base_finalize;
3677   info.class_init = class_init;
3678   info.class_finalize = class_finalize;
3679   info.class_data = class_data;
3680   info.instance_size = instance_size;
3681   info.n_preallocs = n_preallocs;
3682   info.instance_init = instance_init;
3683   info.value_table = value_table;
3684
3685   return g_type_register_static (parent_type, type_name, &info, flags);
3686 }
3687
3688
3689 /**
3690  * gst_util_get_timestamp:
3691  *
3692  * Get a timestamp as GstClockTime to be used for interval meassurements.
3693  * The timestamp should not be interpreted in any other way.
3694  *
3695  * Returns: the timestamp
3696  *
3697  * Since: 0.10.16
3698  */
3699 GstClockTime
3700 gst_util_get_timestamp (void)
3701 {
3702 #if defined (HAVE_POSIX_TIMERS) && defined(HAVE_MONOTONIC_CLOCK)
3703   struct timespec now;
3704
3705   clock_gettime (CLOCK_MONOTONIC, &now);
3706   return GST_TIMESPEC_TO_TIME (now);
3707 #else
3708   GTimeVal now;
3709
3710   g_get_current_time (&now);
3711   return GST_TIMEVAL_TO_TIME (now);
3712 #endif
3713 }
3714
3715 /**
3716  * gst_util_array_binary_search:
3717  * @array: the sorted input array
3718  * @num_elements: number of elements in the array
3719  * @element_size: size of every element in bytes
3720  * @search_func: function to compare two elements, @search_data will always be passed as second argument
3721  * @mode: search mode that should be used
3722  * @search_data: element that should be found
3723  * @user_data: data to pass to @search_func
3724  *
3725  * Searches inside @array for @search_data by using the comparison function
3726  * @search_func. @array must be sorted ascending.
3727  *
3728  * As @search_data is always passed as second argument to @search_func it's
3729  * not required that @search_data has the same type as the array elements.
3730  *
3731  * The complexity of this search function is O(log (num_elements)).
3732  *
3733  * Returns: The address of the found element or %NULL if nothing was found
3734  *
3735  * Since: 0.10.23
3736  */
3737 gpointer
3738 gst_util_array_binary_search (gpointer array, guint num_elements,
3739     gsize element_size, GCompareDataFunc search_func, GstSearchMode mode,
3740     gconstpointer search_data, gpointer user_data)
3741 {
3742   glong left = 0, right = num_elements - 1, m;
3743   gint ret;
3744   guint8 *data = (guint8 *) array;
3745
3746   g_return_val_if_fail (array != NULL, NULL);
3747   g_return_val_if_fail (element_size > 0, NULL);
3748   g_return_val_if_fail (search_func != NULL, NULL);
3749
3750   /* 0. No elements => return NULL */
3751   if (num_elements == 0)
3752     return NULL;
3753
3754   /* 1. If search_data is before the 0th element return the 0th element */
3755   ret = search_func (data, search_data, user_data);
3756   if ((ret >= 0 && mode == GST_SEARCH_MODE_AFTER) || ret == 0)
3757     return data;
3758   else if (ret > 0)
3759     return NULL;
3760
3761   /* 2. If search_data is after the last element return the last element */
3762   ret =
3763       search_func (data + (num_elements - 1) * element_size, search_data,
3764       user_data);
3765   if ((ret <= 0 && mode == GST_SEARCH_MODE_BEFORE) || ret == 0)
3766     return data + (num_elements - 1) * element_size;
3767   else if (ret < 0)
3768     return NULL;
3769
3770   /* 3. else binary search */
3771   while (TRUE) {
3772     m = left + (right - left) / 2;
3773
3774     ret = search_func (data + m * element_size, search_data, user_data);
3775
3776     if (ret == 0) {
3777       return data + m * element_size;
3778     } else if (ret < 0) {
3779       left = m + 1;
3780     } else {
3781       right = m - 1;
3782     }
3783
3784     /* No exact match found */
3785     if (right < left) {
3786       if (mode == GST_SEARCH_MODE_EXACT) {
3787         return NULL;
3788       } else if (mode == GST_SEARCH_MODE_AFTER) {
3789         if (ret < 0)
3790           return (m < num_elements) ? data + (m + 1) * element_size : NULL;
3791         else
3792           return data + m * element_size;
3793       } else {
3794         if (ret < 0)
3795           return data + m * element_size;
3796         else
3797           return (m > 0) ? data + (m - 1) * element_size : NULL;
3798       }
3799     }
3800   }
3801 }
3802
3803 /* Finds the greatest common divisor.
3804  * Returns 1 if none other found.
3805  * This is Euclid's algorithm. */
3806
3807 /**
3808  * gst_util_greatest_common_divisor:
3809  * @a: First value as #gint
3810  * @b: Second value as #gint
3811  *
3812  * Calculates the greatest common divisor of @a
3813  * and @b.
3814  *
3815  * Returns: Greatest common divisor of @a and @b
3816  *
3817  * Since: 0.10.26
3818  */
3819 gint
3820 gst_util_greatest_common_divisor (gint a, gint b)
3821 {
3822   while (b != 0) {
3823     int temp = a;
3824
3825     a = b;
3826     b = temp % b;
3827   }
3828
3829   return ABS (a);
3830 }
3831
3832 /**
3833  * gst_util_fraction_to_double:
3834  * @src_n: Fraction numerator as #gint
3835  * @src_d: Fraction denominator #gint
3836  * @dest: pointer to a #gdouble for the result
3837  *
3838  * Transforms a #gdouble to a #GstFraction and simplifies
3839  * the result.
3840  *
3841  * Since: 0.10.26
3842  */
3843 void
3844 gst_util_fraction_to_double (gint src_n, gint src_d, gdouble * dest)
3845 {
3846   g_return_if_fail (dest != NULL);
3847   g_return_if_fail (src_d != 0);
3848
3849   *dest = ((gdouble) src_n) / ((gdouble) src_d);
3850 }
3851
3852 #define MAX_TERMS       30
3853 #define MIN_DIVISOR     1.0e-10
3854 #define MAX_ERROR       1.0e-20
3855
3856 /* use continued fractions to transform a double into a fraction,
3857  * see http://mathforum.org/dr.math/faq/faq.fractions.html#decfrac.
3858  * This algorithm takes care of overflows.
3859  */
3860
3861 /**
3862  * gst_util_double_to_fraction:
3863  * @src: #gdouble to transform
3864  * @dest_n: pointer to a #gint to hold the result numerator
3865  * @dest_d: pointer to a #gint to hold the result denominator
3866  *
3867  * Transforms a #gdouble to a #GstFraction and simplifies
3868  * the result.
3869  *
3870  * Since: 0.10.26
3871  */
3872 void
3873 gst_util_double_to_fraction (gdouble src, gint * dest_n, gint * dest_d)
3874 {
3875
3876   gdouble V, F;                 /* double being converted */
3877   gint N, D;                    /* will contain the result */
3878   gint A;                       /* current term in continued fraction */
3879   gint64 N1, D1;                /* numerator, denominator of last approx */
3880   gint64 N2, D2;                /* numerator, denominator of previous approx */
3881   gint i;
3882   gint gcd;
3883   gboolean negative = FALSE;
3884
3885   g_return_if_fail (dest_n != NULL);
3886   g_return_if_fail (dest_d != NULL);
3887
3888   /* initialize fraction being converted */
3889   F = src;
3890   if (F < 0.0) {
3891     F = -F;
3892     negative = TRUE;
3893   }
3894
3895   V = F;
3896   /* initialize fractions with 1/0, 0/1 */
3897   N1 = 1;
3898   D1 = 0;
3899   N2 = 0;
3900   D2 = 1;
3901   N = 1;
3902   D = 1;
3903
3904   for (i = 0; i < MAX_TERMS; i++) {
3905     /* get next term */
3906     A = (gint) F;               /* no floor() needed, F is always >= 0 */
3907     /* get new divisor */
3908     F = F - A;
3909
3910     /* calculate new fraction in temp */
3911     N2 = N1 * A + N2;
3912     D2 = D1 * A + D2;
3913
3914     /* guard against overflow */
3915     if (N2 > G_MAXINT || D2 > G_MAXINT) {
3916       break;
3917     }
3918
3919     N = N2;
3920     D = D2;
3921
3922     /* save last two fractions */
3923     N2 = N1;
3924     D2 = D1;
3925     N1 = N;
3926     D1 = D;
3927
3928     /* quit if dividing by zero or close enough to target */
3929     if (F < MIN_DIVISOR || fabs (V - ((gdouble) N) / D) < MAX_ERROR) {
3930       break;
3931     }
3932
3933     /* Take reciprocal */
3934     F = 1 / F;
3935   }
3936   /* fix for overflow */
3937   if (D == 0) {
3938     N = G_MAXINT;
3939     D = 1;
3940   }
3941   /* fix for negative */
3942   if (negative)
3943     N = -N;
3944
3945   /* simplify */
3946   gcd = gst_util_greatest_common_divisor (N, D);
3947   if (gcd) {
3948     N /= gcd;
3949     D /= gcd;
3950   }
3951
3952   /* set results */
3953   *dest_n = N;
3954   *dest_d = D;
3955 }
3956
3957 /**
3958  * gst_util_fraction_multiply:
3959  * @a_n: Numerator of first value
3960  * @a_d: Denominator of first value
3961  * @b_n: Numerator of second value
3962  * @b_d: Denominator of second value
3963  * @res_n: Pointer to #gint to hold the result numerator
3964  * @res_d: Pointer to #gint to hold the result denominator
3965  *
3966  * Multiplies the fractions @a_n/@a_d and @b_n/@b_d and stores
3967  * the result in @res_n and @res_d.
3968  *
3969  * Returns: %FALSE on overflow, %TRUE otherwise.
3970  *
3971  * Since: 0.10.26
3972  */
3973 gboolean
3974 gst_util_fraction_multiply (gint a_n, gint a_d, gint b_n, gint b_d,
3975     gint * res_n, gint * res_d)
3976 {
3977   gint gcd;
3978
3979   g_return_val_if_fail (res_n != NULL, FALSE);
3980   g_return_val_if_fail (res_d != NULL, FALSE);
3981   g_return_val_if_fail (a_d != 0, FALSE);
3982   g_return_val_if_fail (b_d != 0, FALSE);
3983
3984   gcd = gst_util_greatest_common_divisor (a_n, b_d);
3985   a_n /= gcd;
3986   b_d /= gcd;
3987   gcd = gst_util_greatest_common_divisor (a_d, b_n);
3988   a_d /= gcd;
3989   b_n /= gcd;
3990
3991   g_return_val_if_fail (a_n == 0 || G_MAXINT / ABS (a_n) >= ABS (b_n), FALSE);
3992   g_return_val_if_fail (G_MAXINT / ABS (a_d) >= ABS (b_d), FALSE);
3993
3994   *res_n = a_n * b_n;
3995   *res_d = a_d * b_d;
3996
3997   return TRUE;
3998 }
3999
4000 /**
4001  * gst_util_fraction_add:
4002  * @a_n: Numerator of first value
4003  * @a_d: Denominator of first value
4004  * @b_n: Numerator of second value
4005  * @b_d: Denominator of second value
4006  * @res_n: Pointer to #gint to hold the result numerator
4007  * @res_d: Pointer to #gint to hold the result denominator
4008  *
4009  * Adds the fractions @a_n/@a_d and @b_n/@b_d and stores
4010  * the result in @res_n and @res_d.
4011  *
4012  * Returns: %FALSE on overflow, %TRUE otherwise.
4013  *
4014  * Since: 0.10.26
4015  */
4016 gboolean
4017 gst_util_fraction_add (gint a_n, gint a_d, gint b_n, gint b_d, gint * res_n,
4018     gint * res_d)
4019 {
4020   gint gcd;
4021
4022   g_return_val_if_fail (res_n != NULL, FALSE);
4023   g_return_val_if_fail (res_d != NULL, FALSE);
4024   g_return_val_if_fail (a_d != 0, FALSE);
4025   g_return_val_if_fail (b_d != 0, FALSE);
4026
4027   if (a_n == 0) {
4028     *res_n = b_n;
4029     *res_d = b_d;
4030     return TRUE;
4031   }
4032   if (b_n == 0) {
4033     *res_n = a_n;
4034     *res_d = a_d;
4035     return TRUE;
4036   }
4037
4038   g_return_val_if_fail (a_n == 0 || G_MAXINT / ABS (a_n) >= ABS (b_n), FALSE);
4039   g_return_val_if_fail (G_MAXINT / ABS (a_d) >= ABS (b_d), FALSE);
4040   g_return_val_if_fail (G_MAXINT / ABS (a_d) >= ABS (b_d), FALSE);
4041
4042   *res_n = (a_n * b_d) + (a_d * b_n);
4043   *res_d = a_d * b_d;
4044
4045   gcd = gst_util_greatest_common_divisor (*res_n, *res_d);
4046   *res_n /= gcd;
4047   *res_d /= gcd;
4048
4049   return TRUE;
4050 }