gst/gstutils.c: Fix memleak (#351502).
[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: gtk_get_property stuff, etc.
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 "gstinfo.h"
38 #include "gstparse.h"
39 #include "gst-i18n-lib.h"
40
41
42 /**
43  * gst_util_dump_mem:
44  * @mem: a pointer to the memory to dump
45  * @size: the size of the memory block to dump
46  *
47  * Dumps the memory block into a hex representation. Useful for debugging.
48  */
49 void
50 gst_util_dump_mem (const guchar * mem, guint size)
51 {
52   guint i, j;
53   GString *string = g_string_sized_new (50);
54   GString *chars = g_string_sized_new (18);
55
56   i = j = 0;
57   while (i < size) {
58     if (g_ascii_isprint (mem[i]))
59       g_string_append_printf (chars, "%c", mem[i]);
60     else
61       g_string_append_printf (chars, ".");
62
63     g_string_append_printf (string, "%02x ", mem[i]);
64
65     j++;
66     i++;
67
68     if (j == 16 || i == size) {
69       g_print ("%08x (%p): %-48.48s %-16.16s\n", i - j, mem + i - j,
70           string->str, chars->str);
71       g_string_set_size (string, 0);
72       g_string_set_size (chars, 0);
73       j = 0;
74     }
75   }
76   g_string_free (string, TRUE);
77   g_string_free (chars, TRUE);
78 }
79
80
81 /**
82  * gst_util_set_value_from_string:
83  * @value: the value to set
84  * @value_str: the string to get the value from
85  *
86  * Converts the string to the type of the value and
87  * sets the value with it.
88  */
89 void
90 gst_util_set_value_from_string (GValue * value, const gchar * value_str)
91 {
92   gint sscanf_ret;
93
94   g_return_if_fail (value != NULL);
95   g_return_if_fail (value_str != NULL);
96
97   GST_CAT_DEBUG (GST_CAT_PARAMS, "parsing '%s' to type %s", value_str,
98       g_type_name (G_VALUE_TYPE (value)));
99
100   switch (G_VALUE_TYPE (value)) {
101     case G_TYPE_STRING:
102       g_value_set_string (value, value_str);
103       break;
104     case G_TYPE_ENUM:
105     case G_TYPE_INT:{
106       gint i;
107
108       sscanf_ret = sscanf (value_str, "%d", &i);
109       g_return_if_fail (sscanf_ret == 1);
110       g_value_set_int (value, i);
111       break;
112     }
113     case G_TYPE_UINT:{
114       guint i;
115
116       sscanf_ret = sscanf (value_str, "%u", &i);
117       g_return_if_fail (sscanf_ret == 1);
118       g_value_set_uint (value, i);
119       break;
120     }
121     case G_TYPE_LONG:{
122       glong i;
123
124       sscanf_ret = sscanf (value_str, "%ld", &i);
125       g_return_if_fail (sscanf_ret == 1);
126       g_value_set_long (value, i);
127       break;
128     }
129     case G_TYPE_ULONG:{
130       gulong i;
131
132       sscanf_ret = sscanf (value_str, "%lu", &i);
133       g_return_if_fail (sscanf_ret == 1);
134       g_value_set_ulong (value, i);
135       break;
136     }
137     case G_TYPE_BOOLEAN:{
138       gboolean i = FALSE;
139
140       if (!g_ascii_strncasecmp ("true", value_str, 4))
141         i = TRUE;
142       g_value_set_boolean (value, i);
143       break;
144     }
145     case G_TYPE_CHAR:{
146       gchar i;
147
148       sscanf_ret = sscanf (value_str, "%c", &i);
149       g_return_if_fail (sscanf_ret == 1);
150       g_value_set_char (value, i);
151       break;
152     }
153     case G_TYPE_UCHAR:{
154       guchar i;
155
156       sscanf_ret = sscanf (value_str, "%c", &i);
157       g_return_if_fail (sscanf_ret == 1);
158       g_value_set_uchar (value, i);
159       break;
160     }
161     case G_TYPE_FLOAT:{
162       gfloat i;
163
164       sscanf_ret = sscanf (value_str, "%f", &i);
165       g_return_if_fail (sscanf_ret == 1);
166       g_value_set_float (value, i);
167       break;
168     }
169     case G_TYPE_DOUBLE:{
170       gfloat i;
171
172       sscanf_ret = sscanf (value_str, "%g", &i);
173       g_return_if_fail (sscanf_ret == 1);
174       g_value_set_double (value, (gdouble) i);
175       break;
176     }
177     default:
178       break;
179   }
180 }
181
182 /**
183  * gst_util_set_object_arg:
184  * @object: the object to set the argument of
185  * @name: the name of the argument to set
186  * @value: the string value to set
187  *
188  * Convertes the string value to the type of the objects argument and
189  * sets the argument with it.
190  */
191 void
192 gst_util_set_object_arg (GObject * object, const gchar * name,
193     const gchar * value)
194 {
195   gboolean sscanf_ret;
196
197   if (name && value) {
198     GParamSpec *paramspec;
199
200     paramspec =
201         g_object_class_find_property (G_OBJECT_GET_CLASS (object), name);
202
203     if (!paramspec) {
204       return;
205     }
206
207     GST_DEBUG ("paramspec->flags is %d, paramspec->value_type is %d",
208         paramspec->flags, (gint) paramspec->value_type);
209
210     if (paramspec->flags & G_PARAM_WRITABLE) {
211       switch (paramspec->value_type) {
212         case G_TYPE_STRING:
213           g_object_set (G_OBJECT (object), name, value, NULL);
214           break;
215         case G_TYPE_ENUM:
216         case G_TYPE_INT:{
217           gint i;
218
219           sscanf_ret = sscanf (value, "%d", &i);
220           g_return_if_fail (sscanf_ret == 1);
221           g_object_set (G_OBJECT (object), name, i, NULL);
222           break;
223         }
224         case G_TYPE_UINT:{
225           guint i;
226
227           sscanf_ret = sscanf (value, "%u", &i);
228           g_return_if_fail (sscanf_ret == 1);
229           g_object_set (G_OBJECT (object), name, i, NULL);
230           break;
231         }
232         case G_TYPE_LONG:{
233           glong i;
234
235           sscanf_ret = sscanf (value, "%ld", &i);
236           g_return_if_fail (sscanf_ret == 1);
237           g_object_set (G_OBJECT (object), name, i, NULL);
238           break;
239         }
240         case G_TYPE_ULONG:{
241           gulong i;
242
243           sscanf_ret = sscanf (value, "%lu", &i);
244           g_return_if_fail (sscanf_ret == 1);
245           g_object_set (G_OBJECT (object), name, i, NULL);
246           break;
247         }
248         case G_TYPE_BOOLEAN:{
249           gboolean i = FALSE;
250
251           if (!g_ascii_strncasecmp ("true", value, 4))
252             i = TRUE;
253           g_object_set (G_OBJECT (object), name, i, NULL);
254           break;
255         }
256         case G_TYPE_CHAR:{
257           gchar i;
258
259           sscanf_ret = sscanf (value, "%c", &i);
260           g_return_if_fail (sscanf_ret == 1);
261           g_object_set (G_OBJECT (object), name, i, NULL);
262           break;
263         }
264         case G_TYPE_UCHAR:{
265           guchar i;
266
267           sscanf_ret = sscanf (value, "%c", &i);
268           g_return_if_fail (sscanf_ret == 1);
269           g_object_set (G_OBJECT (object), name, i, NULL);
270           break;
271         }
272         case G_TYPE_FLOAT:{
273           gfloat i;
274
275           sscanf_ret = sscanf (value, "%f", &i);
276           g_return_if_fail (sscanf_ret == 1);
277           g_object_set (G_OBJECT (object), name, i, NULL);
278           break;
279         }
280         case G_TYPE_DOUBLE:{
281           gfloat i;
282
283           sscanf_ret = sscanf (value, "%g", &i);
284           g_return_if_fail (sscanf_ret == 1);
285           g_object_set (G_OBJECT (object), name, (gdouble) i, NULL);
286           break;
287         }
288         default:
289           if (G_IS_PARAM_SPEC_ENUM (paramspec)) {
290             gint i;
291
292             sscanf_ret = sscanf (value, "%d", &i);
293             g_return_if_fail (sscanf_ret == 1);
294             g_object_set (G_OBJECT (object), name, i, NULL);
295           }
296           break;
297       }
298     }
299   }
300 }
301
302 /* work around error C2520: conversion from unsigned __int64 to double
303  * not implemented, use signed __int64
304  *
305  * These are implemented as functions because on some platforms a 64bit int to
306  * double conversion is not defined/implemented.
307  */
308
309 gdouble
310 gst_util_guint64_to_gdouble (guint64 value)
311 {
312   if (value & G_GINT64_CONSTANT (0x8000000000000000))
313     return (gdouble) ((gint64) value) + (gdouble) 18446744073709551616.;
314   else
315     return (gdouble) ((gint64) value);
316 }
317
318 guint64
319 gst_util_gdouble_to_guint64 (gdouble value)
320 {
321   if (value < (gdouble) 9223372036854775808.)   /* 1 << 63 */
322     return ((guint64) ((gint64) value));
323
324   value -= (gdouble) 18446744073709551616.;
325   return ((guint64) ((gint64) value));
326 }
327
328 /* convenience struct for getting high and low uint32 parts of
329  * a guint64 */
330 typedef union
331 {
332   guint64 ll;
333   struct
334   {
335 #if G_BYTE_ORDER == G_BIG_ENDIAN
336     guint32 high, low;
337 #else
338     guint32 low, high;
339 #endif
340   } l;
341 } GstUInt64;
342
343 /* based on Hacker's Delight p152 */
344 static guint64
345 gst_util_div128_64 (GstUInt64 c1, GstUInt64 c0, guint64 denom)
346 {
347   GstUInt64 q1, q0, rhat;
348   GstUInt64 v, cmp1, cmp2;
349   guint s;
350
351   v.ll = denom;
352
353   /* count number of leading zeroes, we know they must be in the high
354    * part of denom since denom > G_MAXUINT32. */
355   s = v.l.high | (v.l.high >> 1);
356   s |= (s >> 2);
357   s |= (s >> 4);
358   s |= (s >> 8);
359   s = ~(s | (s >> 16));
360   s = s - ((s >> 1) & 0x55555555);
361   s = (s & 0x33333333) + ((s >> 2) & 0x33333333);
362   s = (s + (s >> 4)) & 0x0f0f0f0f;
363   s += (s >> 8);
364   s = (s + (s >> 16)) & 0x3f;
365
366   if (s > 0) {
367     /* normalize divisor and dividend */
368     v.ll <<= s;
369     c1.ll = (c1.ll << s) | (c0.l.high >> (32 - s));
370     c0.ll <<= s;
371   }
372
373   q1.ll = c1.ll / v.l.high;
374   rhat.ll = c1.ll - q1.ll * v.l.high;
375
376   cmp1.l.high = rhat.l.low;
377   cmp1.l.low = c0.l.high;
378   cmp2.ll = q1.ll * v.l.low;
379
380   while (q1.l.high || cmp2.ll > cmp1.ll) {
381     q1.ll--;
382     rhat.ll += v.l.high;
383     if (rhat.l.high)
384       break;
385     cmp1.l.high = rhat.l.low;
386     cmp2.ll -= v.l.low;
387   }
388   c1.l.high = c1.l.low;
389   c1.l.low = c0.l.high;
390   c1.ll -= q1.ll * v.ll;
391   q0.ll = c1.ll / v.l.high;
392   rhat.ll = c1.ll - q0.ll * v.l.high;
393
394   cmp1.l.high = rhat.l.low;
395   cmp1.l.low = c0.l.low;
396   cmp2.ll = q0.ll * v.l.low;
397
398   while (q0.l.high || cmp2.ll > cmp1.ll) {
399     q0.ll--;
400     rhat.ll += v.l.high;
401     if (rhat.l.high)
402       break;
403     cmp1.l.high = rhat.l.low;
404     cmp2.ll -= v.l.low;
405   }
406   q0.l.high += q1.l.low;
407
408   return q0.ll;
409 }
410
411 static guint64
412 gst_util_uint64_scale_int64 (guint64 val, guint64 num, guint64 denom)
413 {
414   GstUInt64 a0, a1, b0, b1, c0, ct, c1, result;
415   GstUInt64 v, n;
416
417   /* prepare input */
418   v.ll = val;
419   n.ll = num;
420
421   /* do 128 bits multiply
422    *                   nh   nl
423    *                *  vh   vl
424    *                ----------
425    * a0 =              vl * nl
426    * a1 =         vl * nh
427    * b0 =         vh * nl
428    * b1 =  + vh * nh
429    *       -------------------
430    * c1,c0
431    */
432   a0.ll = (guint64) v.l.low * n.l.low;
433   a1.ll = (guint64) v.l.low * n.l.high;
434   b0.ll = (guint64) v.l.high * n.l.low;
435   b1.ll = (guint64) v.l.high * n.l.high;
436
437   /* and sum together with carry into 128 bits c1, c0 */
438   c0.l.low = a0.l.low;
439   ct.ll = (guint64) a0.l.high + a1.l.low + b0.l.low;
440   c0.l.high = ct.l.low;
441   c1.ll = (guint64) a1.l.high + b0.l.high + ct.l.high + b1.ll;
442
443   /* if high bits bigger than denom, we overflow */
444   if (c1.ll >= denom)
445     goto overflow;
446
447   /* shortcut for division by 1, c1.ll should be 0 because of the
448    * overflow check above. */
449   if (denom == 1)
450     return c0.ll;
451
452   /* and 128/64 bits division, result fits 64 bits */
453   if (denom <= G_MAXUINT32) {
454     guint32 den = (guint32) denom;
455
456     /* easy case, (c1,c0)128/(den)32 division */
457     c1.l.high %= den;
458     c1.l.high = c1.ll % den;
459     c1.l.low = c0.l.high;
460     c0.l.high = c1.ll % den;
461     result.l.high = c1.ll / den;
462     result.l.low = c0.ll / den;
463   } else {
464     result.ll = gst_util_div128_64 (c1, c0, denom);
465   }
466   return result.ll;
467
468 overflow:
469   {
470     return G_MAXUINT64;
471   }
472 }
473
474 /**
475  * gst_util_uint64_scale:
476  * @val: the number to scale
477  * @num: the numerator of the scale ratio
478  * @denom: the denominator of the scale ratio
479  *
480  * Scale @val by @num / @denom, trying to avoid overflows.
481  *
482  * This function can potentially be very slow if denom > G_MAXUINT32.
483  *
484  * Returns: @val * @num / @denom, trying to avoid overflows.
485  * In the case of an overflow, this function returns G_MAXUINT64.
486  */
487 guint64
488 gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom)
489 {
490   g_return_val_if_fail (denom != 0, G_MAXUINT64);
491
492   if (num == 0)
493     return 0;
494
495   if (num == 1 && denom == 1)
496     return val;
497
498   /* if the denom is high, we need to do a 64 muldiv */
499   if (denom > G_MAXINT32)
500     goto do_int64;
501
502   /* if num and denom are low we can do a 32 bit muldiv */
503   if (num <= G_MAXINT32)
504     goto do_int32;
505
506   /* val and num are high, we need 64 muldiv */
507   if (val > G_MAXINT32)
508     goto do_int64;
509
510   /* val is low and num is high, we can swap them and do 32 muldiv */
511   return gst_util_uint64_scale_int (num, (gint) val, (gint) denom);
512
513 do_int32:
514   return gst_util_uint64_scale_int (val, (gint) num, (gint) denom);
515
516 do_int64:
517   /* to the more heavy implementations... */
518   return gst_util_uint64_scale_int64 (val, num, denom);
519 }
520
521 /**
522  * gst_util_uint64_scale_int:
523  * @val: guint64 (such as a #GstClockTime) to scale.
524  * @num: numerator of the scale factor.
525  * @denom: denominator of the scale factor.
526  *
527  * Scale a guint64 by a factor expressed as a fraction (num/denom), avoiding
528  * overflows and loss of precision.
529  *
530  * @num and @denom must be positive integers. @denom cannot be 0.
531  *
532  * Returns: @val * @num / @denom, avoiding overflow and loss of precision.
533  * In the case of an overflow, this function returns G_MAXUINT64.
534  */
535 guint64
536 gst_util_uint64_scale_int (guint64 val, gint num, gint denom)
537 {
538   GstUInt64 result;
539   GstUInt64 low, high;
540
541   g_return_val_if_fail (denom > 0, G_MAXUINT64);
542   g_return_val_if_fail (num >= 0, G_MAXUINT64);
543
544   if (num == 0)
545     return 0;
546
547   if (num == 1 && denom == 1)
548     return val;
549
550   if (val <= G_MAXUINT32)
551     /* simple case */
552     return val * num / denom;
553
554   /* do 96 bits mult/div */
555   low.ll = val;
556   result.ll = ((guint64) low.l.low) * num;
557   high.ll = ((guint64) low.l.high) * num + (result.l.high);
558
559   low.ll = high.ll / denom;
560   result.l.high = high.ll % denom;
561   result.ll /= denom;
562
563   /* avoid overflow */
564   if (low.ll + result.l.high > G_MAXUINT32)
565     goto overflow;
566
567   result.l.high += low.l.low;
568
569   return result.ll;
570
571 overflow:
572   {
573     return G_MAXUINT64;
574   }
575 }
576
577 /* -----------------------------------------------------
578  *
579  *  The following code will be moved out of the main
580  * gstreamer library someday.
581  */
582
583 #include "gstpad.h"
584
585 static void
586 string_append_indent (GString * str, gint count)
587 {
588   gint xx;
589
590   for (xx = 0; xx < count; xx++)
591     g_string_append_c (str, ' ');
592 }
593
594 /**
595  * gst_print_pad_caps:
596  * @buf: the buffer to print the caps in
597  * @indent: initial indentation
598  * @pad: the pad to print the caps from
599  *
600  * Write the pad capabilities in a human readable format into
601  * the given GString.
602  */
603 void
604 gst_print_pad_caps (GString * buf, gint indent, GstPad * pad)
605 {
606   GstCaps *caps;
607
608   caps = pad->caps;
609
610   if (!caps) {
611     string_append_indent (buf, indent);
612     g_string_printf (buf, "%s:%s has no capabilities",
613         GST_DEBUG_PAD_NAME (pad));
614   } else {
615     char *s;
616
617     s = gst_caps_to_string (caps);
618     g_string_append (buf, s);
619     g_free (s);
620   }
621 }
622
623 /**
624  * gst_print_element_args:
625  * @buf: the buffer to print the args in
626  * @indent: initial indentation
627  * @element: the element to print the args of
628  *
629  * Print the element argument in a human readable format in the given
630  * GString.
631  */
632 void
633 gst_print_element_args (GString * buf, gint indent, GstElement * element)
634 {
635   guint width;
636   GValue value = { 0, };        /* the important thing is that value.type = 0 */
637   gchar *str = NULL;
638   GParamSpec *spec, **specs, **walk;
639
640   specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (element), NULL);
641
642   width = 0;
643   for (walk = specs; *walk; walk++) {
644     spec = *walk;
645     if (width < strlen (spec->name))
646       width = strlen (spec->name);
647   }
648
649   for (walk = specs; *walk; walk++) {
650     spec = *walk;
651
652     if (spec->flags & G_PARAM_READABLE) {
653       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (spec));
654       g_object_get_property (G_OBJECT (element), spec->name, &value);
655       str = g_strdup_value_contents (&value);
656       g_value_unset (&value);
657     } else {
658       str = g_strdup ("Parameter not readable.");
659     }
660
661     string_append_indent (buf, indent);
662     g_string_append (buf, spec->name);
663     string_append_indent (buf, 2 + width - strlen (spec->name));
664     g_string_append (buf, str);
665     g_string_append_c (buf, '\n');
666
667     g_free (str);
668   }
669
670   g_free (specs);
671 }
672
673 /**
674  * gst_element_create_all_pads:
675  * @element: a #GstElement to create pads for
676  *
677  * Creates a pad for each pad template that is always available.
678  * This function is only useful during object intialization of
679  * subclasses of #GstElement.
680  */
681 void
682 gst_element_create_all_pads (GstElement * element)
683 {
684   GList *padlist;
685
686   /* FIXME: lock element */
687
688   padlist =
689       gst_element_class_get_pad_template_list (GST_ELEMENT_CLASS
690       (G_OBJECT_GET_CLASS (element)));
691
692   while (padlist) {
693     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
694
695     if (padtempl->presence == GST_PAD_ALWAYS) {
696       GstPad *pad;
697
698       pad = gst_pad_new_from_template (padtempl, padtempl->name_template);
699
700       gst_element_add_pad (element, pad);
701     }
702     padlist = padlist->next;
703   }
704 }
705
706 /**
707  * gst_element_get_compatible_pad_template:
708  * @element: a #GstElement to get a compatible pad template for.
709  * @compattempl: the #GstPadTemplate to find a compatible template for.
710  *
711  * Retrieves a pad template from @element that is compatible with @compattempl.
712  * Pads from compatible templates can be linked together.
713  *
714  * Returns: a compatible #GstPadTemplate, or NULL if none was found. No
715  * unreferencing is necessary.
716  */
717 GstPadTemplate *
718 gst_element_get_compatible_pad_template (GstElement * element,
719     GstPadTemplate * compattempl)
720 {
721   GstPadTemplate *newtempl = NULL;
722   GList *padlist;
723   GstElementClass *class;
724
725   g_return_val_if_fail (element != NULL, NULL);
726   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
727   g_return_val_if_fail (compattempl != NULL, NULL);
728
729   class = GST_ELEMENT_GET_CLASS (element);
730
731   padlist = gst_element_class_get_pad_template_list (class);
732
733   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
734       "Looking for a suitable pad template in %s out of %d templates...",
735       GST_ELEMENT_NAME (element), g_list_length (padlist));
736
737   while (padlist) {
738     GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
739     GstCaps *intersection;
740
741     /* Ignore name
742      * Ignore presence
743      * Check direction (must be opposite)
744      * Check caps
745      */
746     GST_CAT_LOG (GST_CAT_CAPS,
747         "checking pad template %s", padtempl->name_template);
748     if (padtempl->direction != compattempl->direction) {
749       GST_CAT_DEBUG (GST_CAT_CAPS,
750           "compatible direction: found %s pad template \"%s\"",
751           padtempl->direction == GST_PAD_SRC ? "src" : "sink",
752           padtempl->name_template);
753
754       GST_CAT_DEBUG (GST_CAT_CAPS,
755           "intersecting %" GST_PTR_FORMAT, GST_PAD_TEMPLATE_CAPS (compattempl));
756       GST_CAT_DEBUG (GST_CAT_CAPS,
757           "..and %" GST_PTR_FORMAT, GST_PAD_TEMPLATE_CAPS (padtempl));
758
759       intersection = gst_caps_intersect (GST_PAD_TEMPLATE_CAPS (compattempl),
760           GST_PAD_TEMPLATE_CAPS (padtempl));
761
762       GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible %" GST_PTR_FORMAT,
763           (intersection ? "" : "not "), intersection);
764
765       if (!gst_caps_is_empty (intersection))
766         newtempl = padtempl;
767       gst_caps_unref (intersection);
768       if (newtempl)
769         break;
770     }
771
772     padlist = g_list_next (padlist);
773   }
774   if (newtempl)
775     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
776         "Returning new pad template %p", newtempl);
777   else
778     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "No compatible pad template found");
779
780   return newtempl;
781 }
782
783 static GstPad *
784 gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
785     const gchar * name)
786 {
787   GstPad *newpad = NULL;
788   GstElementClass *oclass;
789
790   oclass = GST_ELEMENT_GET_CLASS (element);
791
792   if (oclass->request_new_pad)
793     newpad = (oclass->request_new_pad) (element, templ, name);
794
795   if (newpad)
796     gst_object_ref (newpad);
797
798   return newpad;
799 }
800
801
802
803 /**
804  * gst_element_get_pad_from_template:
805  * @element: a #GstElement.
806  * @templ: a #GstPadTemplate belonging to @element.
807  *
808  * Gets a pad from @element described by @templ. If the presence of @templ is
809  * #GST_PAD_REQUEST, requests a new pad. Can return %NULL for #GST_PAD_SOMETIMES
810  * templates.
811  *
812  * Returns: the #GstPad, or NULL if one could not be found or created.
813  */
814 static GstPad *
815 gst_element_get_pad_from_template (GstElement * element, GstPadTemplate * templ)
816 {
817   GstPad *ret = NULL;
818   GstPadPresence presence;
819
820   /* If this function is ever exported, we need check the validity of `element'
821    * and `templ', and to make sure the template actually belongs to the
822    * element. */
823
824   presence = GST_PAD_TEMPLATE_PRESENCE (templ);
825
826   switch (presence) {
827     case GST_PAD_ALWAYS:
828     case GST_PAD_SOMETIMES:
829       ret = gst_element_get_static_pad (element, templ->name_template);
830       if (!ret && presence == GST_PAD_ALWAYS)
831         g_warning
832             ("Element %s has an ALWAYS template %s, but no pad of the same name",
833             GST_OBJECT_NAME (element), templ->name_template);
834       break;
835
836     case GST_PAD_REQUEST:
837       ret = gst_element_request_pad (element, templ, NULL);
838       break;
839   }
840
841   return ret;
842 }
843
844 /**
845  * gst_element_request_compatible_pad:
846  * @element: a #GstElement.
847  * @templ: the #GstPadTemplate to which the new pad should be able to link.
848  *
849  * Requests a pad from @element. The returned pad should be unlinked and
850  * compatible with @templ. Might return an existing pad, or request a new one.
851  *
852  * Returns: a #GstPad, or %NULL if one could not be found or created.
853  */
854 GstPad *
855 gst_element_request_compatible_pad (GstElement * element,
856     GstPadTemplate * templ)
857 {
858   GstPadTemplate *templ_new;
859   GstPad *pad = NULL;
860
861   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
862   g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
863
864   /* FIXME: should really loop through the templates, testing each for
865    *      compatibility and pad availability. */
866   templ_new = gst_element_get_compatible_pad_template (element, templ);
867   if (templ_new)
868     pad = gst_element_get_pad_from_template (element, templ_new);
869
870   /* This can happen for non-request pads. No need to unref. */
871   if (pad && GST_PAD_PEER (pad))
872     pad = NULL;
873
874   return pad;
875 }
876
877 /**
878  * gst_element_get_compatible_pad:
879  * @element: a #GstElement in which the pad should be found.
880  * @pad: the #GstPad to find a compatible one for.
881  * @caps: the #GstCaps to use as a filter.
882  *
883  * Looks for an unlinked pad to which the given pad can link. It is not
884  * guaranteed that linking the pads will work, though it should work in most
885  * cases.
886  *
887  * Returns: the #GstPad to which a link can be made, or %NULL if one cannot be
888  * found.
889  */
890 GstPad *
891 gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
892     const GstCaps * caps)
893 {
894   GstIterator *pads;
895   GstPadTemplate *templ;
896   GstCaps *templcaps;
897   GstPad *foundpad = NULL;
898   gboolean done;
899
900   /* FIXME check for caps compatibility */
901
902   g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
903   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
904
905   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
906       "finding pad in %s compatible with %s:%s",
907       GST_ELEMENT_NAME (element), GST_DEBUG_PAD_NAME (pad));
908
909   g_return_val_if_fail (GST_PAD_PEER (pad) == NULL, NULL);
910
911   done = FALSE;
912   /* try to get an existing unlinked pad */
913   pads = gst_element_iterate_pads (element);
914   while (!done) {
915     gpointer padptr;
916
917     switch (gst_iterator_next (pads, &padptr)) {
918       case GST_ITERATOR_OK:
919       {
920         GstPad *peer;
921         GstPad *current;
922
923         current = GST_PAD (padptr);
924
925         GST_CAT_LOG (GST_CAT_ELEMENT_PADS, "examining pad %s:%s",
926             GST_DEBUG_PAD_NAME (current));
927
928         peer = gst_pad_get_peer (current);
929
930         if (peer == NULL && gst_pad_can_link (pad, current)) {
931
932           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
933               "found existing unlinked pad %s:%s",
934               GST_DEBUG_PAD_NAME (current));
935
936           gst_iterator_free (pads);
937
938           return current;
939         } else {
940           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unreffing pads");
941
942           gst_object_unref (current);
943           if (peer)
944             gst_object_unref (peer);
945         }
946         break;
947       }
948       case GST_ITERATOR_DONE:
949         done = TRUE;
950         break;
951       case GST_ITERATOR_RESYNC:
952         gst_iterator_resync (pads);
953         break;
954       case GST_ITERATOR_ERROR:
955         g_assert_not_reached ();
956         break;
957     }
958   }
959   gst_iterator_free (pads);
960
961   /* try to create a new one */
962   /* requesting is a little crazy, we need a template. Let's create one */
963   templcaps = gst_pad_get_caps (pad);
964
965   templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
966       GST_PAD_DIRECTION (pad), GST_PAD_ALWAYS, templcaps);
967   foundpad = gst_element_request_compatible_pad (element, templ);
968   gst_object_unref (templ);
969
970   if (foundpad) {
971     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
972         "found existing request pad %s:%s", GST_DEBUG_PAD_NAME (foundpad));
973     return foundpad;
974   }
975
976   GST_CAT_INFO_OBJECT (GST_CAT_ELEMENT_PADS, element,
977       "Could not find a compatible pad to link to %s:%s",
978       GST_DEBUG_PAD_NAME (pad));
979   return NULL;
980 }
981
982 /**
983  * gst_element_state_get_name:
984  * @state: a #GstState to get the name of.
985  *
986  * Gets a string representing the given state.
987  *
988  * Returns: a string with the name of the state.
989  */
990 const gchar *
991 gst_element_state_get_name (GstState state)
992 {
993   switch (state) {
994 #ifdef GST_DEBUG_COLOR
995     case GST_STATE_VOID_PENDING:
996       return "VOID_PENDING";
997       break;
998     case GST_STATE_NULL:
999       return "\033[01;34mNULL\033[00m";
1000       break;
1001     case GST_STATE_READY:
1002       return "\033[01;31mREADY\033[00m";
1003       break;
1004     case GST_STATE_PLAYING:
1005       return "\033[01;32mPLAYING\033[00m";
1006       break;
1007     case GST_STATE_PAUSED:
1008       return "\033[01;33mPAUSED\033[00m";
1009       break;
1010     default:
1011       /* This is a memory leak */
1012       return g_strdup_printf ("\033[01;35;41mUNKNOWN!\033[00m(%d)", state);
1013 #else
1014     case GST_STATE_VOID_PENDING:
1015       return "VOID_PENDING";
1016       break;
1017     case GST_STATE_NULL:
1018       return "NULL";
1019       break;
1020     case GST_STATE_READY:
1021       return "READY";
1022       break;
1023     case GST_STATE_PLAYING:
1024       return "PLAYING";
1025       break;
1026     case GST_STATE_PAUSED:
1027       return "PAUSED";
1028       break;
1029     default:
1030       /* This is a memory leak */
1031       return g_strdup_printf ("UNKNOWN!(%d)", state);
1032 #endif
1033   }
1034   return "";
1035 }
1036
1037 /**
1038  * gst_element_factory_can_src_caps :
1039  * @factory: factory to query
1040  * @caps: the caps to check
1041  *
1042  * Checks if the factory can source the given capability.
1043  *
1044  * Returns: true if it can src the capabilities
1045  */
1046 gboolean
1047 gst_element_factory_can_src_caps (GstElementFactory * factory,
1048     const GstCaps * caps)
1049 {
1050   GList *templates;
1051
1052   g_return_val_if_fail (factory != NULL, FALSE);
1053   g_return_val_if_fail (caps != NULL, FALSE);
1054
1055   templates = factory->staticpadtemplates;
1056
1057   while (templates) {
1058     GstStaticPadTemplate *template = (GstStaticPadTemplate *) templates->data;
1059
1060     if (template->direction == GST_PAD_SRC) {
1061       if (gst_caps_is_always_compatible (gst_static_caps_get (&template->
1062                   static_caps), caps))
1063         return TRUE;
1064     }
1065     templates = g_list_next (templates);
1066   }
1067
1068   return FALSE;
1069 }
1070
1071 /**
1072  * gst_element_factory_can_sink_caps :
1073  * @factory: factory to query
1074  * @caps: the caps to check
1075  *
1076  * Checks if the factory can sink the given capability.
1077  *
1078  * Returns: true if it can sink the capabilities
1079  */
1080 gboolean
1081 gst_element_factory_can_sink_caps (GstElementFactory * factory,
1082     const GstCaps * caps)
1083 {
1084   GList *templates;
1085
1086   g_return_val_if_fail (factory != NULL, FALSE);
1087   g_return_val_if_fail (caps != NULL, FALSE);
1088
1089   templates = factory->staticpadtemplates;
1090
1091   while (templates) {
1092     GstStaticPadTemplate *template = (GstStaticPadTemplate *) templates->data;
1093
1094     if (template->direction == GST_PAD_SINK) {
1095       if (gst_caps_is_always_compatible (caps,
1096               gst_static_caps_get (&template->static_caps)))
1097         return TRUE;
1098     }
1099     templates = g_list_next (templates);
1100   }
1101
1102   return FALSE;
1103 }
1104
1105
1106 /* if return val is true, *direct_child is a caller-owned ref on the direct
1107  * child of ancestor that is part of object's ancestry */
1108 static gboolean
1109 object_has_ancestor (GstObject * object, GstObject * ancestor,
1110     GstObject ** direct_child)
1111 {
1112   GstObject *child, *parent;
1113
1114   if (direct_child)
1115     *direct_child = NULL;
1116
1117   child = gst_object_ref (object);
1118   parent = gst_object_get_parent (object);
1119
1120   while (parent) {
1121     if (ancestor == parent) {
1122       if (direct_child)
1123         *direct_child = child;
1124       else
1125         gst_object_unref (child);
1126       gst_object_unref (parent);
1127       return TRUE;
1128     }
1129
1130     gst_object_unref (child);
1131     child = parent;
1132     parent = gst_object_get_parent (parent);
1133   }
1134
1135   gst_object_unref (child);
1136
1137   return FALSE;
1138 }
1139
1140 /* caller owns return */
1141 static GstObject *
1142 find_common_root (GstObject * o1, GstObject * o2)
1143 {
1144   GstObject *top = o1;
1145   GstObject *kid1, *kid2;
1146   GstObject *root = NULL;
1147
1148   while (GST_OBJECT_PARENT (top))
1149     top = GST_OBJECT_PARENT (top);
1150
1151   /* the itsy-bitsy spider... */
1152
1153   if (!object_has_ancestor (o2, top, &kid2))
1154     return NULL;
1155
1156   root = gst_object_ref (top);
1157   while (TRUE) {
1158     if (!object_has_ancestor (o1, kid2, &kid1)) {
1159       gst_object_unref (kid2);
1160       return root;
1161     }
1162     root = kid2;
1163     if (!object_has_ancestor (o2, kid1, &kid2)) {
1164       gst_object_unref (kid1);
1165       return root;
1166     }
1167     root = kid1;
1168   }
1169 }
1170
1171 /* caller does not own return */
1172 static GstPad *
1173 ghost_up (GstElement * e, GstPad * pad)
1174 {
1175   static gint ghost_pad_index = 0;
1176   GstPad *gpad;
1177   gchar *name;
1178   GstObject *parent = GST_OBJECT_PARENT (e);
1179
1180   name = g_strdup_printf ("ghost%d", ghost_pad_index++);
1181   gpad = gst_ghost_pad_new (name, pad);
1182   g_free (name);
1183
1184   if (!gst_element_add_pad ((GstElement *) parent, gpad)) {
1185     g_warning ("Pad named %s already exists in element %s\n",
1186         GST_OBJECT_NAME (gpad), GST_OBJECT_NAME (parent));
1187     gst_object_unref ((GstObject *) gpad);
1188     return NULL;
1189   }
1190
1191   return gpad;
1192 }
1193
1194 static void
1195 remove_pad (gpointer ppad, gpointer unused)
1196 {
1197   GstPad *pad = ppad;
1198
1199   if (!gst_element_remove_pad ((GstElement *) GST_OBJECT_PARENT (pad), pad))
1200     g_warning ("Couldn't remove pad %s from element %s",
1201         GST_OBJECT_NAME (pad), GST_OBJECT_NAME (GST_OBJECT_PARENT (pad)));
1202 }
1203
1204 static gboolean
1205 prepare_link_maybe_ghosting (GstPad ** src, GstPad ** sink,
1206     GSList ** pads_created)
1207 {
1208   GstObject *root;
1209   GstObject *e1, *e2;
1210   GSList *pads_created_local = NULL;
1211
1212   g_assert (pads_created);
1213
1214   e1 = GST_OBJECT_PARENT (*src);
1215   e2 = GST_OBJECT_PARENT (*sink);
1216
1217   if (GST_OBJECT_PARENT (e1) == GST_OBJECT_PARENT (e2)) {
1218     GST_CAT_INFO (GST_CAT_PADS, "%s and %s in same bin, no need for ghost pads",
1219         GST_OBJECT_NAME (e1), GST_OBJECT_NAME (e2));
1220     return TRUE;
1221   }
1222
1223   GST_CAT_INFO (GST_CAT_PADS, "%s and %s not in same bin, making ghost pads",
1224       GST_OBJECT_NAME (e1), GST_OBJECT_NAME (e2));
1225
1226   /* we need to setup some ghost pads */
1227   root = find_common_root (e1, e2);
1228   if (!root) {
1229     g_warning
1230         ("Trying to connect elements that don't share a common ancestor: %s and %s\n",
1231         GST_ELEMENT_NAME (e1), GST_ELEMENT_NAME (e2));
1232     return FALSE;
1233   }
1234
1235   while (GST_OBJECT_PARENT (e1) != root) {
1236     *src = ghost_up ((GstElement *) e1, *src);
1237     if (!*src)
1238       goto cleanup_fail;
1239     e1 = GST_OBJECT_PARENT (*src);
1240     pads_created_local = g_slist_prepend (pads_created_local, *src);
1241   }
1242   while (GST_OBJECT_PARENT (e2) != root) {
1243     *sink = ghost_up ((GstElement *) e2, *sink);
1244     if (!*sink)
1245       goto cleanup_fail;
1246     e2 = GST_OBJECT_PARENT (*sink);
1247     pads_created_local = g_slist_prepend (pads_created_local, *sink);
1248   }
1249
1250   gst_object_unref (root);
1251   *pads_created = g_slist_concat (*pads_created, pads_created_local);
1252   return TRUE;
1253
1254 cleanup_fail:
1255   gst_object_unref (root);
1256   g_slist_foreach (pads_created_local, remove_pad, NULL);
1257   g_slist_free (pads_created_local);
1258   return FALSE;
1259 }
1260
1261 static gboolean
1262 pad_link_maybe_ghosting (GstPad * src, GstPad * sink)
1263 {
1264   GSList *pads_created = NULL;
1265   gboolean ret;
1266
1267   if (!prepare_link_maybe_ghosting (&src, &sink, &pads_created)) {
1268     ret = FALSE;
1269   } else {
1270     ret = (gst_pad_link (src, sink) == GST_PAD_LINK_OK);
1271   }
1272
1273   if (!ret) {
1274     g_slist_foreach (pads_created, remove_pad, NULL);
1275   }
1276   g_slist_free (pads_created);
1277
1278   return ret;
1279 }
1280
1281 /**
1282  * gst_element_link_pads:
1283  * @src: a #GstElement containing the source pad.
1284  * @srcpadname: the name of the #GstPad in source element or NULL for any pad.
1285  * @dest: the #GstElement containing the destination pad.
1286  * @destpadname: the name of the #GstPad in destination element,
1287  * or NULL for any pad.
1288  *
1289  * Links the two named pads of the source and destination elements.
1290  * Side effect is that if one of the pads has no parent, it becomes a
1291  * child of the parent of the other element.  If they have different
1292  * parents, the link fails.
1293  *
1294  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1295  */
1296 gboolean
1297 gst_element_link_pads (GstElement * src, const gchar * srcpadname,
1298     GstElement * dest, const gchar * destpadname)
1299 {
1300   const GList *srcpads, *destpads, *srctempls, *desttempls, *l;
1301   GstPad *srcpad, *destpad;
1302   GstPadTemplate *srctempl, *desttempl;
1303   GstElementClass *srcclass, *destclass;
1304
1305   /* checks */
1306   g_return_val_if_fail (GST_IS_ELEMENT (src), FALSE);
1307   g_return_val_if_fail (GST_IS_ELEMENT (dest), FALSE);
1308
1309   srcclass = GST_ELEMENT_GET_CLASS (src);
1310   destclass = GST_ELEMENT_GET_CLASS (dest);
1311
1312   GST_CAT_INFO (GST_CAT_ELEMENT_PADS,
1313       "trying to link element %s:%s to element %s:%s", GST_ELEMENT_NAME (src),
1314       srcpadname ? srcpadname : "(any)", GST_ELEMENT_NAME (dest),
1315       destpadname ? destpadname : "(any)");
1316
1317   /* get a src pad */
1318   if (srcpadname) {
1319     /* name specified, look it up */
1320     srcpad = gst_element_get_pad (src, srcpadname);
1321     if (!srcpad) {
1322       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no pad %s:%s",
1323           GST_ELEMENT_NAME (src), srcpadname);
1324       return FALSE;
1325     } else {
1326       if (!(GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC)) {
1327         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no src pad",
1328             GST_DEBUG_PAD_NAME (srcpad));
1329         gst_object_unref (srcpad);
1330         return FALSE;
1331       }
1332       if (GST_PAD_PEER (srcpad) != NULL) {
1333         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
1334             GST_DEBUG_PAD_NAME (srcpad));
1335         gst_object_unref (srcpad);
1336         return FALSE;
1337       }
1338     }
1339     srcpads = NULL;
1340   } else {
1341     /* no name given, get the first available pad */
1342     GST_OBJECT_LOCK (src);
1343     srcpads = GST_ELEMENT_PADS (src);
1344     srcpad = srcpads ? GST_PAD_CAST (srcpads->data) : NULL;
1345     if (srcpad)
1346       gst_object_ref (srcpad);
1347     GST_OBJECT_UNLOCK (src);
1348   }
1349
1350   /* get a destination pad */
1351   if (destpadname) {
1352     /* name specified, look it up */
1353     destpad = gst_element_get_pad (dest, destpadname);
1354     if (!destpad) {
1355       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no pad %s:%s",
1356           GST_ELEMENT_NAME (dest), destpadname);
1357       return FALSE;
1358     } else {
1359       if (!(GST_PAD_DIRECTION (destpad) == GST_PAD_SINK)) {
1360         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no sink pad",
1361             GST_DEBUG_PAD_NAME (destpad));
1362         gst_object_unref (destpad);
1363         return FALSE;
1364       }
1365       if (GST_PAD_PEER (destpad) != NULL) {
1366         GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
1367             GST_DEBUG_PAD_NAME (destpad));
1368         gst_object_unref (destpad);
1369         return FALSE;
1370       }
1371     }
1372     destpads = NULL;
1373   } else {
1374     /* no name given, get the first available pad */
1375     GST_OBJECT_LOCK (dest);
1376     destpads = GST_ELEMENT_PADS (dest);
1377     destpad = destpads ? GST_PAD_CAST (destpads->data) : NULL;
1378     if (destpad)
1379       gst_object_ref (destpad);
1380     GST_OBJECT_UNLOCK (dest);
1381   }
1382
1383   if (srcpadname && destpadname) {
1384     gboolean result;
1385
1386     /* two explicitly specified pads */
1387     result = pad_link_maybe_ghosting (srcpad, destpad);
1388
1389     gst_object_unref (srcpad);
1390     gst_object_unref (destpad);
1391
1392     return result;
1393   }
1394
1395   if (srcpad) {
1396     /* loop through the allowed pads in the source, trying to find a
1397      * compatible destination pad */
1398     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1399         "looping through allowed src and dest pads");
1400     do {
1401       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "trying src pad %s:%s",
1402           GST_DEBUG_PAD_NAME (srcpad));
1403       if ((GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC) &&
1404           (GST_PAD_PEER (srcpad) == NULL)) {
1405         GstPad *temp;
1406
1407         if (destpadname) {
1408           temp = destpad;
1409           gst_object_ref (temp);
1410         } else {
1411           temp = gst_element_get_compatible_pad (dest, srcpad, NULL);
1412         }
1413
1414         if (temp && pad_link_maybe_ghosting (srcpad, temp)) {
1415           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
1416               GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (temp));
1417           if (destpad)
1418             gst_object_unref (destpad);
1419           gst_object_unref (srcpad);
1420           gst_object_unref (temp);
1421           return TRUE;
1422         }
1423
1424         if (temp) {
1425           gst_object_unref (temp);
1426         }
1427       }
1428       /* find a better way for this mess */
1429       if (srcpads) {
1430         srcpads = g_list_next (srcpads);
1431         if (srcpads) {
1432           gst_object_unref (srcpad);
1433           srcpad = GST_PAD_CAST (srcpads->data);
1434           gst_object_ref (srcpad);
1435         }
1436       }
1437     } while (srcpads);
1438   }
1439   if (srcpadname) {
1440     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s:%s to %s",
1441         GST_DEBUG_PAD_NAME (srcpad), GST_ELEMENT_NAME (dest));
1442     if (destpad)
1443       gst_object_unref (destpad);
1444     destpad = NULL;
1445   }
1446   if (srcpad)
1447     gst_object_unref (srcpad);
1448   srcpad = NULL;
1449
1450   if (destpad) {
1451     /* loop through the existing pads in the destination */
1452     do {
1453       GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "trying dest pad %s:%s",
1454           GST_DEBUG_PAD_NAME (destpad));
1455       if ((GST_PAD_DIRECTION (destpad) == GST_PAD_SINK) &&
1456           (GST_PAD_PEER (destpad) == NULL)) {
1457         GstPad *temp = gst_element_get_compatible_pad (src, destpad, NULL);
1458
1459         if (temp && pad_link_maybe_ghosting (temp, destpad)) {
1460           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
1461               GST_DEBUG_PAD_NAME (temp), GST_DEBUG_PAD_NAME (destpad));
1462           gst_object_unref (temp);
1463           gst_object_unref (destpad);
1464           return TRUE;
1465         }
1466         if (temp) {
1467           gst_object_unref (temp);
1468         }
1469       }
1470       if (destpads) {
1471         destpads = g_list_next (destpads);
1472         if (destpads) {
1473           gst_object_unref (destpad);
1474           destpad = GST_PAD_CAST (destpads->data);
1475           gst_object_ref (destpad);
1476         }
1477       }
1478     } while (destpads);
1479   }
1480
1481   if (destpadname) {
1482     GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s:%s",
1483         GST_ELEMENT_NAME (src), GST_DEBUG_PAD_NAME (destpad));
1484     gst_object_unref (destpad);
1485     if (srcpad)
1486       gst_object_unref (srcpad);
1487     return FALSE;
1488   } else {
1489     if (srcpad)
1490       gst_object_unref (srcpad);
1491     srcpad = NULL;
1492     if (destpad)
1493       gst_object_unref (destpad);
1494     destpad = NULL;
1495   }
1496
1497   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1498       "we might have request pads on both sides, checking...");
1499   srctempls = gst_element_class_get_pad_template_list (srcclass);
1500   desttempls = gst_element_class_get_pad_template_list (destclass);
1501
1502   if (srctempls && desttempls) {
1503     while (srctempls) {
1504       srctempl = (GstPadTemplate *) srctempls->data;
1505       if (srctempl->presence == GST_PAD_REQUEST) {
1506         for (l = desttempls; l; l = l->next) {
1507           desttempl = (GstPadTemplate *) l->data;
1508           if (desttempl->presence == GST_PAD_REQUEST &&
1509               desttempl->direction != srctempl->direction) {
1510             if (gst_caps_is_always_compatible (gst_pad_template_get_caps
1511                     (srctempl), gst_pad_template_get_caps (desttempl))) {
1512               srcpad =
1513                   gst_element_get_request_pad (src, srctempl->name_template);
1514               destpad =
1515                   gst_element_get_request_pad (dest, desttempl->name_template);
1516               if (pad_link_maybe_ghosting (srcpad, destpad)) {
1517                 GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
1518                     "linked pad %s:%s to pad %s:%s",
1519                     GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (destpad));
1520                 gst_object_unref (srcpad);
1521                 gst_object_unref (destpad);
1522                 return TRUE;
1523               }
1524               /* it failed, so we release the request pads */
1525               gst_element_release_request_pad (src, srcpad);
1526               gst_element_release_request_pad (dest, destpad);
1527             }
1528           }
1529         }
1530       }
1531       srctempls = srctempls->next;
1532     }
1533   }
1534
1535   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s",
1536       GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (dest));
1537   return FALSE;
1538 }
1539
1540 /**
1541  * gst_element_link_pads_filtered:
1542  * @src: a #GstElement containing the source pad.
1543  * @srcpadname: the name of the #GstPad in source element or NULL for any pad.
1544  * @dest: the #GstElement containing the destination pad.
1545  * @destpadname: the name of the #GstPad in destination element or NULL for any pad.
1546  * @filter: the #GstCaps to filter the link, or #NULL for no filter.
1547  *
1548  * Links the two named pads of the source and destination elements. Side effect
1549  * is that if one of the pads has no parent, it becomes a child of the parent of
1550  * the other element. If they have different parents, the link fails. If @caps
1551  * is not #NULL, makes sure that the caps of the link is a subset of @caps.
1552  *
1553  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1554  */
1555 gboolean
1556 gst_element_link_pads_filtered (GstElement * src, const gchar * srcpadname,
1557     GstElement * dest, const gchar * destpadname, GstCaps * filter)
1558 {
1559   /* checks */
1560   g_return_val_if_fail (GST_IS_ELEMENT (src), FALSE);
1561   g_return_val_if_fail (GST_IS_ELEMENT (dest), FALSE);
1562   g_return_val_if_fail (filter == NULL || GST_IS_CAPS (filter), FALSE);
1563
1564   if (filter) {
1565     GstElement *capsfilter;
1566     GstObject *parent;
1567     GstState state, pending;
1568
1569     capsfilter = gst_element_factory_make ("capsfilter", NULL);
1570     if (!capsfilter) {
1571       GST_ERROR ("Could not make a capsfilter");
1572       return FALSE;
1573     }
1574
1575     parent = gst_object_get_parent (GST_OBJECT (src));
1576     g_return_val_if_fail (GST_IS_BIN (parent), FALSE);
1577
1578     gst_element_get_state (GST_ELEMENT_CAST (parent), &state, &pending, 0);
1579
1580     if (!gst_bin_add (GST_BIN (parent), capsfilter)) {
1581       GST_ERROR ("Could not add capsfilter");
1582       gst_object_unref (capsfilter);
1583       gst_object_unref (parent);
1584       return FALSE;
1585     }
1586
1587     if (pending != GST_STATE_VOID_PENDING)
1588       state = pending;
1589
1590     gst_element_set_state (capsfilter, state);
1591
1592     gst_object_unref (parent);
1593
1594     g_object_set (capsfilter, "caps", filter, NULL);
1595
1596     if (gst_element_link_pads (src, srcpadname, capsfilter, "sink")
1597         && gst_element_link_pads (capsfilter, "src", dest, destpadname)) {
1598       return TRUE;
1599     } else {
1600       GST_INFO ("Could not link elements");
1601       gst_bin_remove (GST_BIN (GST_OBJECT_PARENT (capsfilter)), capsfilter);
1602       /* will unref and unlink as appropriate */
1603       return FALSE;
1604     }
1605   } else {
1606     return gst_element_link_pads (src, srcpadname, dest, destpadname);
1607   }
1608 }
1609
1610 /**
1611  * gst_element_link:
1612  * @src: a #GstElement containing the source pad.
1613  * @dest: the #GstElement containing the destination pad.
1614  *
1615  * Links @src to @dest. The link must be from source to
1616  * destination; the other direction will not be tried. The function looks for
1617  * existing pads that aren't linked yet. It will request new pads if necessary.
1618  * If multiple links are possible, only one is established.
1619  *
1620  * Make sure you have added your elements to a bin or pipeline with
1621  * gst_bin_add() before trying to link them.
1622  *
1623  * Returns: TRUE if the elements could be linked, FALSE otherwise.
1624  */
1625 gboolean
1626 gst_element_link (GstElement * src, GstElement * dest)
1627 {
1628   return gst_element_link_pads_filtered (src, NULL, dest, NULL, NULL);
1629 }
1630
1631 /**
1632  * gst_element_link_many:
1633  * @element_1: the first #GstElement in the link chain.
1634  * @element_2: the second #GstElement in the link chain.
1635  * @...: the NULL-terminated list of elements to link in order.
1636  *
1637  * Chain together a series of elements. Uses gst_element_link().
1638  * Make sure you have added your elements to a bin or pipeline with
1639  * gst_bin_add() before trying to link them.
1640  *
1641  * Returns: TRUE on success, FALSE otherwise.
1642  */
1643 gboolean
1644 gst_element_link_many (GstElement * element_1, GstElement * element_2, ...)
1645 {
1646   va_list args;
1647
1648   g_return_val_if_fail (GST_IS_ELEMENT (element_1), FALSE);
1649   g_return_val_if_fail (GST_IS_ELEMENT (element_2), FALSE);
1650
1651   va_start (args, element_2);
1652
1653   while (element_2) {
1654     if (!gst_element_link (element_1, element_2))
1655       return FALSE;
1656
1657     element_1 = element_2;
1658     element_2 = va_arg (args, GstElement *);
1659   }
1660
1661   va_end (args);
1662
1663   return TRUE;
1664 }
1665
1666 /**
1667  * gst_element_link_filtered:
1668  * @src: a #GstElement containing the source pad.
1669  * @dest: the #GstElement containing the destination pad.
1670  * @filter: the #GstCaps to filter the link, or #NULL for no filter.
1671  *
1672  * Links @src to @dest using the given caps as filtercaps.
1673  * The link must be from source to
1674  * destination; the other direction will not be tried. The function looks for
1675  * existing pads that aren't linked yet. It will request new pads if necessary.
1676  * If multiple links are possible, only one is established.
1677  *
1678  * Make sure you have added your elements to a bin or pipeline with
1679  * gst_bin_add() before trying to link them.
1680  *
1681  * Returns: TRUE if the pads could be linked, FALSE otherwise.
1682  */
1683 gboolean
1684 gst_element_link_filtered (GstElement * src, GstElement * dest,
1685     GstCaps * filter)
1686 {
1687   return gst_element_link_pads_filtered (src, NULL, dest, NULL, filter);
1688 }
1689
1690 /**
1691  * gst_element_unlink_pads:
1692  * @src: a #GstElement containing the source pad.
1693  * @srcpadname: the name of the #GstPad in source element.
1694  * @dest: a #GstElement containing the destination pad.
1695  * @destpadname: the name of the #GstPad in destination element.
1696  *
1697  * Unlinks the two named pads of the source and destination elements.
1698  */
1699 void
1700 gst_element_unlink_pads (GstElement * src, const gchar * srcpadname,
1701     GstElement * dest, const gchar * destpadname)
1702 {
1703   GstPad *srcpad, *destpad;
1704
1705   g_return_if_fail (src != NULL);
1706   g_return_if_fail (GST_IS_ELEMENT (src));
1707   g_return_if_fail (srcpadname != NULL);
1708   g_return_if_fail (dest != NULL);
1709   g_return_if_fail (GST_IS_ELEMENT (dest));
1710   g_return_if_fail (destpadname != NULL);
1711
1712   /* obtain the pads requested */
1713   srcpad = gst_element_get_pad (src, srcpadname);
1714   if (srcpad == NULL) {
1715     GST_WARNING_OBJECT (src, "source element has no pad \"%s\"", srcpadname);
1716     return;
1717   }
1718   destpad = gst_element_get_pad (dest, destpadname);
1719   if (destpad == NULL) {
1720     GST_WARNING_OBJECT (dest, "destination element has no pad \"%s\"",
1721         destpadname);
1722     gst_object_unref (srcpad);
1723     return;
1724   }
1725
1726   /* we're satisified they can be unlinked, let's do it */
1727   gst_pad_unlink (srcpad, destpad);
1728   gst_object_unref (srcpad);
1729   gst_object_unref (destpad);
1730 }
1731
1732 /**
1733  * gst_element_unlink_many:
1734  * @element_1: the first #GstElement in the link chain.
1735  * @element_2: the second #GstElement in the link chain.
1736  * @...: the NULL-terminated list of elements to unlink in order.
1737  *
1738  * Unlinks a series of elements. Uses gst_element_unlink().
1739  */
1740 void
1741 gst_element_unlink_many (GstElement * element_1, GstElement * element_2, ...)
1742 {
1743   va_list args;
1744
1745   g_return_if_fail (element_1 != NULL && element_2 != NULL);
1746   g_return_if_fail (GST_IS_ELEMENT (element_1) && GST_IS_ELEMENT (element_2));
1747
1748   va_start (args, element_2);
1749
1750   while (element_2) {
1751     gst_element_unlink (element_1, element_2);
1752
1753     element_1 = element_2;
1754     element_2 = va_arg (args, GstElement *);
1755   }
1756
1757   va_end (args);
1758 }
1759
1760 /**
1761  * gst_element_unlink:
1762  * @src: the source #GstElement to unlink.
1763  * @dest: the sink #GstElement to unlink.
1764  *
1765  * Unlinks all source pads of the source element with all sink pads
1766  * of the sink element to which they are linked.
1767  */
1768 void
1769 gst_element_unlink (GstElement * src, GstElement * dest)
1770 {
1771   GstIterator *pads;
1772   gboolean done = FALSE;
1773
1774   g_return_if_fail (GST_IS_ELEMENT (src));
1775   g_return_if_fail (GST_IS_ELEMENT (dest));
1776
1777   GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unlinking \"%s\" and \"%s\"",
1778       GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (dest));
1779
1780   pads = gst_element_iterate_pads (src);
1781   while (!done) {
1782     gpointer data;
1783
1784     switch (gst_iterator_next (pads, &data)) {
1785       case GST_ITERATOR_OK:
1786       {
1787         GstPad *pad = GST_PAD_CAST (data);
1788
1789         if (GST_PAD_IS_SRC (pad)) {
1790           GstPad *peerpad = gst_pad_get_peer (pad);
1791
1792           /* see if the pad is connected and is really a pad
1793            * of dest */
1794           if (peerpad) {
1795             GstElement *peerelem;
1796
1797             peerelem = gst_pad_get_parent_element (peerpad);
1798
1799             if (peerelem == dest) {
1800               gst_pad_unlink (pad, peerpad);
1801             }
1802             if (peerelem)
1803               gst_object_unref (peerelem);
1804
1805             gst_object_unref (peerpad);
1806           }
1807         }
1808         gst_object_unref (pad);
1809         break;
1810       }
1811       case GST_ITERATOR_RESYNC:
1812         gst_iterator_resync (pads);
1813         break;
1814       case GST_ITERATOR_DONE:
1815         done = TRUE;
1816         break;
1817       default:
1818         g_assert_not_reached ();
1819         break;
1820     }
1821   }
1822   gst_iterator_free (pads);
1823 }
1824
1825 /**
1826  * gst_element_query_position:
1827  * @element: a #GstElement to invoke the position query on.
1828  * @format: a pointer to the #GstFormat asked for.
1829  *          On return contains the #GstFormat used.
1830  * @cur: A location in which to store the current position, or NULL.
1831  *
1832  * Queries an element for the stream position.
1833  *
1834  * Returns: TRUE if the query could be performed.
1835  */
1836 gboolean
1837 gst_element_query_position (GstElement * element, GstFormat * format,
1838     gint64 * cur)
1839 {
1840   GstQuery *query;
1841   gboolean ret;
1842
1843   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1844   g_return_val_if_fail (format != NULL, FALSE);
1845
1846   query = gst_query_new_position (*format);
1847   ret = gst_element_query (element, query);
1848
1849   if (ret)
1850     gst_query_parse_position (query, format, cur);
1851
1852   gst_query_unref (query);
1853
1854   return ret;
1855 }
1856
1857 /**
1858  * gst_element_query_duration:
1859  * @element: a #GstElement to invoke the duration query on.
1860  * @format: a pointer to the #GstFormat asked for.
1861  *          On return contains the #GstFormat used.
1862  * @duration: A location in which to store the total duration, or NULL.
1863  *
1864  * Queries an element for the total stream duration.
1865  *
1866  * Returns: TRUE if the query could be performed.
1867  */
1868 gboolean
1869 gst_element_query_duration (GstElement * element, GstFormat * format,
1870     gint64 * duration)
1871 {
1872   GstQuery *query;
1873   gboolean ret;
1874
1875   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1876   g_return_val_if_fail (format != NULL, FALSE);
1877
1878   query = gst_query_new_duration (*format);
1879   ret = gst_element_query (element, query);
1880
1881   if (ret)
1882     gst_query_parse_duration (query, format, duration);
1883
1884   gst_query_unref (query);
1885
1886   return ret;
1887 }
1888
1889 /**
1890  * gst_element_query_convert:
1891  * @element: a #GstElement to invoke the convert query on.
1892  * @src_format: a #GstFormat to convert from.
1893  * @src_val: a value to convert.
1894  * @dest_format: a pointer to the #GstFormat to convert to.
1895  * @dest_val: a pointer to the result.
1896  *
1897  * Queries an element to convert @src_val in @src_format to @dest_format.
1898  *
1899  * Returns: TRUE if the query could be performed.
1900  */
1901 gboolean
1902 gst_element_query_convert (GstElement * element, GstFormat src_format,
1903     gint64 src_val, GstFormat * dest_format, gint64 * dest_val)
1904 {
1905   GstQuery *query;
1906   gboolean ret;
1907
1908   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1909   g_return_val_if_fail (dest_format != NULL, FALSE);
1910   g_return_val_if_fail (dest_val != NULL, FALSE);
1911
1912   if (*dest_format == src_format) {
1913     *dest_val = src_val;
1914     return TRUE;
1915   }
1916
1917   query = gst_query_new_convert (src_format, src_val, *dest_format);
1918   ret = gst_element_query (element, query);
1919
1920   if (ret)
1921     gst_query_parse_convert (query, NULL, NULL, dest_format, dest_val);
1922
1923   gst_query_unref (query);
1924
1925   return ret;
1926 }
1927
1928 /**
1929  * gst_element_seek_simple
1930  * @element: a #GstElement to seek on
1931  * @format: a #GstFormat to execute the seek in, such as #GST_FORMAT_TIME
1932  * @seek_flags: seek options
1933  * @seek_pos: position to seek to (relative to the start); if you are doing
1934  *            a seek in #GST_FORMAT_TIME this value is in nanoseconds -
1935  *            multiply with #GST_SECOND to convert seconds to nanoseconds or
1936  *            with #GST_MSECOND to convert milliseconds to nanoseconds.
1937  *
1938  * Simple API to perform a seek on the given element, meaning it just seeks
1939  * to the given position relative to the start of the stream. For more complex
1940  * operations like segment seeks (e.g. for looping) or changing the playback
1941  * rate or seeking relative to the current position or seeking relative to
1942  * the end of the stream you should use gst_element_seek ().
1943  *
1944  * Note that seeking is usually only possible in PAUSED or PLAYING state.
1945  *
1946  * Returns: TRUE if the seek operation succeeded (the seek
1947  *          might not always be executed instantly though)
1948  *
1949  * Since: 0.10.7
1950  */
1951 gboolean
1952 gst_element_seek_simple (GstElement * element, GstFormat format,
1953     GstSeekFlags seek_flags, gint64 seek_pos)
1954 {
1955   g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
1956   g_return_val_if_fail (seek_pos >= 0, FALSE);
1957
1958   return gst_element_seek (element, 1.0, format, seek_flags,
1959       GST_SEEK_TYPE_SET, seek_pos, GST_SEEK_TYPE_NONE, 0);
1960 }
1961
1962 /**
1963  * gst_pad_can_link:
1964  * @srcpad: the source #GstPad to link.
1965  * @sinkpad: the sink #GstPad to link.
1966  *
1967  * Checks if the source pad and the sink pad can be linked.
1968  * Both @srcpad and @sinkpad must be unlinked.
1969  *
1970  * Returns: TRUE if the pads can be linked, FALSE otherwise.
1971  */
1972 gboolean
1973 gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
1974 {
1975   /* FIXME This function is gross.  It's almost a direct copy of
1976    * gst_pad_link_filtered().  Any decent programmer would attempt
1977    * to merge the two functions, which I will do some day. --ds
1978    */
1979
1980   /* generic checks */
1981   g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
1982   g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
1983
1984   GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s",
1985       GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
1986
1987   /* FIXME: shouldn't we convert this to g_return_val_if_fail? */
1988   if (GST_PAD_PEER (srcpad) != NULL) {
1989     GST_CAT_INFO (GST_CAT_PADS, "Source pad %s:%s has a peer, failed",
1990         GST_DEBUG_PAD_NAME (srcpad));
1991     return FALSE;
1992   }
1993   if (GST_PAD_PEER (sinkpad) != NULL) {
1994     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s has a peer, failed",
1995         GST_DEBUG_PAD_NAME (sinkpad));
1996     return FALSE;
1997   }
1998   if (!GST_PAD_IS_SRC (srcpad)) {
1999     GST_CAT_INFO (GST_CAT_PADS, "Src pad %s:%s is not source pad, failed",
2000         GST_DEBUG_PAD_NAME (srcpad));
2001     return FALSE;
2002   }
2003   if (!GST_PAD_IS_SINK (sinkpad)) {
2004     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s is not sink pad, failed",
2005         GST_DEBUG_PAD_NAME (sinkpad));
2006     return FALSE;
2007   }
2008   if (GST_PAD_PARENT (srcpad) == NULL) {
2009     GST_CAT_INFO (GST_CAT_PADS, "Src pad %s:%s has no parent, failed",
2010         GST_DEBUG_PAD_NAME (srcpad));
2011     return FALSE;
2012   }
2013   if (GST_PAD_PARENT (sinkpad) == NULL) {
2014     GST_CAT_INFO (GST_CAT_PADS, "Sink pad %s:%s has no parent, failed",
2015         GST_DEBUG_PAD_NAME (srcpad));
2016     return FALSE;
2017   }
2018
2019   return TRUE;
2020 }
2021
2022 /**
2023  * gst_pad_use_fixed_caps:
2024  * @pad: the pad to use
2025  *
2026  * A helper function you can use that sets the
2027  * @gst_pad_get_fixed_caps_func as the getcaps function for the
2028  * pad. This way the function will always return the negotiated caps
2029  * or in case the pad is not negotiated, the padtemplate caps.
2030  *
2031  * Use this function on a pad that, once _set_caps() has been called
2032  * on it, cannot be renegotiated to something else.
2033  */
2034 void
2035 gst_pad_use_fixed_caps (GstPad * pad)
2036 {
2037   gst_pad_set_getcaps_function (pad, gst_pad_get_fixed_caps_func);
2038 }
2039
2040 /**
2041  * gst_pad_get_fixed_caps_func:
2042  * @pad: the pad to use
2043  *
2044  * A helper function you can use as a GetCaps function that
2045  * will return the currently negotiated caps or the padtemplate
2046  * when NULL.
2047  *
2048  * Returns: The currently negotiated caps or the padtemplate.
2049  */
2050 GstCaps *
2051 gst_pad_get_fixed_caps_func (GstPad * pad)
2052 {
2053   GstCaps *result;
2054
2055   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2056
2057   GST_OBJECT_LOCK (pad);
2058   if (GST_PAD_CAPS (pad)) {
2059     result = GST_PAD_CAPS (pad);
2060
2061     GST_CAT_DEBUG (GST_CAT_CAPS,
2062         "using pad caps %p %" GST_PTR_FORMAT, result, result);
2063
2064     result = gst_caps_ref (result);
2065     goto done;
2066   }
2067   if (GST_PAD_PAD_TEMPLATE (pad)) {
2068     GstPadTemplate *templ = GST_PAD_PAD_TEMPLATE (pad);
2069
2070     result = GST_PAD_TEMPLATE_CAPS (templ);
2071     GST_CAT_DEBUG (GST_CAT_CAPS,
2072         "using pad template %p with caps %p %" GST_PTR_FORMAT, templ, result,
2073         result);
2074
2075     result = gst_caps_ref (result);
2076     goto done;
2077   }
2078   GST_CAT_DEBUG (GST_CAT_CAPS, "pad has no caps");
2079   result = gst_caps_new_empty ();
2080
2081 done:
2082   GST_OBJECT_UNLOCK (pad);
2083
2084   return result;
2085 }
2086
2087 /**
2088  * gst_pad_get_parent_element:
2089  * @pad: a pad
2090  *
2091  * Gets the parent of @pad, cast to a #GstElement. If a @pad has no parent or
2092  * its parent is not an element, return NULL.
2093  *
2094  * Returns: The parent of the pad. The caller has a reference on the parent, so
2095  * unref when you're finished with it.
2096  *
2097  * MT safe.
2098  */
2099 GstElement *
2100 gst_pad_get_parent_element (GstPad * pad)
2101 {
2102   GstObject *p;
2103
2104   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2105
2106   p = gst_object_get_parent (GST_OBJECT_CAST (pad));
2107
2108   if (p && !GST_IS_ELEMENT (p)) {
2109     gst_object_unref (p);
2110     p = NULL;
2111   }
2112   return GST_ELEMENT_CAST (p);
2113 }
2114
2115 /**
2116  * gst_object_default_error:
2117  * @source: the #GstObject that initiated the error.
2118  * @error: the GError.
2119  * @debug: an additional debug information string, or NULL.
2120  *
2121  * A default error function.
2122  *
2123  * The default handler will simply print the error string using g_print.
2124  */
2125 void
2126 gst_object_default_error (GstObject * source, GError * error, gchar * debug)
2127 {
2128   gchar *name = gst_object_get_path_string (source);
2129
2130   g_print (_("ERROR: from element %s: %s\n"), name, error->message);
2131   if (debug)
2132     g_print (_("Additional debug info:\n%s\n"), debug);
2133
2134   g_free (name);
2135 }
2136
2137 /**
2138  * gst_bin_add_many:
2139  * @bin: a #GstBin
2140  * @element_1: the #GstElement element to add to the bin
2141  * @...: additional elements to add to the bin
2142  *
2143  * Adds a NULL-terminated list of elements to a bin.  This function is
2144  * equivalent to calling gst_bin_add() for each member of the list.
2145  */
2146 void
2147 gst_bin_add_many (GstBin * bin, GstElement * element_1, ...)
2148 {
2149   va_list args;
2150
2151   g_return_if_fail (GST_IS_BIN (bin));
2152   g_return_if_fail (GST_IS_ELEMENT (element_1));
2153
2154   va_start (args, element_1);
2155
2156   while (element_1) {
2157     gst_bin_add (bin, element_1);
2158
2159     element_1 = va_arg (args, GstElement *);
2160   }
2161
2162   va_end (args);
2163 }
2164
2165 /**
2166  * gst_bin_remove_many:
2167  * @bin: a #GstBin
2168  * @element_1: the first #GstElement to remove from the bin
2169  * @...: NULL-terminated list of elements to remove from the bin
2170  *
2171  * Remove a list of elements from a bin. This function is equivalent
2172  * to calling gst_bin_remove() with each member of the list.
2173  */
2174 void
2175 gst_bin_remove_many (GstBin * bin, GstElement * element_1, ...)
2176 {
2177   va_list args;
2178
2179   g_return_if_fail (GST_IS_BIN (bin));
2180   g_return_if_fail (GST_IS_ELEMENT (element_1));
2181
2182   va_start (args, element_1);
2183
2184   while (element_1) {
2185     gst_bin_remove (bin, element_1);
2186
2187     element_1 = va_arg (args, GstElement *);
2188   }
2189
2190   va_end (args);
2191 }
2192
2193 static void
2194 gst_element_populate_std_props (GObjectClass * klass, const gchar * prop_name,
2195     guint arg_id, GParamFlags flags)
2196 {
2197   GQuark prop_id = g_quark_from_string (prop_name);
2198   GParamSpec *pspec;
2199
2200   static GQuark fd_id = 0;
2201   static GQuark blocksize_id;
2202   static GQuark bytesperread_id;
2203   static GQuark dump_id;
2204   static GQuark filesize_id;
2205   static GQuark mmapsize_id;
2206   static GQuark location_id;
2207   static GQuark offset_id;
2208   static GQuark silent_id;
2209   static GQuark touch_id;
2210
2211   if (!fd_id) {
2212     fd_id = g_quark_from_static_string ("fd");
2213     blocksize_id = g_quark_from_static_string ("blocksize");
2214     bytesperread_id = g_quark_from_static_string ("bytesperread");
2215     dump_id = g_quark_from_static_string ("dump");
2216     filesize_id = g_quark_from_static_string ("filesize");
2217     mmapsize_id = g_quark_from_static_string ("mmapsize");
2218     location_id = g_quark_from_static_string ("location");
2219     offset_id = g_quark_from_static_string ("offset");
2220     silent_id = g_quark_from_static_string ("silent");
2221     touch_id = g_quark_from_static_string ("touch");
2222   }
2223
2224   if (prop_id == fd_id) {
2225     pspec = g_param_spec_int ("fd", "File-descriptor",
2226         "File-descriptor for the file being read", 0, G_MAXINT, 0, flags);
2227   } else if (prop_id == blocksize_id) {
2228     pspec = g_param_spec_ulong ("blocksize", "Block Size",
2229         "Block size to read per buffer", 0, G_MAXULONG, 4096, flags);
2230
2231   } else if (prop_id == bytesperread_id) {
2232     pspec = g_param_spec_int ("bytesperread", "Bytes per read",
2233         "Number of bytes to read per buffer", G_MININT, G_MAXINT, 0, flags);
2234
2235   } else if (prop_id == dump_id) {
2236     pspec = g_param_spec_boolean ("dump", "Dump",
2237         "Dump bytes to stdout", FALSE, flags);
2238
2239   } else if (prop_id == filesize_id) {
2240     pspec = g_param_spec_int64 ("filesize", "File Size",
2241         "Size of the file being read", 0, G_MAXINT64, 0, flags);
2242
2243   } else if (prop_id == mmapsize_id) {
2244     pspec = g_param_spec_ulong ("mmapsize", "mmap() Block Size",
2245         "Size in bytes of mmap()d regions", 0, G_MAXULONG, 4 * 1048576, flags);
2246
2247   } else if (prop_id == location_id) {
2248     pspec = g_param_spec_string ("location", "File Location",
2249         "Location of the file to read", NULL, flags);
2250
2251   } else if (prop_id == offset_id) {
2252     pspec = g_param_spec_int64 ("offset", "File Offset",
2253         "Byte offset of current read pointer", 0, G_MAXINT64, 0, flags);
2254
2255   } else if (prop_id == silent_id) {
2256     pspec = g_param_spec_boolean ("silent", "Silent", "Don't produce events",
2257         FALSE, flags);
2258
2259   } else if (prop_id == touch_id) {
2260     pspec = g_param_spec_boolean ("touch", "Touch read data",
2261         "Touch data to force disk read before " "push ()", TRUE, flags);
2262   } else {
2263     g_warning ("Unknown - 'standard' property '%s' id %d from klass %s",
2264         prop_name, arg_id, g_type_name (G_OBJECT_CLASS_TYPE (klass)));
2265     pspec = NULL;
2266   }
2267
2268   if (pspec) {
2269     g_object_class_install_property (klass, arg_id, pspec);
2270   }
2271 }
2272
2273 /**
2274  * gst_element_class_install_std_props:
2275  * @klass: the #GstElementClass to add the properties to.
2276  * @first_name: the name of the first property.
2277  * in a NULL terminated
2278  * @...: the id and flags of the first property, followed by
2279  * further 'name', 'id', 'flags' triplets and terminated by NULL.
2280  *
2281  * Adds a list of standardized properties with types to the @klass.
2282  * the id is for the property switch in your get_prop method, and
2283  * the flags determine readability / writeability.
2284  **/
2285 void
2286 gst_element_class_install_std_props (GstElementClass * klass,
2287     const gchar * first_name, ...)
2288 {
2289   const char *name;
2290
2291   va_list args;
2292
2293   g_return_if_fail (GST_IS_ELEMENT_CLASS (klass));
2294
2295   va_start (args, first_name);
2296
2297   name = first_name;
2298
2299   while (name) {
2300     int arg_id = va_arg (args, int);
2301     int flags = va_arg (args, int);
2302
2303     gst_element_populate_std_props ((GObjectClass *) klass, name, arg_id,
2304         flags);
2305
2306     name = va_arg (args, char *);
2307   }
2308
2309   va_end (args);
2310 }
2311
2312
2313 /**
2314  * gst_buffer_merge:
2315  * @buf1: the first source #GstBuffer to merge.
2316  * @buf2: the second source #GstBuffer to merge.
2317  *
2318  * Create a new buffer that is the concatenation of the two source
2319  * buffers.  The original source buffers will not be modified or
2320  * unref'd.  Make sure you unref the source buffers if they are not used
2321  * anymore afterwards.
2322  *
2323  * If the buffers point to contiguous areas of memory, the buffer
2324  * is created without copying the data.
2325  *
2326  * Returns: the new #GstBuffer which is the concatenation of the source buffers.
2327  */
2328 GstBuffer *
2329 gst_buffer_merge (GstBuffer * buf1, GstBuffer * buf2)
2330 {
2331   GstBuffer *result;
2332
2333   /* we're just a specific case of the more general gst_buffer_span() */
2334   result = gst_buffer_span (buf1, 0, buf2, buf1->size + buf2->size);
2335
2336   return result;
2337 }
2338
2339 /**
2340  * gst_buffer_join:
2341  * @buf1: the first source #GstBuffer.
2342  * @buf2: the second source #GstBuffer.
2343  *
2344  * Create a new buffer that is the concatenation of the two source
2345  * buffers, and unrefs the original source buffers.
2346  *
2347  * If the buffers point to contiguous areas of memory, the buffer
2348  * is created without copying the data.
2349  *
2350  * Returns: the new #GstBuffer which is the concatenation of the source buffers.
2351  */
2352 GstBuffer *
2353 gst_buffer_join (GstBuffer * buf1, GstBuffer * buf2)
2354 {
2355   GstBuffer *result;
2356
2357   result = gst_buffer_span (buf1, 0, buf2, buf1->size + buf2->size);
2358   gst_buffer_unref (buf1);
2359   gst_buffer_unref (buf2);
2360
2361   return result;
2362 }
2363
2364
2365 /**
2366  * gst_buffer_stamp:
2367  * @dest: buffer to stamp
2368  * @src: buffer to stamp from
2369  *
2370  * Copies additional information (the timestamp, duration, and offset start
2371  * and end) from one buffer to the other.
2372  *
2373  * This function does not copy any buffer flags or caps.
2374  */
2375 void
2376 gst_buffer_stamp (GstBuffer * dest, const GstBuffer * src)
2377 {
2378   g_return_if_fail (dest != NULL);
2379   g_return_if_fail (src != NULL);
2380
2381   GST_BUFFER_TIMESTAMP (dest) = GST_BUFFER_TIMESTAMP (src);
2382   GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
2383   GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
2384   GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
2385 }
2386
2387 static gboolean
2388 intersect_caps_func (GstPad * pad, GValue * ret, GstPad * orig)
2389 {
2390   if (pad != orig) {
2391     GstCaps *peercaps, *existing;
2392
2393     existing = g_value_get_pointer (ret);
2394     peercaps = gst_pad_peer_get_caps (pad);
2395     if (peercaps == NULL)
2396       peercaps = gst_caps_new_any ();
2397     g_value_set_pointer (ret, gst_caps_intersect (existing, peercaps));
2398     gst_caps_unref (existing);
2399     gst_caps_unref (peercaps);
2400   }
2401   gst_object_unref (pad);
2402   return TRUE;
2403 }
2404
2405 /**
2406  * gst_pad_proxy_getcaps:
2407  * @pad: a #GstPad to proxy.
2408  *
2409  * Calls gst_pad_get_allowed_caps() for every other pad belonging to the
2410  * same element as @pad, and returns the intersection of the results.
2411  *
2412  * This function is useful as a default getcaps function for an element
2413  * that can handle any stream format, but requires all its pads to have
2414  * the same caps.  Two such elements are tee and aggregator.
2415  *
2416  * Returns: the intersection of the other pads' allowed caps.
2417  */
2418 GstCaps *
2419 gst_pad_proxy_getcaps (GstPad * pad)
2420 {
2421   GstElement *element;
2422   GstCaps *caps, *intersected;
2423   GstIterator *iter;
2424   GstIteratorResult res;
2425   GValue ret = { 0, };
2426
2427   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
2428
2429   GST_DEBUG ("proxying getcaps for %s:%s", GST_DEBUG_PAD_NAME (pad));
2430
2431   element = gst_pad_get_parent_element (pad);
2432   if (element == NULL)
2433     return NULL;
2434
2435   iter = gst_element_iterate_pads (element);
2436
2437   g_value_init (&ret, G_TYPE_POINTER);
2438   g_value_set_pointer (&ret, gst_caps_new_any ());
2439
2440   res = gst_iterator_fold (iter, (GstIteratorFoldFunction) intersect_caps_func,
2441       &ret, pad);
2442   gst_iterator_free (iter);
2443
2444   if (res != GST_ITERATOR_DONE)
2445     goto pads_changed;
2446
2447   gst_object_unref (element);
2448
2449   caps = g_value_get_pointer (&ret);
2450   g_value_unset (&ret);
2451
2452   intersected = gst_caps_intersect (caps, gst_pad_get_pad_template_caps (pad));
2453   gst_caps_unref (caps);
2454
2455   return intersected;
2456
2457   /* ERRORS */
2458 pads_changed:
2459   {
2460     g_warning ("Pad list changed during capsnego for element %s",
2461         GST_ELEMENT_NAME (element));
2462     gst_object_unref (element);
2463     return NULL;
2464   }
2465 }
2466
2467 typedef struct
2468 {
2469   GstPad *orig;
2470   GstCaps *caps;
2471 } LinkData;
2472
2473 static gboolean
2474 link_fold_func (GstPad * pad, GValue * ret, LinkData * data)
2475 {
2476   gboolean success = TRUE;
2477
2478   if (pad != data->orig) {
2479     success = gst_pad_set_caps (pad, data->caps);
2480     g_value_set_boolean (ret, success);
2481   }
2482   gst_object_unref (pad);
2483
2484   return success;
2485 }
2486
2487 /**
2488  * gst_pad_proxy_setcaps
2489  * @pad: a #GstPad to proxy from
2490  * @caps: the #GstCaps to link with
2491  *
2492  * Calls gst_pad_set_caps() for every other pad belonging to the
2493  * same element as @pad.  If gst_pad_set_caps() fails on any pad,
2494  * the proxy setcaps fails. May be used only during negotiation.
2495  *
2496  * Returns: TRUE if sucessful
2497  */
2498 gboolean
2499 gst_pad_proxy_setcaps (GstPad * pad, GstCaps * caps)
2500 {
2501   GstElement *element;
2502   GstIterator *iter;
2503   GstIteratorResult res;
2504   GValue ret = { 0, };
2505   LinkData data;
2506
2507   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2508   g_return_val_if_fail (caps != NULL, FALSE);
2509
2510   GST_DEBUG ("proxying pad link for %s:%s", GST_DEBUG_PAD_NAME (pad));
2511
2512   element = gst_pad_get_parent_element (pad);
2513   if (element == NULL)
2514     return FALSE;
2515
2516   iter = gst_element_iterate_pads (element);
2517
2518   g_value_init (&ret, G_TYPE_BOOLEAN);
2519   g_value_set_boolean (&ret, TRUE);
2520   data.orig = pad;
2521   data.caps = caps;
2522
2523   res = gst_iterator_fold (iter, (GstIteratorFoldFunction) link_fold_func,
2524       &ret, &data);
2525   gst_iterator_free (iter);
2526
2527   if (res != GST_ITERATOR_DONE)
2528     goto pads_changed;
2529
2530   gst_object_unref (element);
2531
2532   /* ok not to unset the gvalue */
2533   return g_value_get_boolean (&ret);
2534
2535   /* ERRORS */
2536 pads_changed:
2537   {
2538     g_warning ("Pad list changed during proxy_pad_link for element %s",
2539         GST_ELEMENT_NAME (element));
2540     gst_object_unref (element);
2541     return FALSE;
2542   }
2543 }
2544
2545 /**
2546  * gst_pad_query_position:
2547  * @pad: a #GstPad to invoke the position query on.
2548  * @format: a pointer to the #GstFormat asked for.
2549  *          On return contains the #GstFormat used.
2550  * @cur: A location in which to store the current position, or NULL.
2551  *
2552  * Queries a pad for the stream position.
2553  *
2554  * Returns: TRUE if the query could be performed.
2555  */
2556 gboolean
2557 gst_pad_query_position (GstPad * pad, GstFormat * format, gint64 * cur)
2558 {
2559   GstQuery *query;
2560   gboolean ret;
2561
2562   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2563   g_return_val_if_fail (format != NULL, FALSE);
2564
2565   query = gst_query_new_position (*format);
2566   ret = gst_pad_query (pad, query);
2567
2568   if (ret)
2569     gst_query_parse_position (query, format, cur);
2570
2571   gst_query_unref (query);
2572
2573   return ret;
2574 }
2575
2576 /**
2577  * gst_pad_query_peer_position:
2578  * @pad: a #GstPad on whose peer to invoke the position query on.
2579  *       Must be a sink pad.
2580  * @format: a pointer to the #GstFormat asked for.
2581  *          On return contains the #GstFormat used.
2582  * @cur: A location in which to store the current position, or NULL.
2583  *
2584  * Queries the peer of a given sink pad for the stream position.
2585  *
2586  * Returns: TRUE if the query could be performed.
2587  */
2588 gboolean
2589 gst_pad_query_peer_position (GstPad * pad, GstFormat * format, gint64 * cur)
2590 {
2591   gboolean ret = FALSE;
2592   GstPad *peer;
2593
2594   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2595   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
2596   g_return_val_if_fail (format != NULL, FALSE);
2597
2598   peer = gst_pad_get_peer (pad);
2599   if (peer) {
2600     ret = gst_pad_query_position (peer, format, cur);
2601     gst_object_unref (peer);
2602   }
2603
2604   return ret;
2605 }
2606
2607 /**
2608  * gst_pad_query_duration:
2609  * @pad: a #GstPad to invoke the duration query on.
2610  * @format: a pointer to the #GstFormat asked for.
2611  *          On return contains the #GstFormat used.
2612  * @duration: A location in which to store the total duration, or NULL.
2613  *
2614  * Queries a pad for the total stream duration.
2615  *
2616  * Returns: TRUE if the query could be performed.
2617  */
2618 gboolean
2619 gst_pad_query_duration (GstPad * pad, GstFormat * format, gint64 * duration)
2620 {
2621   GstQuery *query;
2622   gboolean ret;
2623
2624   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2625   g_return_val_if_fail (format != NULL, FALSE);
2626
2627   query = gst_query_new_duration (*format);
2628   ret = gst_pad_query (pad, query);
2629
2630   if (ret)
2631     gst_query_parse_duration (query, format, duration);
2632
2633   gst_query_unref (query);
2634
2635   return ret;
2636 }
2637
2638 /**
2639  * gst_pad_query_peer_duration:
2640  * @pad: a #GstPad on whose peer pad to invoke the duration query on.
2641  *       Must be a sink pad.
2642  * @format: a pointer to the #GstFormat asked for.
2643  *          On return contains the #GstFormat used.
2644  * @duration: A location in which to store the total duration, or NULL.
2645  *
2646  * Queries the peer pad of a given sink pad for the total stream duration.
2647  *
2648  * Returns: TRUE if the query could be performed.
2649  */
2650 gboolean
2651 gst_pad_query_peer_duration (GstPad * pad, GstFormat * format,
2652     gint64 * duration)
2653 {
2654   gboolean ret = FALSE;
2655   GstPad *peer;
2656
2657   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2658   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
2659   g_return_val_if_fail (format != NULL, FALSE);
2660
2661   peer = gst_pad_get_peer (pad);
2662   if (peer) {
2663     ret = gst_pad_query_duration (peer, format, duration);
2664     gst_object_unref (peer);
2665   }
2666
2667   return ret;
2668 }
2669
2670 /**
2671  * gst_pad_query_convert:
2672  * @pad: a #GstPad to invoke the convert query on.
2673  * @src_format: a #GstFormat to convert from.
2674  * @src_val: a value to convert.
2675  * @dest_format: a pointer to the #GstFormat to convert to.
2676  * @dest_val: a pointer to the result.
2677  *
2678  * Queries a pad to convert @src_val in @src_format to @dest_format.
2679  *
2680  * Returns: TRUE if the query could be performed.
2681  */
2682 gboolean
2683 gst_pad_query_convert (GstPad * pad, GstFormat src_format, gint64 src_val,
2684     GstFormat * dest_format, gint64 * dest_val)
2685 {
2686   GstQuery *query;
2687   gboolean ret;
2688
2689   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2690   g_return_val_if_fail (src_val >= 0, FALSE);
2691   g_return_val_if_fail (dest_format != NULL, FALSE);
2692   g_return_val_if_fail (dest_val != NULL, FALSE);
2693
2694   if (*dest_format == src_format) {
2695     *dest_val = src_val;
2696     return TRUE;
2697   }
2698
2699   query = gst_query_new_convert (src_format, src_val, *dest_format);
2700   ret = gst_pad_query (pad, query);
2701
2702   if (ret)
2703     gst_query_parse_convert (query, NULL, NULL, dest_format, dest_val);
2704
2705   gst_query_unref (query);
2706
2707   return ret;
2708 }
2709
2710 /**
2711  * gst_pad_query_peer_convert:
2712  * @pad: a #GstPad, on whose peer pad to invoke the convert query on.
2713  *       Must be a sink pad.
2714  * @src_format: a #GstFormat to convert from.
2715  * @src_val: a value to convert.
2716  * @dest_format: a pointer to the #GstFormat to convert to.
2717  * @dest_val: a pointer to the result.
2718  *
2719  * Queries the peer pad of a given sink pad to convert @src_val in @src_format
2720  * to @dest_format.
2721  *
2722  * Returns: TRUE if the query could be performed.
2723  */
2724 gboolean
2725 gst_pad_query_peer_convert (GstPad * pad, GstFormat src_format, gint64 src_val,
2726     GstFormat * dest_format, gint64 * dest_val)
2727 {
2728   gboolean ret = FALSE;
2729   GstPad *peer;
2730
2731   g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
2732   g_return_val_if_fail (GST_PAD_IS_SINK (pad), FALSE);
2733   g_return_val_if_fail (src_val >= 0, FALSE);
2734   g_return_val_if_fail (dest_format != NULL, FALSE);
2735   g_return_val_if_fail (dest_val != NULL, FALSE);
2736
2737   peer = gst_pad_get_peer (pad);
2738   if (peer) {
2739     ret = gst_pad_query_convert (peer, src_format, src_val, dest_format,
2740         dest_val);
2741     gst_object_unref (peer);
2742   }
2743
2744   return ret;
2745 }
2746
2747 /**
2748  * gst_atomic_int_set:
2749  * @atomic_int: pointer to an atomic integer
2750  * @value: value to set
2751  *
2752  * Unconditionally sets the atomic integer to @value.
2753  */
2754 void
2755 gst_atomic_int_set (gint * atomic_int, gint value)
2756 {
2757   int ignore;
2758
2759   *atomic_int = value;
2760   /* read acts as a memory barrier */
2761   ignore = g_atomic_int_get (atomic_int);
2762 }
2763
2764 /**
2765  * gst_pad_add_data_probe:
2766  * @pad: pad to add the data probe handler to
2767  * @handler: function to call when data is passed over pad
2768  * @data: data to pass along with the handler
2769  *
2770  * Adds a "data probe" to a pad. This function will be called whenever data
2771  * passes through a pad. In this case data means both events and buffers. The
2772  * probe will be called with the data as an argument, meaning @handler should
2773  * have the same callback signature as the 'have-data' signal of #GstPad.
2774  * Note that the data will have a reference count greater than 1, so it will
2775  * be immutable -- you must not change it.
2776  *
2777  * For source pads, the probe will be called after the blocking function, if any
2778  * (see gst_pad_set_blocked_async()), but before looking up the peer to chain
2779  * to. For sink pads, the probe function will be called before configuring the
2780  * sink with new caps, if any, and before calling the pad's chain function.
2781  *
2782  * Your data probe should return TRUE to let the data continue to flow, or FALSE
2783  * to drop it. Dropping data is rarely useful, but occasionally comes in handy
2784  * with events.
2785  *
2786  * Although probes are implemented internally by connecting @handler to the
2787  * have-data signal on the pad, if you want to remove a probe it is insufficient
2788  * to only call g_signal_handler_disconnect on the returned handler id. To
2789  * remove a probe, use the appropriate function, such as
2790  * gst_pad_remove_data_probe().
2791  *
2792  * Returns: The handler id.
2793  */
2794 gulong
2795 gst_pad_add_data_probe (GstPad * pad, GCallback handler, gpointer data)
2796 {
2797   gulong sigid;
2798
2799   g_return_val_if_fail (GST_IS_PAD (pad), 0);
2800   g_return_val_if_fail (handler != NULL, 0);
2801
2802   GST_OBJECT_LOCK (pad);
2803   sigid = g_signal_connect (pad, "have-data", handler, data);
2804   GST_PAD_DO_EVENT_SIGNALS (pad)++;
2805   GST_PAD_DO_BUFFER_SIGNALS (pad)++;
2806   GST_DEBUG ("adding data probe to pad %s:%s, now %d data, %d event probes",
2807       GST_DEBUG_PAD_NAME (pad),
2808       GST_PAD_DO_BUFFER_SIGNALS (pad), GST_PAD_DO_EVENT_SIGNALS (pad));
2809   GST_OBJECT_UNLOCK (pad);
2810
2811   return sigid;
2812 }
2813
2814 /**
2815  * gst_pad_add_event_probe:
2816  * @pad: pad to add the event probe handler to
2817  * @handler: function to call when data is passed over pad
2818  * @data: data to pass along with the handler
2819  *
2820  * Adds a probe that will be called for all events passing through a pad. See
2821  * gst_pad_add_data_probe() for more information.
2822  *
2823  * Returns: The handler id
2824  */
2825 gulong
2826 gst_pad_add_event_probe (GstPad * pad, GCallback handler, gpointer data)
2827 {
2828   gulong sigid;
2829
2830   g_return_val_if_fail (GST_IS_PAD (pad), 0);
2831   g_return_val_if_fail (handler != NULL, 0);
2832
2833   GST_OBJECT_LOCK (pad);
2834   sigid = g_signal_connect (pad, "have-data::event", handler, data);
2835   GST_PAD_DO_EVENT_SIGNALS (pad)++;
2836   GST_DEBUG ("adding event probe to pad %s:%s, now %d probes",
2837       GST_DEBUG_PAD_NAME (pad), GST_PAD_DO_EVENT_SIGNALS (pad));
2838   GST_OBJECT_UNLOCK (pad);
2839
2840   return sigid;
2841 }
2842
2843 /**
2844  * gst_pad_add_buffer_probe:
2845  * @pad: pad to add the buffer probe handler to
2846  * @handler: function to call when data is passed over pad
2847  * @data: data to pass along with the handler
2848  *
2849  * Adds a probe that will be called for all buffers passing through a pad. See
2850  * gst_pad_add_data_probe() for more information.
2851  *
2852  * Returns: The handler id
2853  */
2854 gulong
2855 gst_pad_add_buffer_probe (GstPad * pad, GCallback handler, gpointer data)
2856 {
2857   gulong sigid;
2858
2859   g_return_val_if_fail (GST_IS_PAD (pad), 0);
2860   g_return_val_if_fail (handler != NULL, 0);
2861
2862   GST_OBJECT_LOCK (pad);
2863   sigid = g_signal_connect (pad, "have-data::buffer", handler, data);
2864   GST_PAD_DO_BUFFER_SIGNALS (pad)++;
2865   GST_DEBUG ("adding buffer probe to pad %s:%s, now %d probes",
2866       GST_DEBUG_PAD_NAME (pad), GST_PAD_DO_BUFFER_SIGNALS (pad));
2867   GST_OBJECT_UNLOCK (pad);
2868
2869   return sigid;
2870 }
2871
2872 /**
2873  * gst_pad_remove_data_probe:
2874  * @pad: pad to remove the data probe handler from
2875  * @handler_id: handler id returned from gst_pad_add_data_probe
2876  *
2877  * Removes a data probe from @pad.
2878  */
2879 void
2880 gst_pad_remove_data_probe (GstPad * pad, guint handler_id)
2881 {
2882   g_return_if_fail (GST_IS_PAD (pad));
2883   g_return_if_fail (handler_id > 0);
2884
2885   GST_OBJECT_LOCK (pad);
2886   g_signal_handler_disconnect (pad, handler_id);
2887   GST_PAD_DO_BUFFER_SIGNALS (pad)--;
2888   GST_PAD_DO_EVENT_SIGNALS (pad)--;
2889   GST_DEBUG
2890       ("removed data probe from pad %s:%s, now %d event, %d buffer probes",
2891       GST_DEBUG_PAD_NAME (pad), GST_PAD_DO_EVENT_SIGNALS (pad),
2892       GST_PAD_DO_BUFFER_SIGNALS (pad));
2893   GST_OBJECT_UNLOCK (pad);
2894
2895 }
2896
2897 /**
2898  * gst_pad_remove_event_probe:
2899  * @pad: pad to remove the event probe handler from
2900  * @handler_id: handler id returned from gst_pad_add_event_probe
2901  *
2902  * Removes an event probe from @pad.
2903  */
2904 void
2905 gst_pad_remove_event_probe (GstPad * pad, guint handler_id)
2906 {
2907   g_return_if_fail (GST_IS_PAD (pad));
2908   g_return_if_fail (handler_id > 0);
2909
2910   GST_OBJECT_LOCK (pad);
2911   g_signal_handler_disconnect (pad, handler_id);
2912   GST_PAD_DO_EVENT_SIGNALS (pad)--;
2913   GST_DEBUG ("removed event probe from pad %s:%s, now %d event probes",
2914       GST_DEBUG_PAD_NAME (pad), GST_PAD_DO_EVENT_SIGNALS (pad));
2915   GST_OBJECT_UNLOCK (pad);
2916 }
2917
2918 /**
2919  * gst_pad_remove_buffer_probe:
2920  * @pad: pad to remove the buffer probe handler from
2921  * @handler_id: handler id returned from gst_pad_add_buffer_probe
2922  *
2923  * Removes a buffer probe from @pad.
2924  */
2925 void
2926 gst_pad_remove_buffer_probe (GstPad * pad, guint handler_id)
2927 {
2928   g_return_if_fail (GST_IS_PAD (pad));
2929   g_return_if_fail (handler_id > 0);
2930
2931   GST_OBJECT_LOCK (pad);
2932   g_signal_handler_disconnect (pad, handler_id);
2933   GST_PAD_DO_BUFFER_SIGNALS (pad)--;
2934   GST_DEBUG ("removed buffer probe from pad %s:%s, now %d buffer probes",
2935       GST_DEBUG_PAD_NAME (pad), GST_PAD_DO_BUFFER_SIGNALS (pad));
2936   GST_OBJECT_UNLOCK (pad);
2937
2938 }
2939
2940 /**
2941  * gst_element_found_tags_for_pad:
2942  * @element: element for which to post taglist to bus.
2943  * @pad: pad on which to push tag-event.
2944  * @list: the taglist to post on the bus and create event from.
2945  *
2946  * Posts a message to the bus that new tags were found and pushes the
2947  * tags as event. Takes ownership of the @list.
2948  *
2949  * This is a utility method for elements. Applications should use the
2950  * #GstTagSetter interface.
2951  */
2952 void
2953 gst_element_found_tags_for_pad (GstElement * element,
2954     GstPad * pad, GstTagList * list)
2955 {
2956   g_return_if_fail (element != NULL);
2957   g_return_if_fail (pad != NULL);
2958   g_return_if_fail (list != NULL);
2959
2960   gst_pad_push_event (pad, gst_event_new_tag (gst_tag_list_copy (list)));
2961   gst_element_post_message (element,
2962       gst_message_new_tag (GST_OBJECT (element), list));
2963 }
2964
2965 static void
2966 push_and_ref (GstPad * pad, GstEvent * event)
2967 {
2968   gst_pad_push_event (pad, gst_event_ref (event));
2969   /* iterator refs pad, we unref when we are done with it */
2970   gst_object_unref (pad);
2971 }
2972
2973 /**
2974  * gst_element_found_tags:
2975  * @element: element for which we found the tags.
2976  * @list: list of tags.
2977  *
2978  * Posts a message to the bus that new tags were found, and pushes an event
2979  * to all sourcepads. Takes ownership of the @list.
2980  *
2981  * This is a utility method for elements. Applications should use the
2982  * #GstTagSetter interface.
2983  */
2984 void
2985 gst_element_found_tags (GstElement * element, GstTagList * list)
2986 {
2987   GstIterator *iter;
2988   GstEvent *event;
2989
2990   g_return_if_fail (element != NULL);
2991   g_return_if_fail (list != NULL);
2992
2993   iter = gst_element_iterate_src_pads (element);
2994   event = gst_event_new_tag (gst_tag_list_copy (list));
2995   gst_iterator_foreach (iter, (GFunc) push_and_ref, event);
2996   gst_iterator_free (iter);
2997   gst_event_unref (event);
2998
2999   gst_element_post_message (element,
3000       gst_message_new_tag (GST_OBJECT (element), list));
3001 }
3002
3003 static GstPad *
3004 element_find_unconnected_pad (GstElement * element, GstPadDirection direction)
3005 {
3006   GstIterator *iter;
3007   GstPad *unconnected_pad = NULL;
3008   gboolean done;
3009
3010   switch (direction) {
3011     case GST_PAD_SRC:
3012       iter = gst_element_iterate_src_pads (element);
3013       break;
3014     case GST_PAD_SINK:
3015       iter = gst_element_iterate_sink_pads (element);
3016       break;
3017     default:
3018       g_assert_not_reached ();
3019   }
3020
3021   done = FALSE;
3022   while (!done) {
3023     gpointer pad;
3024
3025     switch (gst_iterator_next (iter, &pad)) {
3026       case GST_ITERATOR_OK:{
3027         GstPad *peer;
3028
3029         GST_CAT_LOG (GST_CAT_ELEMENT_PADS, "examining pad %s:%s",
3030             GST_DEBUG_PAD_NAME (pad));
3031
3032         peer = gst_pad_get_peer (GST_PAD (pad));
3033         if (peer == NULL) {
3034           unconnected_pad = pad;
3035           done = TRUE;
3036           GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
3037               "found existing unlinked pad %s:%s",
3038               GST_DEBUG_PAD_NAME (unconnected_pad));
3039         } else {
3040           gst_object_unref (pad);
3041           gst_object_unref (peer);
3042         }
3043         break;
3044       }
3045       case GST_ITERATOR_DONE:
3046         done = TRUE;
3047         break;
3048       case GST_ITERATOR_RESYNC:
3049         gst_iterator_resync (iter);
3050         break;
3051       case GST_ITERATOR_ERROR:
3052         g_return_val_if_reached (NULL);
3053         break;
3054     }
3055   }
3056
3057   gst_iterator_free (iter);
3058
3059   return unconnected_pad;
3060 }
3061
3062 /**
3063  * gst_bin_find_unconnected_pad:
3064  * @bin: bin in which to look for elements with unconnected pads
3065  * @direction: whether to look for an unconnected source or sink pad
3066  *
3067  * Recursively looks for elements with an unconnected pad of the given
3068  * direction within the specified bin and returns an unconnected pad
3069  * if one is found, or NULL otherwise. If a pad is found, the caller
3070  * owns a reference to it and should use gst_object_unref() on the
3071  * pad when it is not needed any longer.
3072  *
3073  * Returns: unconnected pad of the given direction, or NULL.
3074  *
3075  * Since: 0.10.3
3076  */
3077 GstPad *
3078 gst_bin_find_unconnected_pad (GstBin * bin, GstPadDirection direction)
3079 {
3080   GstIterator *iter;
3081   gboolean done;
3082   GstPad *pad = NULL;
3083
3084   g_return_val_if_fail (GST_IS_BIN (bin), NULL);
3085   g_return_val_if_fail (direction != GST_PAD_UNKNOWN, NULL);
3086
3087   done = FALSE;
3088   iter = gst_bin_iterate_recurse (bin);
3089   while (!done) {
3090     gpointer element;
3091
3092     switch (gst_iterator_next (iter, &element)) {
3093       case GST_ITERATOR_OK:
3094         pad = element_find_unconnected_pad (GST_ELEMENT (element), direction);
3095         gst_object_unref (element);
3096         if (pad != NULL)
3097           done = TRUE;
3098         break;
3099       case GST_ITERATOR_DONE:
3100         done = TRUE;
3101         break;
3102       case GST_ITERATOR_RESYNC:
3103         gst_iterator_resync (iter);
3104         break;
3105       case GST_ITERATOR_ERROR:
3106         g_return_val_if_reached (NULL);
3107         break;
3108     }
3109   }
3110
3111   gst_iterator_free (iter);
3112
3113   return pad;
3114 }
3115
3116 #ifndef GST_DISABLE_PARSE
3117 /**
3118  * gst_parse_bin_from_description:
3119  * @bin_description: command line describing the bin
3120  * @ghost_unconnected_pads: whether to automatically create ghost pads
3121  *                          for unconnected source or sink pads within
3122  *                          the bin
3123  * @err: where to store the error message in case of an error, or NULL
3124  *
3125  * This is a convenience wrapper around gst_parse_launch() to create a
3126  * #GstBin from a gst-launch-style pipeline description. See
3127  * gst_parse_launch() and the gst-launch man page for details about the
3128  * syntax. Ghost pads on the bin for unconnected source or sink pads
3129  * within the bin can automatically be created (but only a maximum of
3130  * one ghost pad for each direction will be created; if you expect
3131  * multiple unconnected source pads or multiple unconnected sink pads
3132  * and want them all ghosted, you will have to create the ghost pads
3133  * yourself).
3134  *
3135  * Returns: a newly-created bin, or NULL if an error occurred.
3136  *
3137  * Since: 0.10.3
3138  */
3139 GstElement *
3140 gst_parse_bin_from_description (const gchar * bin_description,
3141     gboolean ghost_unconnected_pads, GError ** err)
3142 {
3143   GstPad *pad = NULL;
3144   GstBin *bin;
3145   gchar *desc;
3146
3147   g_return_val_if_fail (bin_description != NULL, NULL);
3148   g_return_val_if_fail (err == NULL || *err == NULL, NULL);
3149
3150   GST_DEBUG ("Making bin from description '%s'", bin_description);
3151
3152   /* parse the pipeline to a bin */
3153   desc = g_strdup_printf ("bin.( %s )", bin_description);
3154   bin = (GstBin *) gst_parse_launch (desc, err);
3155   g_free (desc);
3156
3157   if (bin == NULL || (err && *err != NULL)) {
3158     if (bin)
3159       gst_object_unref (bin);
3160     return NULL;
3161   }
3162
3163   /* find pads and ghost them if necessary */
3164   if (ghost_unconnected_pads) {
3165     if ((pad = gst_bin_find_unconnected_pad (bin, GST_PAD_SRC))) {
3166       gst_element_add_pad (GST_ELEMENT (bin), gst_ghost_pad_new ("src", pad));
3167       gst_object_unref (pad);
3168     }
3169     if ((pad = gst_bin_find_unconnected_pad (bin, GST_PAD_SINK))) {
3170       gst_element_add_pad (GST_ELEMENT (bin), gst_ghost_pad_new ("sink", pad));
3171       gst_object_unref (pad);
3172     }
3173   }
3174
3175   return GST_ELEMENT (bin);
3176 }
3177 #endif