gst: use #if GLIB_CHECK_VERSION instead of #ifndef GLIBMACRO
[platform/upstream/gstreamer.git] / gst / gstcaps.c
1 /* GStreamer
2  * Copyright (C) <2003> David A. Schleef <ds@schleef.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /**
21  * SECTION:gstcaps
22  * @short_description: Structure describing sets of media formats
23  * @see_also: #GstStructure
24  *
25  * Caps (capabilities) are lighweight refcounted objects describing media types.
26  * They are composed of an array of #GstStructure.
27  *
28  * Caps are exposed on #GstPadTemplate to describe all possible types a
29  * given pad can handle. They are also stored in the #GstRegistry along with
30  * a description of the #GstElement.
31  *
32  * Caps are exposed on the element pads using the gst_pad_get_caps() pad
33  * function. This function describes the possible types that the pad can
34  * handle or produce at runtime.
35  *
36  * Caps are also attached to buffers to describe to content of the data
37  * pointed to by the buffer with gst_buffer_set_caps(). Caps attached to
38  * a #GstBuffer allow for format negotiation upstream and downstream.
39  *
40  * A #GstCaps can be constructed with the following code fragment:
41  *
42  * <example>
43  *  <title>Creating caps</title>
44  *  <programlisting>
45  *  GstCaps *caps;
46  *  caps = gst_caps_new_simple ("video/x-raw-yuv",
47  *       "format", GST_TYPE_FOURCC, GST_MAKE_FOURCC ('I', '4', '2', '0'),
48  *       "framerate", GST_TYPE_FRACTION, 25, 1,
49  *       "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
50  *       "width", G_TYPE_INT, 320,
51  *       "height", G_TYPE_INT, 240,
52  *       NULL);
53  *  </programlisting>
54  * </example>
55  *
56  * A #GstCaps is fixed when it has no properties with ranges or lists. Use
57  * gst_caps_is_fixed() to test for fixed caps. Only fixed caps can be
58  * set on a #GstPad or #GstBuffer.
59  *
60  * Various methods exist to work with the media types such as subtracting
61  * or intersecting.
62  *
63  * Last reviewed on 2007-02-13 (0.10.10)
64  */
65
66 #ifdef HAVE_CONFIG_H
67 #include "config.h"
68 #endif
69 #include <string.h>
70 #include <signal.h>
71
72 #include "gst_private.h"
73 #include <gst/gst.h>
74 #include <gobject/gvaluecollector.h>
75
76 #define DEBUG_REFCOUNT
77
78 #define CAPS_POISON(caps) G_STMT_START{ \
79   if (caps) { \
80     GstCaps *_newcaps = gst_caps_copy (caps); \
81     gst_caps_unref(caps); \
82     caps = _newcaps; \
83   } \
84 } G_STMT_END
85 #define STRUCTURE_POISON(structure) G_STMT_START{ \
86   if (structure) { \
87     GstStructure *_newstruct = gst_structure_copy (structure); \
88     gst_structure_free(structure); \
89     structure = _newstruct; \
90   } \
91 } G_STMT_END
92 #define IS_WRITABLE(caps) \
93   (g_atomic_int_get (&(caps)->refcount) == 1)
94
95 /* same as gst_caps_is_any () */
96 #define CAPS_IS_ANY(caps)                               \
97   ((caps)->flags & GST_CAPS_FLAGS_ANY)
98
99 /* same as gst_caps_is_empty () */
100 #define CAPS_IS_EMPTY(caps)                             \
101   (!CAPS_IS_ANY(caps) && CAPS_IS_EMPTY_SIMPLE(caps))
102
103 #define CAPS_IS_EMPTY_SIMPLE(caps)                                      \
104   (((caps)->structs == NULL) || ((caps)->structs->len == 0))
105
106 /* quick way to get a caps structure at an index without doing a type or array
107  * length check */
108 #define gst_caps_get_structure_unchecked(caps, index) \
109      ((GstStructure *)g_ptr_array_index ((caps)->structs, (index)))
110
111
112 /* lock to protect multiple invocations of static caps to caps conversion */
113 G_LOCK_DEFINE_STATIC (static_caps_lock);
114
115 static void gst_caps_transform_to_string (const GValue * src_value,
116     GValue * dest_value);
117 static gboolean gst_caps_from_string_inplace (GstCaps * caps,
118     const gchar * string);
119 static GstCaps *gst_caps_copy_conditional (GstCaps * src);
120
121 GType
122 gst_caps_get_type (void)
123 {
124   static GType gst_caps_type = 0;
125
126   if (G_UNLIKELY (gst_caps_type == 0)) {
127     gst_caps_type = g_boxed_type_register_static ("GstCaps",
128         (GBoxedCopyFunc) gst_caps_copy_conditional,
129         (GBoxedFreeFunc) gst_caps_unref);
130
131     g_value_register_transform_func (gst_caps_type,
132         G_TYPE_STRING, gst_caps_transform_to_string);
133   }
134
135   return gst_caps_type;
136 }
137
138 /* creation/deletion */
139
140 /**
141  * gst_caps_new_empty:
142  *
143  * Creates a new #GstCaps that is empty.  That is, the returned
144  * #GstCaps contains no media formats.
145  * Caller is responsible for unreffing the returned caps.
146  *
147  * Returns: the new #GstCaps
148  */
149 GstCaps *
150 gst_caps_new_empty (void)
151 {
152   GstCaps *caps = g_slice_new (GstCaps);
153
154   caps->type = GST_TYPE_CAPS;
155   caps->refcount = 1;
156   caps->flags = 0;
157   caps->structs = g_ptr_array_new ();
158   /* the 32 has been determined by logging caps sizes in _gst_caps_free
159    * but g_ptr_array uses 16 anyway if it expands once, so this does not help
160    * in practise
161    * caps->structs = g_ptr_array_sized_new (32);
162    */
163
164 #ifdef DEBUG_REFCOUNT
165   GST_CAT_LOG (GST_CAT_CAPS, "created caps %p", caps);
166 #endif
167
168   return caps;
169 }
170
171 /**
172  * gst_caps_new_any:
173  *
174  * Creates a new #GstCaps that indicates that it is compatible with
175  * any media format.
176  *
177  * Returns: the new #GstCaps
178  */
179 GstCaps *
180 gst_caps_new_any (void)
181 {
182   GstCaps *caps = gst_caps_new_empty ();
183
184   caps->flags = GST_CAPS_FLAGS_ANY;
185
186   return caps;
187 }
188
189 /**
190  * gst_caps_new_simple:
191  * @media_type: the media type of the structure
192  * @fieldname: first field to set
193  * @...: additional arguments
194  *
195  * Creates a new #GstCaps that contains one #GstStructure.  The
196  * structure is defined by the arguments, which have the same format
197  * as gst_structure_new().
198  * Caller is responsible for unreffing the returned caps.
199  *
200  * Returns: the new #GstCaps
201  */
202 GstCaps *
203 gst_caps_new_simple (const char *media_type, const char *fieldname, ...)
204 {
205   GstCaps *caps;
206   GstStructure *structure;
207   va_list var_args;
208
209   caps = gst_caps_new_empty ();
210
211   va_start (var_args, fieldname);
212   structure = gst_structure_new_valist (media_type, fieldname, var_args);
213   va_end (var_args);
214
215   gst_caps_append_structure (caps, structure);
216
217   return caps;
218 }
219
220 /**
221  * gst_caps_new_full:
222  * @struct1: the first structure to add
223  * @...: additional structures to add
224  *
225  * Creates a new #GstCaps and adds all the structures listed as
226  * arguments.  The list must be NULL-terminated.  The structures
227  * are not copied; the returned #GstCaps owns the structures.
228  *
229  * Returns: the new #GstCaps
230  */
231 GstCaps *
232 gst_caps_new_full (GstStructure * struct1, ...)
233 {
234   GstCaps *caps;
235   va_list var_args;
236
237   va_start (var_args, struct1);
238   caps = gst_caps_new_full_valist (struct1, var_args);
239   va_end (var_args);
240
241   return caps;
242 }
243
244 /**
245  * gst_caps_new_full_valist:
246  * @structure: the first structure to add
247  * @var_args: additional structures to add
248  *
249  * Creates a new #GstCaps and adds all the structures listed as
250  * arguments.  The list must be NULL-terminated.  The structures
251  * are not copied; the returned #GstCaps owns the structures.
252  *
253  * Returns: the new #GstCaps
254  */
255 GstCaps *
256 gst_caps_new_full_valist (GstStructure * structure, va_list var_args)
257 {
258   GstCaps *caps;
259
260   caps = gst_caps_new_empty ();
261
262   while (structure) {
263     gst_caps_append_structure (caps, structure);
264     structure = va_arg (var_args, GstStructure *);
265   }
266
267   return caps;
268 }
269
270 /**
271  * gst_caps_copy:
272  * @caps: the #GstCaps to copy
273  *
274  * Creates a new #GstCaps as a copy of the old @caps. The new caps will have a
275  * refcount of 1, owned by the caller. The structures are copied as well.
276  *
277  * Note that this function is the semantic equivalent of a gst_caps_ref()
278  * followed by a gst_caps_make_writable(). If you only want to hold on to a
279  * reference to the data, you should use gst_caps_ref().
280  *
281  * When you are finished with the caps, call gst_caps_unref() on it.
282  *
283  * Returns: the new #GstCaps
284  */
285 GstCaps *
286 gst_caps_copy (const GstCaps * caps)
287 {
288   GstCaps *newcaps;
289   GstStructure *structure;
290   guint i, n;
291
292   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
293
294   newcaps = gst_caps_new_empty ();
295   newcaps->flags = caps->flags;
296   n = caps->structs->len;
297
298   for (i = 0; i < n; i++) {
299     structure = gst_caps_get_structure_unchecked (caps, i);
300     gst_caps_append_structure (newcaps, gst_structure_copy (structure));
301   }
302
303   return newcaps;
304 }
305
306 static void
307 _gst_caps_free (GstCaps * caps)
308 {
309   GstStructure *structure;
310   guint i, len;
311
312   /* The refcount must be 0, but since we're only called by gst_caps_unref,
313    * don't bother testing. */
314   len = caps->structs->len;
315   /* This can be used to get statistics about caps sizes */
316   /*GST_CAT_INFO (GST_CAT_CAPS, "caps size: %d", len); */
317   for (i = 0; i < len; i++) {
318     structure = (GstStructure *) gst_caps_get_structure_unchecked (caps, i);
319     gst_structure_set_parent_refcount (structure, NULL);
320     gst_structure_free (structure);
321   }
322   g_ptr_array_free (caps->structs, TRUE);
323 #ifdef USE_POISONING
324   memset (caps, 0xff, sizeof (GstCaps));
325 #endif
326
327 #ifdef DEBUG_REFCOUNT
328   GST_CAT_LOG (GST_CAT_CAPS, "freeing caps %p", caps);
329 #endif
330   g_slice_free (GstCaps, caps);
331 }
332
333 /**
334  * gst_caps_make_writable:
335  * @caps: the #GstCaps to make writable
336  *
337  * Returns a writable copy of @caps.
338  *
339  * If there is only one reference count on @caps, the caller must be the owner,
340  * and so this function will return the caps object unchanged. If on the other
341  * hand there is more than one reference on the object, a new caps object will
342  * be returned. The caller's reference on @caps will be removed, and instead the
343  * caller will own a reference to the returned object.
344  *
345  * In short, this function unrefs the caps in the argument and refs the caps
346  * that it returns. Don't access the argument after calling this function. See
347  * also: gst_caps_ref().
348  *
349  * Returns: the same #GstCaps object.
350  */
351 GstCaps *
352 gst_caps_make_writable (GstCaps * caps)
353 {
354   GstCaps *copy;
355
356   g_return_val_if_fail (caps != NULL, NULL);
357
358   /* we are the only instance reffing this caps */
359   if (g_atomic_int_get (&caps->refcount) == 1)
360     return caps;
361
362   /* else copy */
363   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy caps");
364   copy = gst_caps_copy (caps);
365   gst_caps_unref (caps);
366
367   return copy;
368 }
369
370 /**
371  * gst_caps_ref:
372  * @caps: the #GstCaps to reference
373  *
374  * Add a reference to a #GstCaps object.
375  *
376  * From this point on, until the caller calls gst_caps_unref() or
377  * gst_caps_make_writable(), it is guaranteed that the caps object will not
378  * change. This means its structures won't change, etc. To use a #GstCaps
379  * object, you must always have a refcount on it -- either the one made
380  * implicitly by e.g. gst_caps_new_simple(), or via taking one explicitly with
381  * this function.
382  *
383  * Returns: the same #GstCaps object.
384  */
385 GstCaps *
386 gst_caps_ref (GstCaps * caps)
387 {
388   g_return_val_if_fail (caps != NULL, NULL);
389
390 #ifdef DEBUG_REFCOUNT
391   GST_CAT_LOG (GST_CAT_REFCOUNTING, "%p %d->%d", caps,
392       GST_CAPS_REFCOUNT_VALUE (caps), GST_CAPS_REFCOUNT_VALUE (caps) + 1);
393 #endif
394   g_return_val_if_fail (GST_CAPS_REFCOUNT_VALUE (caps) > 0, NULL);
395
396   g_atomic_int_inc (&caps->refcount);
397
398   return caps;
399 }
400
401 /**
402  * gst_caps_unref:
403  * @caps: the #GstCaps to unref
404  *
405  * Unref a #GstCaps and and free all its structures and the
406  * structures' values when the refcount reaches 0.
407  */
408 void
409 gst_caps_unref (GstCaps * caps)
410 {
411   g_return_if_fail (caps != NULL);
412
413 #ifdef DEBUG_REFCOUNT
414   GST_CAT_LOG (GST_CAT_REFCOUNTING, "%p %d->%d", caps,
415       GST_CAPS_REFCOUNT_VALUE (caps), GST_CAPS_REFCOUNT_VALUE (caps) - 1);
416 #endif
417
418   g_return_if_fail (GST_CAPS_REFCOUNT_VALUE (caps) > 0);
419
420   /* if we ended up with the refcount at zero, free the caps */
421   if (G_UNLIKELY (g_atomic_int_dec_and_test (&caps->refcount)))
422     _gst_caps_free (caps);
423 }
424
425 GType
426 gst_static_caps_get_type (void)
427 {
428   static GType staticcaps_type = 0;
429
430   if (G_UNLIKELY (staticcaps_type == 0)) {
431     staticcaps_type = g_pointer_type_register_static ("GstStaticCaps");
432   }
433   return staticcaps_type;
434 }
435
436
437 /**
438  * gst_static_caps_get:
439  * @static_caps: the #GstStaticCaps to convert
440  *
441  * Converts a #GstStaticCaps to a #GstCaps.
442  *
443  * Returns: A pointer to the #GstCaps. Unref after usage. Since the
444  * core holds an additional ref to the returned caps,
445  * use gst_caps_make_writable() on the returned caps to modify it.
446  */
447 GstCaps *
448 gst_static_caps_get (GstStaticCaps * static_caps)
449 {
450   GstCaps *caps;
451
452   g_return_val_if_fail (static_caps != NULL, NULL);
453
454   caps = (GstCaps *) static_caps;
455
456   /* refcount is 0 when we need to convert */
457   if (G_UNLIKELY (g_atomic_int_get (&caps->refcount) == 0)) {
458     const char *string;
459     GstCaps temp;
460
461     G_LOCK (static_caps_lock);
462     /* check if other thread already updated */
463     if (G_UNLIKELY (g_atomic_int_get (&caps->refcount) > 0))
464       goto done;
465
466     string = static_caps->string;
467
468     if (G_UNLIKELY (string == NULL))
469       goto no_string;
470
471     GST_CAT_LOG (GST_CAT_CAPS, "creating %p", static_caps);
472
473     /* we construct the caps on the stack, then copy over the struct into our
474      * real caps, refcount last. We do this because we must leave the refcount
475      * of the result caps to 0 so that other threads don't run away with the
476      * caps while we are constructing it. */
477     temp.type = GST_TYPE_CAPS;
478     temp.flags = 0;
479     temp.structs = g_ptr_array_new ();
480
481     /* initialize the caps to a refcount of 1 so the caps can be writable for
482      * the next statement */
483     temp.refcount = 1;
484
485     /* convert to string */
486     if (G_UNLIKELY (!gst_caps_from_string_inplace (&temp, string)))
487       g_critical ("Could not convert static caps \"%s\"", string);
488
489     /* now copy stuff over to the real caps. */
490     caps->type = temp.type;
491     caps->flags = temp.flags;
492     caps->structs = temp.structs;
493     /* and bump the refcount so other threads can now read */
494     g_atomic_int_set (&caps->refcount, 1);
495
496     GST_CAT_LOG (GST_CAT_CAPS, "created %p", static_caps);
497   done:
498     G_UNLOCK (static_caps_lock);
499   }
500   /* ref the caps, makes it not writable */
501   gst_caps_ref (caps);
502
503   return caps;
504
505   /* ERRORS */
506 no_string:
507   {
508     G_UNLOCK (static_caps_lock);
509     g_warning ("static caps %p string is NULL", static_caps);
510     return NULL;
511   }
512 }
513
514 /* manipulation */
515 static GstStructure *
516 gst_caps_remove_and_get_structure (GstCaps * caps, guint idx)
517 {
518   /* don't use index_fast, gst_caps_do_simplify relies on the order */
519   GstStructure *s = g_ptr_array_remove_index (caps->structs, idx);
520
521   gst_structure_set_parent_refcount (s, NULL);
522   return s;
523 }
524
525 static gboolean
526 gst_structure_is_equal_foreach (GQuark field_id, const GValue * val2,
527     gpointer data)
528 {
529   GstStructure *struct1 = (GstStructure *) data;
530   const GValue *val1 = gst_structure_id_get_value (struct1, field_id);
531
532   if (G_UNLIKELY (val1 == NULL))
533     return FALSE;
534   if (gst_value_compare (val1, val2) == GST_VALUE_EQUAL) {
535     return TRUE;
536   }
537
538   return FALSE;
539 }
540
541 static gboolean
542 gst_caps_structure_is_subset_field (GQuark field_id, const GValue * value,
543     gpointer user_data)
544 {
545   GstStructure *subtract_from = user_data;
546   GValue subtraction = { 0, };
547   const GValue *other;
548
549   if (!(other = gst_structure_id_get_value (subtract_from, field_id)))
550     /* field is missing in one set */
551     return FALSE;
552
553   /* equal values are subset */
554   if (gst_value_compare (other, value) == GST_VALUE_EQUAL)
555     return TRUE;
556
557   /*
558    * 1 - [1,2] = empty
559    * -> !subset
560    *
561    * [1,2] - 1 = 2
562    *  -> 1 - [1,2] = empty
563    *  -> subset
564    *
565    * [1,3] - [1,2] = 3
566    * -> [1,2] - [1,3] = empty
567    * -> subset
568    *
569    * {1,2} - {1,3} = 2
570    * -> {1,3} - {1,2} = 3
571    * -> !subset
572    *
573    *  First caps subtraction needs to return a non-empty set, second
574    *  subtractions needs to give en empty set.
575    */
576   if (gst_value_subtract (&subtraction, other, value)) {
577     g_value_unset (&subtraction);
578     /* !empty result, swapping must be empty */
579     if (!gst_value_subtract (&subtraction, value, other))
580       return TRUE;
581
582     g_value_unset (&subtraction);
583   }
584   return FALSE;
585 }
586
587 static gboolean
588 gst_caps_structure_is_subset (const GstStructure * minuend,
589     const GstStructure * subtrahend)
590 {
591   if ((minuend->name != subtrahend->name) ||
592       (gst_structure_n_fields (minuend) !=
593           gst_structure_n_fields (subtrahend))) {
594     return FALSE;
595   }
596
597   return gst_structure_foreach ((GstStructure *) subtrahend,
598       gst_caps_structure_is_subset_field, (gpointer) minuend);
599 }
600
601 /**
602  * gst_caps_append:
603  * @caps1: the #GstCaps that will be appended to
604  * @caps2: the #GstCaps to append
605  *
606  * Appends the structures contained in @caps2 to @caps1. The structures in
607  * @caps2 are not copied -- they are transferred to @caps1, and then @caps2 is
608  * freed. If either caps is ANY, the resulting caps will be ANY.
609  */
610 void
611 gst_caps_append (GstCaps * caps1, GstCaps * caps2)
612 {
613   GstStructure *structure;
614   int i;
615
616   g_return_if_fail (GST_IS_CAPS (caps1));
617   g_return_if_fail (GST_IS_CAPS (caps2));
618   g_return_if_fail (IS_WRITABLE (caps1));
619   g_return_if_fail (IS_WRITABLE (caps2));
620
621 #ifdef USE_POISONING
622   CAPS_POISON (caps2);
623 #endif
624   if (G_UNLIKELY (CAPS_IS_ANY (caps1) || CAPS_IS_ANY (caps2))) {
625     /* FIXME: this leaks */
626     caps1->flags |= GST_CAPS_FLAGS_ANY;
627     for (i = caps2->structs->len - 1; i >= 0; i--) {
628       structure = gst_caps_remove_and_get_structure (caps2, i);
629       gst_structure_free (structure);
630     }
631   } else {
632     for (i = caps2->structs->len; i; i--) {
633       structure = gst_caps_remove_and_get_structure (caps2, 0);
634       gst_caps_append_structure (caps1, structure);
635     }
636   }
637   gst_caps_unref (caps2);       /* guaranteed to free it */
638 }
639
640 /**
641  * gst_caps_merge:
642  * @caps1: the #GstCaps that will take the new entries
643  * @caps2: the #GstCaps to merge in
644  *
645  * Appends the structures contained in @caps2 to @caps1 if they are not yet
646  * expressed by @caps1. The structures in @caps2 are not copied -- they are
647  * transferred to @caps1, and then @caps2 is freed.
648  * If either caps is ANY, the resulting caps will be ANY.
649  *
650  * Since: 0.10.10
651  */
652 void
653 gst_caps_merge (GstCaps * caps1, GstCaps * caps2)
654 {
655   GstStructure *structure;
656   int i;
657
658   g_return_if_fail (GST_IS_CAPS (caps1));
659   g_return_if_fail (GST_IS_CAPS (caps2));
660   g_return_if_fail (IS_WRITABLE (caps1));
661   g_return_if_fail (IS_WRITABLE (caps2));
662
663 #ifdef USE_POISONING
664   CAPS_POISON (caps2);
665 #endif
666   if (G_UNLIKELY (CAPS_IS_ANY (caps1))) {
667     for (i = caps2->structs->len - 1; i >= 0; i--) {
668       structure = gst_caps_remove_and_get_structure (caps2, i);
669       gst_structure_free (structure);
670     }
671   } else if (G_UNLIKELY (CAPS_IS_ANY (caps2))) {
672     caps1->flags |= GST_CAPS_FLAGS_ANY;
673     for (i = caps1->structs->len - 1; i >= 0; i--) {
674       structure = gst_caps_remove_and_get_structure (caps1, i);
675       gst_structure_free (structure);
676     }
677   } else {
678     for (i = caps2->structs->len; i; i--) {
679       structure = gst_caps_remove_and_get_structure (caps2, 0);
680       gst_caps_merge_structure (caps1, structure);
681     }
682     /* this is too naive
683        GstCaps *com = gst_caps_intersect (caps1, caps2);
684        GstCaps *add = gst_caps_subtract (caps2, com);
685
686        GST_DEBUG ("common : %d", gst_caps_get_size (com));
687        GST_DEBUG ("adding : %d", gst_caps_get_size (add));
688        gst_caps_append (caps1, add);
689        gst_caps_unref (com);
690      */
691   }
692   gst_caps_unref (caps2);       /* guaranteed to free it */
693 }
694
695 /**
696  * gst_caps_append_structure:
697  * @caps: the #GstCaps that will be appended to
698  * @structure: the #GstStructure to append
699  *
700  * Appends @structure to @caps.  The structure is not copied; @caps
701  * becomes the owner of @structure.
702  */
703 void
704 gst_caps_append_structure (GstCaps * caps, GstStructure * structure)
705 {
706   g_return_if_fail (GST_IS_CAPS (caps));
707   g_return_if_fail (IS_WRITABLE (caps));
708
709   if (G_LIKELY (structure)) {
710     g_return_if_fail (structure->parent_refcount == NULL);
711 #if 0
712 #ifdef USE_POISONING
713     STRUCTURE_POISON (structure);
714 #endif
715 #endif
716     gst_structure_set_parent_refcount (structure, &caps->refcount);
717     g_ptr_array_add (caps->structs, structure);
718   }
719 }
720
721 /**
722  * gst_caps_remove_structure:
723  * @caps: the #GstCaps to remove from
724  * @idx: Index of the structure to remove
725  *
726  * removes the stucture with the given index from the list of structures
727  * contained in @caps.
728  */
729 void
730 gst_caps_remove_structure (GstCaps * caps, guint idx)
731 {
732   GstStructure *structure;
733
734   g_return_if_fail (caps != NULL);
735   g_return_if_fail (idx <= gst_caps_get_size (caps));
736   g_return_if_fail (IS_WRITABLE (caps));
737
738   structure = gst_caps_remove_and_get_structure (caps, idx);
739   gst_structure_free (structure);
740 }
741
742 /**
743  * gst_caps_merge_structure:
744  * @caps: the #GstCaps that will the the new structure
745  * @structure: the #GstStructure to merge
746  *
747  * Appends @structure to @caps if its not already expressed by @caps.  The
748  * structure is not copied; @caps becomes the owner of @structure.
749  */
750 void
751 gst_caps_merge_structure (GstCaps * caps, GstStructure * structure)
752 {
753   g_return_if_fail (GST_IS_CAPS (caps));
754   g_return_if_fail (IS_WRITABLE (caps));
755
756   if (G_LIKELY (structure)) {
757     GstStructure *structure1;
758     int i;
759     gboolean unique = TRUE;
760
761     g_return_if_fail (structure->parent_refcount == NULL);
762 #if 0
763 #ifdef USE_POISONING
764     STRUCTURE_POISON (structure);
765 #endif
766 #endif
767     /* check each structure */
768     for (i = caps->structs->len - 1; i >= 0; i--) {
769       structure1 = gst_caps_get_structure_unchecked (caps, i);
770       /* if structure is a subset of structure1, then skip it */
771       if (gst_caps_structure_is_subset (structure1, structure)) {
772         unique = FALSE;
773         break;
774       }
775     }
776     if (unique) {
777       gst_structure_set_parent_refcount (structure, &caps->refcount);
778       g_ptr_array_add (caps->structs, structure);
779     } else {
780       gst_structure_free (structure);
781     }
782   }
783 }
784
785
786 /**
787  * gst_caps_get_size:
788  * @caps: a #GstCaps
789  *
790  * Gets the number of structures contained in @caps.
791  *
792  * Returns: the number of structures that @caps contains
793  */
794 guint
795 gst_caps_get_size (const GstCaps * caps)
796 {
797   g_return_val_if_fail (GST_IS_CAPS (caps), 0);
798
799   return caps->structs->len;
800 }
801
802 /**
803  * gst_caps_get_structure:
804  * @caps: a #GstCaps
805  * @index: the index of the structure
806  *
807  * Finds the structure in @caps that has the index @index, and
808  * returns it.
809  *
810  * WARNING: This function takes a const GstCaps *, but returns a
811  * non-const GstStructure *.  This is for programming convenience --
812  * the caller should be aware that structures inside a constant
813  * #GstCaps should not be modified. However, if you know the caps
814  * are writable, either because you have just copied them or made
815  * them writable with gst_caps_make_writable(), you may modify the
816  * structure returned in the usual way, e.g. with functions like
817  * gst_structure_set().
818  *
819  * You do not need to free or unref the structure returned, it
820  * belongs to the #GstCaps.
821  *
822  * Returns: a pointer to the #GstStructure corresponding to @index
823  */
824 GstStructure *
825 gst_caps_get_structure (const GstCaps * caps, guint index)
826 {
827   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
828   g_return_val_if_fail (index < caps->structs->len, NULL);
829
830   return gst_caps_get_structure_unchecked (caps, index);
831 }
832
833 /**
834  * gst_caps_copy_nth:
835  * @caps: the #GstCaps to copy
836  * @nth: the nth structure to copy
837  *
838  * Creates a new #GstCaps and appends a copy of the nth structure
839  * contained in @caps.
840  *
841  * Returns: the new #GstCaps
842  */
843 GstCaps *
844 gst_caps_copy_nth (const GstCaps * caps, guint nth)
845 {
846   GstCaps *newcaps;
847   GstStructure *structure;
848
849   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
850
851   newcaps = gst_caps_new_empty ();
852   newcaps->flags = caps->flags;
853
854   if (G_LIKELY (caps->structs->len > nth)) {
855     structure = gst_caps_get_structure_unchecked (caps, nth);
856     gst_caps_append_structure (newcaps, gst_structure_copy (structure));
857   }
858
859   return newcaps;
860 }
861
862 /**
863  * gst_caps_truncate:
864  * @caps: the #GstCaps to truncate
865  *
866  * Destructively discard all but the first structure from @caps. Useful when
867  * fixating. @caps must be writable.
868  */
869 void
870 gst_caps_truncate (GstCaps * caps)
871 {
872   gint i;
873
874   g_return_if_fail (GST_IS_CAPS (caps));
875   g_return_if_fail (IS_WRITABLE (caps));
876
877   i = caps->structs->len - 1;
878
879   while (i > 0)
880     gst_caps_remove_structure (caps, i--);
881 }
882
883 /**
884  * gst_caps_set_value:
885  * @caps: a writable caps
886  * @field: name of the field to set
887  * @value: value to set the field to
888  *
889  * Sets the given @field on all structures of @caps to the given @value.
890  * This is a convenience function for calling gst_structure_set_value() on
891  * all structures of @caps.
892  *
893  * Since: 0.10.26
894  **/
895 void
896 gst_caps_set_value (GstCaps * caps, const char *field, const GValue * value)
897 {
898   guint i, len;
899
900   g_return_if_fail (GST_IS_CAPS (caps));
901   g_return_if_fail (IS_WRITABLE (caps));
902   g_return_if_fail (field != NULL);
903   g_return_if_fail (G_IS_VALUE (value));
904
905   len = caps->structs->len;
906   for (i = 0; i < len; i++) {
907     GstStructure *structure = gst_caps_get_structure_unchecked (caps, i);
908     gst_structure_set_value (structure, field, value);
909   }
910 }
911
912 /**
913  * gst_caps_set_simple_valist:
914  * @caps: the #GstCaps to set
915  * @field: first field to set
916  * @varargs: additional parameters
917  *
918  * Sets fields in a #GstCaps.  The arguments must be passed in the same
919  * manner as gst_structure_set(), and be NULL-terminated.
920  * <note>Prior to GStreamer version 0.10.26, this function failed when
921  * @caps was not simple. If your code needs to work with those versions 
922  * of GStreamer, you may only call this function when GST_CAPS_IS_SIMPLE()
923  * is %TRUE for @caps.</note>
924  */
925 void
926 gst_caps_set_simple_valist (GstCaps * caps, const char *field, va_list varargs)
927 {
928   GValue value = { 0, };
929
930   g_return_if_fail (GST_IS_CAPS (caps));
931   g_return_if_fail (IS_WRITABLE (caps));
932
933   while (field) {
934     GType type;
935     char *err;
936
937     type = va_arg (varargs, GType);
938
939     if (G_UNLIKELY (type == G_TYPE_DATE)) {
940       g_warning ("Don't use G_TYPE_DATE, use GST_TYPE_DATE instead\n");
941       type = GST_TYPE_DATE;
942     }
943 #if GLIB_CHECK_VERSION(2,23,3)
944     G_VALUE_COLLECT_INIT (&value, type, varargs, 0, &err);
945 #else
946     g_value_init (&value, type);
947     G_VALUE_COLLECT (&value, varargs, 0, &err);
948 #endif
949     if (G_UNLIKELY (err)) {
950       g_critical ("%s", err);
951       return;
952     }
953
954     gst_caps_set_value (caps, field, &value);
955
956     g_value_unset (&value);
957
958     field = va_arg (varargs, const gchar *);
959   }
960 }
961
962 /**
963  * gst_caps_set_simple:
964  * @caps: the #GstCaps to set
965  * @field: first field to set
966  * @...: additional parameters
967  *
968  * Sets fields in a #GstCaps.  The arguments must be passed in the same
969  * manner as gst_structure_set(), and be NULL-terminated.
970  * <note>Prior to GStreamer version 0.10.26, this function failed when
971  * @caps was not simple. If your code needs to work with those versions
972  * of GStreamer, you may only call this function when GST_CAPS_IS_SIMPLE()
973  * is %TRUE for @caps.</note>
974  */
975 void
976 gst_caps_set_simple (GstCaps * caps, const char *field, ...)
977 {
978   va_list var_args;
979
980   g_return_if_fail (GST_IS_CAPS (caps));
981   g_return_if_fail (IS_WRITABLE (caps));
982
983   va_start (var_args, field);
984   gst_caps_set_simple_valist (caps, field, var_args);
985   va_end (var_args);
986 }
987
988 /* tests */
989
990 /**
991  * gst_caps_is_any:
992  * @caps: the #GstCaps to test
993  *
994  * Determines if @caps represents any media format.
995  *
996  * Returns: TRUE if @caps represents any format.
997  */
998 gboolean
999 gst_caps_is_any (const GstCaps * caps)
1000 {
1001   g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
1002
1003   return (caps->flags & GST_CAPS_FLAGS_ANY);
1004 }
1005
1006 /**
1007  * gst_caps_is_empty:
1008  * @caps: the #GstCaps to test
1009  *
1010  * Determines if @caps represents no media formats.
1011  *
1012  * Returns: TRUE if @caps represents no formats.
1013  */
1014 gboolean
1015 gst_caps_is_empty (const GstCaps * caps)
1016 {
1017   g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
1018
1019   if (caps->flags & GST_CAPS_FLAGS_ANY)
1020     return FALSE;
1021
1022   return (caps->structs == NULL) || (caps->structs->len == 0);
1023 }
1024
1025 static gboolean
1026 gst_caps_is_fixed_foreach (GQuark field_id, const GValue * value,
1027     gpointer unused)
1028 {
1029   return gst_value_is_fixed (value);
1030 }
1031
1032 /**
1033  * gst_caps_is_fixed:
1034  * @caps: the #GstCaps to test
1035  *
1036  * Fixed #GstCaps describe exactly one format, that is, they have exactly
1037  * one structure, and each field in the structure describes a fixed type.
1038  * Examples of non-fixed types are GST_TYPE_INT_RANGE and GST_TYPE_LIST.
1039  *
1040  * Returns: TRUE if @caps is fixed
1041  */
1042 gboolean
1043 gst_caps_is_fixed (const GstCaps * caps)
1044 {
1045   GstStructure *structure;
1046
1047   g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
1048
1049   if (caps->structs->len != 1)
1050     return FALSE;
1051
1052   structure = gst_caps_get_structure_unchecked (caps, 0);
1053
1054   return gst_structure_foreach (structure, gst_caps_is_fixed_foreach, NULL);
1055 }
1056
1057 /**
1058  * gst_caps_is_equal_fixed:
1059  * @caps1: the #GstCaps to test
1060  * @caps2: the #GstCaps to test
1061  *
1062  * Tests if two #GstCaps are equal.  This function only works on fixed
1063  * #GstCaps.
1064  *
1065  * Returns: TRUE if the arguments represent the same format
1066  */
1067 gboolean
1068 gst_caps_is_equal_fixed (const GstCaps * caps1, const GstCaps * caps2)
1069 {
1070   GstStructure *struct1, *struct2;
1071
1072   g_return_val_if_fail (gst_caps_is_fixed (caps1), FALSE);
1073   g_return_val_if_fail (gst_caps_is_fixed (caps2), FALSE);
1074
1075   struct1 = gst_caps_get_structure_unchecked (caps1, 0);
1076   struct2 = gst_caps_get_structure_unchecked (caps2, 0);
1077
1078   if (struct1->name != struct2->name) {
1079     return FALSE;
1080   }
1081   if (struct1->fields->len != struct2->fields->len) {
1082     return FALSE;
1083   }
1084
1085   return gst_structure_foreach (struct1, gst_structure_is_equal_foreach,
1086       struct2);
1087 }
1088
1089 /**
1090  * gst_caps_is_always_compatible:
1091  * @caps1: the #GstCaps to test
1092  * @caps2: the #GstCaps to test
1093  *
1094  * A given #GstCaps structure is always compatible with another if
1095  * every media format that is in the first is also contained in the
1096  * second.  That is, @caps1 is a subset of @caps2.
1097  *
1098  * Returns: TRUE if @caps1 is a subset of @caps2.
1099  */
1100 gboolean
1101 gst_caps_is_always_compatible (const GstCaps * caps1, const GstCaps * caps2)
1102 {
1103   g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
1104   g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
1105
1106   return gst_caps_is_subset (caps1, caps2);
1107 }
1108
1109 /**
1110  * gst_caps_is_subset:
1111  * @subset: a #GstCaps
1112  * @superset: a potentially greater #GstCaps
1113  *
1114  * Checks if all caps represented by @subset are also represented by @superset.
1115  * <note>This function does not work reliably if optional properties for caps
1116  * are included on one caps and omitted on the other.</note>
1117  *
1118  * Returns: %TRUE if @subset is a subset of @superset
1119  */
1120 gboolean
1121 gst_caps_is_subset (const GstCaps * subset, const GstCaps * superset)
1122 {
1123   GstCaps *caps;
1124   gboolean ret;
1125
1126   g_return_val_if_fail (subset != NULL, FALSE);
1127   g_return_val_if_fail (superset != NULL, FALSE);
1128
1129   if (CAPS_IS_EMPTY (subset) || CAPS_IS_ANY (superset))
1130     return TRUE;
1131   if (CAPS_IS_ANY (subset) || CAPS_IS_EMPTY (superset))
1132     return FALSE;
1133
1134   caps = gst_caps_subtract (subset, superset);
1135   ret = CAPS_IS_EMPTY_SIMPLE (caps);
1136   gst_caps_unref (caps);
1137   return ret;
1138 }
1139
1140 /**
1141  * gst_caps_is_equal:
1142  * @caps1: a #GstCaps
1143  * @caps2: another #GstCaps
1144  *
1145  * Checks if the given caps represent the same set of caps.
1146  * <note>This function does not work reliably if optional properties for caps
1147  * are included on one caps and omitted on the other.</note>
1148  *
1149  * This function deals correctly with passing NULL for any of the caps.
1150  *
1151  * Returns: TRUE if both caps are equal.
1152  */
1153 gboolean
1154 gst_caps_is_equal (const GstCaps * caps1, const GstCaps * caps2)
1155 {
1156   /* FIXME 0.11: NULL pointers are no valid Caps but indicate an error
1157    * So there should be an assertion that caps1 and caps2 != NULL */
1158
1159   /* NULL <-> NULL is allowed here */
1160   if (G_UNLIKELY (caps1 == caps2))
1161     return TRUE;
1162
1163   /* one of them NULL => they are different (can't be both NULL because
1164    * we checked that above) */
1165   if (G_UNLIKELY (caps1 == NULL || caps2 == NULL))
1166     return FALSE;
1167
1168   if (G_UNLIKELY (gst_caps_is_fixed (caps1) && gst_caps_is_fixed (caps2)))
1169     return gst_caps_is_equal_fixed (caps1, caps2);
1170
1171   return gst_caps_is_subset (caps1, caps2) && gst_caps_is_subset (caps2, caps1);
1172 }
1173
1174 typedef struct
1175 {
1176   GstStructure *dest;
1177   const GstStructure *intersect;
1178 }
1179 IntersectData;
1180
1181 static gboolean
1182 gst_caps_structure_intersect_field1 (GQuark id, const GValue * val1,
1183     gpointer data)
1184 {
1185   IntersectData *idata = (IntersectData *) data;
1186   const GValue *val2 = gst_structure_id_get_value (idata->intersect, id);
1187
1188   if (G_UNLIKELY (val2 == NULL)) {
1189     gst_structure_id_set_value (idata->dest, id, val1);
1190   } else {
1191     GValue dest_value = { 0 };
1192     if (gst_value_intersect (&dest_value, val1, val2)) {
1193       gst_structure_id_set_value (idata->dest, id, &dest_value);
1194       g_value_unset (&dest_value);
1195     } else {
1196       return FALSE;
1197     }
1198   }
1199   return TRUE;
1200 }
1201
1202 static gboolean
1203 gst_caps_structure_intersect_field2 (GQuark id, const GValue * val1,
1204     gpointer data)
1205 {
1206   IntersectData *idata = (IntersectData *) data;
1207   const GValue *val2 = gst_structure_id_get_value (idata->intersect, id);
1208
1209   if (G_UNLIKELY (val2 == NULL)) {
1210     gst_structure_id_set_value (idata->dest, id, val1);
1211   }
1212   return TRUE;
1213 }
1214
1215 static GstStructure *
1216 gst_caps_structure_intersect (const GstStructure * struct1,
1217     const GstStructure * struct2)
1218 {
1219   IntersectData data;
1220
1221   g_assert (struct1 != NULL);
1222   g_assert (struct2 != NULL);
1223
1224   if (G_UNLIKELY (struct1->name != struct2->name))
1225     return NULL;
1226
1227   /* copy fields from struct1 which we have not in struct2 to target
1228    * intersect if we have the field in both */
1229   data.dest = gst_structure_id_empty_new (struct1->name);
1230   data.intersect = struct2;
1231   if (G_UNLIKELY (!gst_structure_foreach ((GstStructure *) struct1,
1232               gst_caps_structure_intersect_field1, &data)))
1233     goto error;
1234
1235   /* copy fields from struct2 which we have not in struct1 to target */
1236   data.intersect = struct1;
1237   if (G_UNLIKELY (!gst_structure_foreach ((GstStructure *) struct2,
1238               gst_caps_structure_intersect_field2, &data)))
1239     goto error;
1240
1241   return data.dest;
1242
1243 error:
1244   gst_structure_free (data.dest);
1245   return NULL;
1246 }
1247
1248 static gboolean
1249 gst_caps_structure_can_intersect_field (GQuark id, const GValue * val1,
1250     gpointer data)
1251 {
1252   GstStructure *other = (GstStructure *) data;
1253   const GValue *val2 = gst_structure_id_get_value (other, id);
1254
1255   if (G_LIKELY (val2)) {
1256     if (!gst_value_can_intersect (val1, val2)) {
1257       return FALSE;
1258     } else {
1259       gint eq = gst_value_compare (val1, val2);
1260
1261       if (eq == GST_VALUE_UNORDERED) {
1262         /* we need to try interseting */
1263         GValue dest_value = { 0 };
1264         if (gst_value_intersect (&dest_value, val1, val2)) {
1265           g_value_unset (&dest_value);
1266         } else {
1267           return FALSE;
1268         }
1269       } else if (eq != GST_VALUE_EQUAL) {
1270         return FALSE;
1271       }
1272     }
1273   }
1274   return TRUE;
1275 }
1276
1277 static gboolean
1278 gst_caps_structure_can_intersect (const GstStructure * struct1,
1279     const GstStructure * struct2)
1280 {
1281   g_assert (struct1 != NULL);
1282   g_assert (struct2 != NULL);
1283
1284   if (G_UNLIKELY (struct1->name != struct2->name))
1285     return FALSE;
1286
1287   /* tries to intersect if we have the field in both */
1288   if (G_UNLIKELY (!gst_structure_foreach ((GstStructure *) struct1,
1289               gst_caps_structure_can_intersect_field, (gpointer) struct2)))
1290     return FALSE;
1291
1292   return TRUE;
1293 }
1294
1295 /**
1296  * gst_caps_can_intersect:
1297  * @caps1: a #GstCaps to intersect
1298  * @caps2: a #GstCaps to intersect
1299  *
1300  * Tries intersecting @caps1 and @caps2 and reports wheter the result would not
1301  * be empty
1302  *
1303  * Returns: %TRUE if intersection would be not empty
1304  *
1305  * Since: 0.10.25
1306  */
1307 gboolean
1308 gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
1309 {
1310   guint64 i;                    /* index can be up to 2 * G_MAX_UINT */
1311   guint j, k, len1, len2;
1312   GstStructure *struct1;
1313   GstStructure *struct2;
1314
1315   g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
1316   g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
1317
1318   /* caps are exactly the same pointers */
1319   if (G_UNLIKELY (caps1 == caps2))
1320     return TRUE;
1321
1322   /* empty caps on either side, return empty */
1323   if (G_UNLIKELY (CAPS_IS_EMPTY (caps1) || CAPS_IS_EMPTY (caps2)))
1324     return FALSE;
1325
1326   /* one of the caps is any */
1327   if (G_UNLIKELY (CAPS_IS_ANY (caps1) || CAPS_IS_ANY (caps2)))
1328     return TRUE;
1329
1330   /* run zigzag on top line then right line, this preserves the caps order
1331    * much better than a simple loop.
1332    *
1333    * This algorithm zigzags over the caps structures as demonstrated in
1334    * the folowing matrix:
1335    *
1336    *          caps1
1337    *       +-------------
1338    *       | 1  2  4  7
1339    * caps2 | 3  5  8 10
1340    *       | 6  9 11 12
1341    *
1342    * First we iterate over the caps1 structures (top line) intersecting
1343    * the structures diagonally down, then we iterate over the caps2
1344    * structures.
1345    */
1346   len1 = caps1->structs->len;
1347   len2 = caps2->structs->len;
1348   for (i = 0; i < len1 + len2 - 1; i++) {
1349     /* superset index goes from 0 to sgst_caps_structure_intersectuperset->structs->len-1 */
1350     j = MIN (i, len1 - 1);
1351     /* subset index stays 0 until i reaches superset->structs->len, then it
1352      * counts up from 1 to subset->structs->len - 1 */
1353     k = MAX (0, i - j);
1354
1355     /* now run the diagonal line, end condition is the left or bottom
1356      * border */
1357     while (k < len2) {
1358       struct1 = gst_caps_get_structure_unchecked (caps1, j);
1359       struct2 = gst_caps_get_structure_unchecked (caps2, k);
1360
1361       if (gst_caps_structure_can_intersect (struct1, struct2)) {
1362         return TRUE;
1363       }
1364       /* move down left */
1365       k++;
1366       if (G_UNLIKELY (j == 0))
1367         break;                  /* so we don't roll back to G_MAXUINT */
1368       j--;
1369     }
1370   }
1371   return FALSE;
1372 }
1373
1374 #if 0
1375 static GstStructure *
1376 gst_caps_structure_union (const GstStructure * struct1,
1377     const GstStructure * struct2)
1378 {
1379   int i;
1380   GstStructure *dest;
1381   const GstStructureField *field1;
1382   const GstStructureField *field2;
1383   int ret;
1384
1385   /* FIXME this doesn't actually work */
1386
1387   if (struct1->name != struct2->name)
1388     return NULL;
1389
1390   dest = gst_structure_id_empty_new (struct1->name);
1391
1392   for (i = 0; i < struct1->fields->len; i++) {
1393     GValue dest_value = { 0 };
1394
1395     field1 = GST_STRUCTURE_FIELD (struct1, i);
1396     field2 = gst_structure_id_get_field (struct2, field1->name);
1397
1398     if (field2 == NULL) {
1399       continue;
1400     } else {
1401       if (gst_value_union (&dest_value, &field1->value, &field2->value)) {
1402         gst_structure_set_value (dest, g_quark_to_string (field1->name),
1403             &dest_value);
1404       } else {
1405         ret = gst_value_compare (&field1->value, &field2->value);
1406       }
1407     }
1408   }
1409
1410   return dest;
1411 }
1412 #endif
1413
1414 /* operations */
1415
1416 /**
1417  * gst_caps_intersect:
1418  * @caps1: a #GstCaps to intersect
1419  * @caps2: a #GstCaps to intersect
1420  *
1421  * Creates a new #GstCaps that contains all the formats that are common
1422  * to both @caps1 and @caps2.
1423  *
1424  * Returns: the new #GstCaps
1425  */
1426 GstCaps *
1427 gst_caps_intersect (const GstCaps * caps1, const GstCaps * caps2)
1428 {
1429   guint64 i;                    /* index can be up to 2 * G_MAX_UINT */
1430   guint j, k, len1, len2;
1431
1432   GstStructure *struct1;
1433   GstStructure *struct2;
1434   GstCaps *dest;
1435   GstStructure *istruct;
1436
1437   g_return_val_if_fail (GST_IS_CAPS (caps1), NULL);
1438   g_return_val_if_fail (GST_IS_CAPS (caps2), NULL);
1439
1440   /* caps are exactly the same pointers, just copy one caps */
1441   if (G_UNLIKELY (caps1 == caps2))
1442     return gst_caps_copy (caps1);
1443
1444   /* empty caps on either side, return empty */
1445   if (G_UNLIKELY (CAPS_IS_EMPTY (caps1) || CAPS_IS_EMPTY (caps2)))
1446     return gst_caps_new_empty ();
1447
1448   /* one of the caps is any, just copy the other caps */
1449   if (G_UNLIKELY (CAPS_IS_ANY (caps1)))
1450     return gst_caps_copy (caps2);
1451   if (G_UNLIKELY (CAPS_IS_ANY (caps2)))
1452     return gst_caps_copy (caps1);
1453
1454   dest = gst_caps_new_empty ();
1455
1456   /* run zigzag on top line then right line, this preserves the caps order
1457    * much better than a simple loop.
1458    *
1459    * This algorithm zigzags over the caps structures as demonstrated in
1460    * the folowing matrix:
1461    *
1462    *          caps1
1463    *       +-------------
1464    *       | 1  2  4  7
1465    * caps2 | 3  5  8 10
1466    *       | 6  9 11 12
1467    *
1468    * First we iterate over the caps1 structures (top line) intersecting
1469    * the structures diagonally down, then we iterate over the caps2
1470    * structures.
1471    */
1472   len1 = caps1->structs->len;
1473   len2 = caps2->structs->len;
1474   for (i = 0; i < len1 + len2 - 1; i++) {
1475     /* caps1 index goes from 0 to caps1->structs->len-1 */
1476     j = MIN (i, len1 - 1);
1477     /* caps2 index stays 0 until i reaches caps1->structs->len, then it counts
1478      * up from 1 to caps2->structs->len - 1 */
1479     k = MAX (0, i - j);
1480
1481     /* now run the diagonal line, end condition is the left or bottom
1482      * border */
1483     while (k < len2) {
1484       struct1 = gst_caps_get_structure_unchecked (caps1, j);
1485       struct2 = gst_caps_get_structure_unchecked (caps2, k);
1486
1487       istruct = gst_caps_structure_intersect (struct1, struct2);
1488
1489       gst_caps_append_structure (dest, istruct);
1490       /* move down left */
1491       k++;
1492       if (G_UNLIKELY (j == 0))
1493         break;                  /* so we don't roll back to G_MAXUINT */
1494       j--;
1495     }
1496   }
1497   return dest;
1498 }
1499
1500 typedef struct
1501 {
1502   const GstStructure *subtract_from;
1503   GSList *put_into;
1504 }
1505 SubtractionEntry;
1506
1507
1508 static gboolean
1509 gst_caps_structure_subtract_field (GQuark field_id, const GValue * value,
1510     gpointer user_data)
1511 {
1512   SubtractionEntry *e = user_data;
1513   GValue subtraction = { 0, };
1514   const GValue *other;
1515   GstStructure *structure;
1516
1517   other = gst_structure_id_get_value (e->subtract_from, field_id);
1518   if (!other) {
1519     return FALSE;
1520   }
1521   if (!gst_value_subtract (&subtraction, other, value))
1522     return TRUE;
1523   if (gst_value_compare (&subtraction, other) == GST_VALUE_EQUAL) {
1524     g_value_unset (&subtraction);
1525     return FALSE;
1526   } else {
1527     structure = gst_structure_copy (e->subtract_from);
1528     gst_structure_id_set_value (structure, field_id, &subtraction);
1529     g_value_unset (&subtraction);
1530     e->put_into = g_slist_prepend (e->put_into, structure);
1531     return TRUE;
1532   }
1533 }
1534
1535 static gboolean
1536 gst_caps_structure_subtract (GSList ** into, const GstStructure * minuend,
1537     const GstStructure * subtrahend)
1538 {
1539   SubtractionEntry e;
1540   gboolean ret;
1541
1542   e.subtract_from = minuend;
1543   e.put_into = NULL;
1544
1545   ret = gst_structure_foreach ((GstStructure *) subtrahend,
1546       gst_caps_structure_subtract_field, &e);
1547   if (ret) {
1548     *into = e.put_into;
1549   } else {
1550     GSList *walk;
1551
1552     for (walk = e.put_into; walk; walk = g_slist_next (walk)) {
1553       gst_structure_free (walk->data);
1554     }
1555     g_slist_free (e.put_into);
1556   }
1557   return ret;
1558 }
1559
1560 /**
1561  * gst_caps_subtract:
1562  * @minuend: #GstCaps to substract from
1563  * @subtrahend: #GstCaps to substract
1564  *
1565  * Subtracts the @subtrahend from the @minuend.
1566  * <note>This function does not work reliably if optional properties for caps
1567  * are included on one caps and omitted on the other.</note>
1568  *
1569  * Returns: the resulting caps
1570  */
1571 GstCaps *
1572 gst_caps_subtract (const GstCaps * minuend, const GstCaps * subtrahend)
1573 {
1574   guint i, j, sublen;
1575   GstStructure *min;
1576   GstStructure *sub;
1577   GstCaps *dest = NULL, *src;
1578
1579   g_return_val_if_fail (minuend != NULL, NULL);
1580   g_return_val_if_fail (subtrahend != NULL, NULL);
1581
1582   if (CAPS_IS_EMPTY (minuend) || CAPS_IS_ANY (subtrahend)) {
1583     return gst_caps_new_empty ();
1584   }
1585   if (CAPS_IS_EMPTY_SIMPLE (subtrahend))
1586     return gst_caps_copy (minuend);
1587
1588   /* FIXME: Do we want this here or above?
1589      The reason we need this is that there is no definition about what
1590      ANY means for specific types, so it's not possible to reduce ANY partially
1591      You can only remove everything or nothing and that is done above.
1592      Note: there's a test that checks this behaviour. */
1593   g_return_val_if_fail (!CAPS_IS_ANY (minuend), NULL);
1594   sublen = subtrahend->structs->len;
1595   g_assert (sublen > 0);
1596
1597   src = gst_caps_copy (minuend);
1598   for (i = 0; i < sublen; i++) {
1599     guint srclen;
1600
1601     sub = gst_caps_get_structure_unchecked (subtrahend, i);
1602     if (dest) {
1603       gst_caps_unref (src);
1604       src = dest;
1605     }
1606     dest = gst_caps_new_empty ();
1607     srclen = src->structs->len;
1608     for (j = 0; j < srclen; j++) {
1609       min = gst_caps_get_structure_unchecked (src, j);
1610       if (gst_structure_get_name_id (min) == gst_structure_get_name_id (sub)) {
1611         GSList *list;
1612
1613         if (gst_caps_structure_subtract (&list, min, sub)) {
1614           GSList *walk;
1615
1616           for (walk = list; walk; walk = g_slist_next (walk)) {
1617             gst_caps_append_structure (dest, (GstStructure *) walk->data);
1618           }
1619           g_slist_free (list);
1620         } else {
1621           gst_caps_append_structure (dest, gst_structure_copy (min));
1622         }
1623       } else {
1624         gst_caps_append_structure (dest, gst_structure_copy (min));
1625       }
1626     }
1627     if (CAPS_IS_EMPTY_SIMPLE (dest)) {
1628       gst_caps_unref (src);
1629       return dest;
1630     }
1631   }
1632
1633   gst_caps_unref (src);
1634   gst_caps_do_simplify (dest);
1635   return dest;
1636 }
1637
1638 /**
1639  * gst_caps_union:
1640  * @caps1: a #GstCaps to union
1641  * @caps2: a #GstCaps to union
1642  *
1643  * Creates a new #GstCaps that contains all the formats that are in
1644  * either @caps1 and @caps2.
1645  *
1646  * Returns: the new #GstCaps
1647  */
1648 GstCaps *
1649 gst_caps_union (const GstCaps * caps1, const GstCaps * caps2)
1650 {
1651   GstCaps *dest1;
1652   GstCaps *dest2;
1653
1654   /* NULL pointers are no correct GstCaps */
1655   g_return_val_if_fail (caps1 != NULL, NULL);
1656   g_return_val_if_fail (caps2 != NULL, NULL);
1657
1658   if (CAPS_IS_EMPTY (caps1))
1659     return gst_caps_copy (caps2);
1660
1661   if (CAPS_IS_EMPTY (caps2))
1662     return gst_caps_copy (caps1);
1663
1664   if (CAPS_IS_ANY (caps1) || CAPS_IS_ANY (caps2))
1665     return gst_caps_new_any ();
1666
1667   dest1 = gst_caps_copy (caps1);
1668   dest2 = gst_caps_copy (caps2);
1669   gst_caps_append (dest1, dest2);
1670
1671   gst_caps_do_simplify (dest1);
1672   return dest1;
1673 }
1674
1675 typedef struct _NormalizeForeach
1676 {
1677   GstCaps *caps;
1678   GstStructure *structure;
1679 }
1680 NormalizeForeach;
1681
1682 static gboolean
1683 gst_caps_normalize_foreach (GQuark field_id, const GValue * value, gpointer ptr)
1684 {
1685   NormalizeForeach *nf = (NormalizeForeach *) ptr;
1686   GValue val = { 0 };
1687   guint i;
1688
1689   if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
1690     guint len = gst_value_list_get_size (value);
1691     for (i = 1; i < len; i++) {
1692       const GValue *v = gst_value_list_get_value (value, i);
1693       GstStructure *structure = gst_structure_copy (nf->structure);
1694
1695       gst_structure_id_set_value (structure, field_id, v);
1696       gst_caps_append_structure (nf->caps, structure);
1697     }
1698
1699     gst_value_init_and_copy (&val, gst_value_list_get_value (value, 0));
1700     gst_structure_id_set_value (nf->structure, field_id, &val);
1701     g_value_unset (&val);
1702
1703     return FALSE;
1704   }
1705   return TRUE;
1706 }
1707
1708 /**
1709  * gst_caps_normalize:
1710  * @caps: a #GstCaps to normalize
1711  *
1712  * Creates a new #GstCaps that represents the same set of formats as
1713  * @caps, but contains no lists.  Each list is expanded into separate
1714  * @GstStructures.
1715  *
1716  * Returns: the new #GstCaps
1717  */
1718 GstCaps *
1719 gst_caps_normalize (const GstCaps * caps)
1720 {
1721   NormalizeForeach nf;
1722   GstCaps *newcaps;
1723   guint i, nlen;
1724
1725   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
1726
1727   newcaps = gst_caps_copy (caps);
1728   nf.caps = newcaps;
1729   nlen = newcaps->structs->len;
1730
1731   for (i = 0; i < nlen; i++) {
1732     nf.structure = gst_caps_get_structure_unchecked (newcaps, i);
1733
1734     while (!gst_structure_foreach (nf.structure,
1735             gst_caps_normalize_foreach, &nf));
1736   }
1737
1738   return newcaps;
1739 }
1740
1741 static gint
1742 gst_caps_compare_structures (gconstpointer one, gconstpointer two)
1743 {
1744   gint ret;
1745   const GstStructure *struct1 = *((const GstStructure **) one);
1746   const GstStructure *struct2 = *((const GstStructure **) two);
1747
1748   /* FIXME: this orders alphabetically, but ordering the quarks might be faster
1749      So what's the best way? */
1750   ret = strcmp (gst_structure_get_name (struct1),
1751       gst_structure_get_name (struct2));
1752   if (ret)
1753     return ret;
1754
1755   return gst_structure_n_fields (struct2) - gst_structure_n_fields (struct1);
1756 }
1757
1758 typedef struct
1759 {
1760   GQuark name;
1761   GValue value;
1762   GstStructure *compare;
1763 }
1764 UnionField;
1765
1766 static gboolean
1767 gst_caps_structure_figure_out_union (GQuark field_id, const GValue * value,
1768     gpointer user_data)
1769 {
1770   UnionField *u = user_data;
1771   const GValue *val = gst_structure_id_get_value (u->compare, field_id);
1772
1773   if (!val) {
1774     if (u->name)
1775       g_value_unset (&u->value);
1776     return FALSE;
1777   }
1778   if (gst_value_compare (val, value) == GST_VALUE_EQUAL)
1779     return TRUE;
1780   if (u->name) {
1781     g_value_unset (&u->value);
1782     return FALSE;
1783   }
1784   u->name = field_id;
1785   gst_value_union (&u->value, val, value);
1786   return TRUE;
1787 }
1788
1789 static gboolean
1790 gst_caps_structure_simplify (GstStructure ** result,
1791     const GstStructure * simplify, GstStructure * compare)
1792 {
1793   GSList *list;
1794   UnionField field = { 0, {0,}, NULL };
1795
1796   /* try to subtract to get a real subset */
1797   if (gst_caps_structure_subtract (&list, simplify, compare)) {
1798     switch (g_slist_length (list)) {
1799       case 0:
1800         *result = NULL;
1801         return TRUE;
1802       case 1:
1803         *result = list->data;
1804         g_slist_free (list);
1805         return TRUE;
1806       default:
1807       {
1808         GSList *walk;
1809
1810         for (walk = list; walk; walk = g_slist_next (walk)) {
1811           gst_structure_free (walk->data);
1812         }
1813         g_slist_free (list);
1814         break;
1815       }
1816     }
1817   }
1818
1819   /* try to union both structs */
1820   field.compare = compare;
1821   if (gst_structure_foreach ((GstStructure *) simplify,
1822           gst_caps_structure_figure_out_union, &field)) {
1823     gboolean ret = FALSE;
1824
1825     /* now we know all of simplify's fields are the same in compare
1826      * but at most one field: field.name */
1827     if (G_IS_VALUE (&field.value)) {
1828       if (gst_structure_n_fields (simplify) == gst_structure_n_fields (compare)) {
1829         gst_structure_id_set_value (compare, field.name, &field.value);
1830         *result = NULL;
1831         ret = TRUE;
1832       }
1833       g_value_unset (&field.value);
1834     } else if (gst_structure_n_fields (simplify) <=
1835         gst_structure_n_fields (compare)) {
1836       /* compare is just more specific, will be optimized away later */
1837       /* FIXME: do this here? */
1838       GST_LOG ("found a case that will be optimized later.");
1839     } else {
1840       gchar *one = gst_structure_to_string (simplify);
1841       gchar *two = gst_structure_to_string (compare);
1842
1843       GST_ERROR
1844           ("caps mismatch: structures %s and %s claim to be possible to unify, but aren't",
1845           one, two);
1846       g_free (one);
1847       g_free (two);
1848     }
1849     return ret;
1850   }
1851
1852   return FALSE;
1853 }
1854
1855 static void
1856 gst_caps_switch_structures (GstCaps * caps, GstStructure * old,
1857     GstStructure * new, gint i)
1858 {
1859   gst_structure_set_parent_refcount (old, NULL);
1860   gst_structure_free (old);
1861   gst_structure_set_parent_refcount (new, &caps->refcount);
1862   g_ptr_array_index (caps->structs, i) = new;
1863 }
1864
1865 /**
1866  * gst_caps_do_simplify:
1867  * @caps: a #GstCaps to simplify
1868  *
1869  * Modifies the given @caps inplace into a representation that represents the
1870  * same set of formats, but in a simpler form.  Component structures that are
1871  * identical are merged.  Component structures that have values that can be
1872  * merged are also merged.
1873  *
1874  * Returns: TRUE, if the caps could be simplified
1875  */
1876 gboolean
1877 gst_caps_do_simplify (GstCaps * caps)
1878 {
1879   GstStructure *simplify, *compare, *result = NULL;
1880   gint i, j, start;
1881   gboolean changed = FALSE;
1882
1883   g_return_val_if_fail (caps != NULL, FALSE);
1884   g_return_val_if_fail (IS_WRITABLE (caps), FALSE);
1885
1886   if (gst_caps_get_size (caps) < 2)
1887     return FALSE;
1888
1889   g_ptr_array_sort (caps->structs, gst_caps_compare_structures);
1890
1891   start = caps->structs->len - 1;
1892   for (i = caps->structs->len - 1; i >= 0; i--) {
1893     simplify = gst_caps_get_structure_unchecked (caps, i);
1894     if (gst_structure_get_name_id (simplify) !=
1895         gst_structure_get_name_id (gst_caps_get_structure_unchecked (caps,
1896                 start)))
1897       start = i;
1898     for (j = start; j >= 0; j--) {
1899       if (j == i)
1900         continue;
1901       compare = gst_caps_get_structure_unchecked (caps, j);
1902       if (gst_structure_get_name_id (simplify) !=
1903           gst_structure_get_name_id (compare)) {
1904         break;
1905       }
1906       if (gst_caps_structure_simplify (&result, simplify, compare)) {
1907         if (result) {
1908           gst_caps_switch_structures (caps, simplify, result, i);
1909           simplify = result;
1910         } else {
1911           gst_caps_remove_structure (caps, i);
1912           start--;
1913           break;
1914         }
1915         changed = TRUE;
1916       }
1917     }
1918   }
1919
1920   if (!changed)
1921     return FALSE;
1922
1923   /* gst_caps_do_simplify (caps); */
1924   return TRUE;
1925 }
1926
1927 #ifndef GST_DISABLE_LOADSAVE
1928 /**
1929  * gst_caps_save_thyself:
1930  * @caps: a #GstCaps structure
1931  * @parent: a XML parent node
1932  *
1933  * Serializes a #GstCaps to XML and adds it as a child node of @parent.
1934  *
1935  * Returns: a XML node pointer
1936  */
1937 xmlNodePtr
1938 gst_caps_save_thyself (const GstCaps * caps, xmlNodePtr parent)
1939 {
1940   char *s = gst_caps_to_string (caps);
1941
1942   xmlNewChild (parent, NULL, (xmlChar *) "caps", (xmlChar *) s);
1943   g_free (s);
1944   return parent;
1945 }
1946
1947 /**
1948  * gst_caps_load_thyself:
1949  * @parent: a XML node
1950  *
1951  * Creates a #GstCaps from its XML serialization.
1952  *
1953  * Returns: a new #GstCaps structure
1954  */
1955 GstCaps *
1956 gst_caps_load_thyself (xmlNodePtr parent)
1957 {
1958   if (strcmp ("caps", (char *) parent->name) == 0) {
1959     return gst_caps_from_string ((gchar *) xmlNodeGetContent (parent));
1960   }
1961
1962   return NULL;
1963 }
1964 #endif
1965
1966 /* utility */
1967
1968 /**
1969  * gst_caps_replace:
1970  * @caps: a pointer to #GstCaps
1971  * @newcaps: a #GstCaps to replace *caps
1972  *
1973  * Replaces *caps with @newcaps.  Unrefs the #GstCaps in the location
1974  * pointed to by @caps, if applicable, then modifies @caps to point to
1975  * @newcaps. An additional ref on @newcaps is taken.
1976  *
1977  * This function does not take any locks so you might want to lock
1978  * the object owning @caps pointer.
1979  */
1980 void
1981 gst_caps_replace (GstCaps ** caps, GstCaps * newcaps)
1982 {
1983   GstCaps *oldcaps;
1984
1985   g_return_if_fail (caps != NULL);
1986
1987   oldcaps = *caps;
1988
1989   GST_CAT_LOG (GST_CAT_REFCOUNTING, "%p, %p -> %p", caps, oldcaps, newcaps);
1990
1991   if (newcaps != oldcaps) {
1992     if (newcaps)
1993       gst_caps_ref (newcaps);
1994
1995     *caps = newcaps;
1996
1997     if (oldcaps)
1998       gst_caps_unref (oldcaps);
1999   }
2000 }
2001
2002 /**
2003  * gst_caps_to_string:
2004  * @caps: a #GstCaps
2005  *
2006  * Converts @caps to a string representation.  This string representation
2007  * can be converted back to a #GstCaps by gst_caps_from_string().
2008  *
2009  * For debugging purposes its easier to do something like this:
2010  * |[
2011  * GST_LOG ("caps are %" GST_PTR_FORMAT, caps);
2012  * ]|
2013  * This prints the caps in human readble form.
2014  *
2015  * Returns: a newly allocated string representing @caps.
2016  */
2017 gchar *
2018 gst_caps_to_string (const GstCaps * caps)
2019 {
2020   guint i, slen, clen;
2021   GString *s;
2022
2023   /* NOTE:  This function is potentially called by the debug system,
2024    * so any calls to gst_log() (and GST_DEBUG(), GST_LOG(), etc.)
2025    * should be careful to avoid recursion.  This includes any functions
2026    * called by gst_caps_to_string.  In particular, calls should
2027    * not use the GST_PTR_FORMAT extension.  */
2028
2029   if (caps == NULL) {
2030     return g_strdup ("NULL");
2031   }
2032   if (CAPS_IS_ANY (caps)) {
2033     return g_strdup ("ANY");
2034   }
2035   if (CAPS_IS_EMPTY_SIMPLE (caps)) {
2036     return g_strdup ("EMPTY");
2037   }
2038
2039   /* estimate a rough string length to avoid unnecessary reallocs in GString */
2040   slen = 0;
2041   clen = caps->structs->len;
2042   for (i = 0; i < clen; i++) {
2043     slen +=
2044         STRUCTURE_ESTIMATED_STRING_LEN (gst_caps_get_structure_unchecked (caps,
2045             i));
2046   }
2047
2048   s = g_string_sized_new (slen);
2049   for (i = 0; i < clen; i++) {
2050     GstStructure *structure;
2051
2052     if (i > 0) {
2053       /* ';' is now added by gst_structure_to_string */
2054       g_string_append_c (s, ' ');
2055     }
2056
2057     structure = gst_caps_get_structure_unchecked (caps, i);
2058     priv_gst_structure_append_to_gstring (structure, s);
2059   }
2060   if (s->len && s->str[s->len - 1] == ';') {
2061     /* remove latest ';' */
2062     s->str[--s->len] = '\0';
2063   }
2064   return g_string_free (s, FALSE);
2065 }
2066
2067 static gboolean
2068 gst_caps_from_string_inplace (GstCaps * caps, const gchar * string)
2069 {
2070   GstStructure *structure;
2071   gchar *s;
2072
2073   if (strcmp ("ANY", string) == 0) {
2074     caps->flags = GST_CAPS_FLAGS_ANY;
2075     return TRUE;
2076   }
2077   if (strcmp ("EMPTY", string) == 0) {
2078     return TRUE;
2079   }
2080
2081   structure = gst_structure_from_string (string, &s);
2082   if (structure == NULL) {
2083     return FALSE;
2084   }
2085   gst_caps_append_structure (caps, structure);
2086
2087   do {
2088
2089     while (g_ascii_isspace (*s))
2090       s++;
2091     if (*s == '\0') {
2092       break;
2093     }
2094     structure = gst_structure_from_string (s, &s);
2095     if (structure == NULL) {
2096       return FALSE;
2097     }
2098     gst_caps_append_structure (caps, structure);
2099
2100   } while (TRUE);
2101
2102   return TRUE;
2103 }
2104
2105 /**
2106  * gst_caps_from_string:
2107  * @string: a string to convert to #GstCaps
2108  *
2109  * Converts @caps from a string representation.
2110  *
2111  * Returns: a newly allocated #GstCaps
2112  */
2113 GstCaps *
2114 gst_caps_from_string (const gchar * string)
2115 {
2116   GstCaps *caps;
2117
2118   g_return_val_if_fail (string, FALSE);
2119
2120   caps = gst_caps_new_empty ();
2121   if (gst_caps_from_string_inplace (caps, string)) {
2122     return caps;
2123   } else {
2124     gst_caps_unref (caps);
2125     return NULL;
2126   }
2127 }
2128
2129 static void
2130 gst_caps_transform_to_string (const GValue * src_value, GValue * dest_value)
2131 {
2132   g_return_if_fail (G_IS_VALUE (src_value));
2133   g_return_if_fail (G_IS_VALUE (dest_value));
2134   g_return_if_fail (G_VALUE_HOLDS (src_value, GST_TYPE_CAPS));
2135   g_return_if_fail (G_VALUE_HOLDS (dest_value, G_TYPE_STRING)
2136       || G_VALUE_HOLDS (dest_value, G_TYPE_POINTER));
2137
2138   dest_value->data[0].v_pointer =
2139       gst_caps_to_string (src_value->data[0].v_pointer);
2140 }
2141
2142 static GstCaps *
2143 gst_caps_copy_conditional (GstCaps * src)
2144 {
2145   if (src) {
2146     return gst_caps_ref (src);
2147   } else {
2148     return NULL;
2149   }
2150 }