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