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