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