gstcaps: Use direct values for repetitive conditionals (for/while).
[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   g_assert ((sublen = subtrahend->structs->len) > 0);
1383
1384   src = gst_caps_copy (minuend);
1385   for (i = 0; i < sublen; i++) {
1386     guint srclen;
1387
1388     sub = gst_caps_get_structure_unchecked (subtrahend, i);
1389     if (dest) {
1390       gst_caps_unref (src);
1391       src = dest;
1392     }
1393     dest = gst_caps_new_empty ();
1394     srclen = src->structs->len;
1395     for (j = 0; j < srclen; j++) {
1396       min = gst_caps_get_structure_unchecked (src, j);
1397       if (gst_structure_get_name_id (min) == gst_structure_get_name_id (sub)) {
1398         GSList *list;
1399
1400         if (gst_caps_structure_subtract (&list, min, sub)) {
1401           GSList *walk;
1402
1403           for (walk = list; walk; walk = g_slist_next (walk)) {
1404             gst_caps_append_structure (dest, (GstStructure *) walk->data);
1405           }
1406           g_slist_free (list);
1407         } else {
1408           gst_caps_append_structure (dest, gst_structure_copy (min));
1409         }
1410       } else {
1411         gst_caps_append_structure (dest, gst_structure_copy (min));
1412       }
1413     }
1414     if (gst_caps_is_empty (dest)) {
1415       gst_caps_unref (src);
1416       return dest;
1417     }
1418   }
1419
1420   gst_caps_unref (src);
1421   gst_caps_do_simplify (dest);
1422   return dest;
1423 }
1424
1425 /**
1426  * gst_caps_union:
1427  * @caps1: a #GstCaps to union
1428  * @caps2: a #GstCaps to union
1429  *
1430  * Creates a new #GstCaps that contains all the formats that are in
1431  * either @caps1 and @caps2.
1432  *
1433  * Returns: the new #GstCaps
1434  */
1435 GstCaps *
1436 gst_caps_union (const GstCaps * caps1, const GstCaps * caps2)
1437 {
1438   GstCaps *dest1;
1439   GstCaps *dest2;
1440
1441   /* NULL pointers are no correct GstCaps */
1442   g_return_val_if_fail (caps1 != NULL, NULL);
1443   g_return_val_if_fail (caps2 != NULL, NULL);
1444
1445   if (gst_caps_is_empty (caps1))
1446     return gst_caps_copy (caps2);
1447
1448   if (gst_caps_is_empty (caps2))
1449     return gst_caps_copy (caps1);
1450
1451   if (gst_caps_is_any (caps1) || gst_caps_is_any (caps2))
1452     return gst_caps_new_any ();
1453
1454   dest1 = gst_caps_copy (caps1);
1455   dest2 = gst_caps_copy (caps2);
1456   gst_caps_append (dest1, dest2);
1457
1458   gst_caps_do_simplify (dest1);
1459   return dest1;
1460 }
1461
1462 typedef struct _NormalizeForeach
1463 {
1464   GstCaps *caps;
1465   GstStructure *structure;
1466 }
1467 NormalizeForeach;
1468
1469 static gboolean
1470 gst_caps_normalize_foreach (GQuark field_id, const GValue * value, gpointer ptr)
1471 {
1472   NormalizeForeach *nf = (NormalizeForeach *) ptr;
1473   GValue val = { 0 };
1474   guint i;
1475
1476   if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
1477     guint len = gst_value_list_get_size (value);
1478     for (i = 1; i < len; i++) {
1479       const GValue *v = gst_value_list_get_value (value, i);
1480       GstStructure *structure = gst_structure_copy (nf->structure);
1481
1482       gst_structure_id_set_value (structure, field_id, v);
1483       gst_caps_append_structure (nf->caps, structure);
1484     }
1485
1486     gst_value_init_and_copy (&val, gst_value_list_get_value (value, 0));
1487     gst_structure_id_set_value (nf->structure, field_id, &val);
1488     g_value_unset (&val);
1489
1490     return FALSE;
1491   }
1492   return TRUE;
1493 }
1494
1495 /**
1496  * gst_caps_normalize:
1497  * @caps: a #GstCaps to normalize
1498  *
1499  * Creates a new #GstCaps that represents the same set of formats as
1500  * @caps, but contains no lists.  Each list is expanded into separate
1501  * @GstStructures.
1502  *
1503  * Returns: the new #GstCaps
1504  */
1505 GstCaps *
1506 gst_caps_normalize (const GstCaps * caps)
1507 {
1508   NormalizeForeach nf;
1509   GstCaps *newcaps;
1510   guint i, nlen;
1511
1512   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
1513
1514   newcaps = gst_caps_copy (caps);
1515   nf.caps = newcaps;
1516   nlen = newcaps->structs->len;
1517
1518   for (i = 0; i < nlen; i++) {
1519     nf.structure = gst_caps_get_structure_unchecked (newcaps, i);
1520
1521     while (!gst_structure_foreach (nf.structure,
1522             gst_caps_normalize_foreach, &nf));
1523   }
1524
1525   return newcaps;
1526 }
1527
1528 static gint
1529 gst_caps_compare_structures (gconstpointer one, gconstpointer two)
1530 {
1531   gint ret;
1532   const GstStructure *struct1 = *((const GstStructure **) one);
1533   const GstStructure *struct2 = *((const GstStructure **) two);
1534
1535   /* FIXME: this orders alphabetically, but ordering the quarks might be faster
1536      So what's the best way? */
1537   ret = strcmp (gst_structure_get_name (struct1),
1538       gst_structure_get_name (struct2));
1539   if (ret)
1540     return ret;
1541
1542   return gst_structure_n_fields (struct2) - gst_structure_n_fields (struct1);
1543 }
1544
1545 typedef struct
1546 {
1547   GQuark name;
1548   GValue value;
1549   GstStructure *compare;
1550 }
1551 UnionField;
1552
1553 static gboolean
1554 gst_caps_structure_figure_out_union (GQuark field_id, const GValue * value,
1555     gpointer user_data)
1556 {
1557   UnionField *u = user_data;
1558   const GValue *val = gst_structure_id_get_value (u->compare, field_id);
1559
1560   if (!val) {
1561     if (u->name)
1562       g_value_unset (&u->value);
1563     return FALSE;
1564   }
1565   if (gst_value_compare (val, value) == GST_VALUE_EQUAL)
1566     return TRUE;
1567   if (u->name) {
1568     g_value_unset (&u->value);
1569     return FALSE;
1570   }
1571   u->name = field_id;
1572   gst_value_union (&u->value, val, value);
1573   return TRUE;
1574 }
1575
1576 static gboolean
1577 gst_caps_structure_simplify (GstStructure ** result,
1578     const GstStructure * simplify, GstStructure * compare)
1579 {
1580   GSList *list;
1581   UnionField field = { 0, {0,}, NULL };
1582
1583   /* try to subtract to get a real subset */
1584   if (gst_caps_structure_subtract (&list, simplify, compare)) {
1585     switch (g_slist_length (list)) {
1586       case 0:
1587         *result = NULL;
1588         return TRUE;
1589       case 1:
1590         *result = list->data;
1591         g_slist_free (list);
1592         return TRUE;
1593       default:
1594       {
1595         GSList *walk;
1596
1597         for (walk = list; walk; walk = g_slist_next (walk)) {
1598           gst_structure_free (walk->data);
1599         }
1600         g_slist_free (list);
1601         break;
1602       }
1603     }
1604   }
1605
1606   /* try to union both structs */
1607   field.compare = compare;
1608   if (gst_structure_foreach ((GstStructure *) simplify,
1609           gst_caps_structure_figure_out_union, &field)) {
1610     gboolean ret = FALSE;
1611
1612     /* now we know all of simplify's fields are the same in compare
1613      * but at most one field: field.name */
1614     if (G_IS_VALUE (&field.value)) {
1615       if (gst_structure_n_fields (simplify) == gst_structure_n_fields (compare)) {
1616         gst_structure_id_set_value (compare, field.name, &field.value);
1617         *result = NULL;
1618         ret = TRUE;
1619       }
1620       g_value_unset (&field.value);
1621     } else if (gst_structure_n_fields (simplify) <=
1622         gst_structure_n_fields (compare)) {
1623       /* compare is just more specific, will be optimized away later */
1624       /* FIXME: do this here? */
1625       GST_LOG ("found a case that will be optimized later.");
1626     } else {
1627       gchar *one = gst_structure_to_string (simplify);
1628       gchar *two = gst_structure_to_string (compare);
1629
1630       GST_ERROR
1631           ("caps mismatch: structures %s and %s claim to be possible to unify, but aren't",
1632           one, two);
1633       g_free (one);
1634       g_free (two);
1635     }
1636     return ret;
1637   }
1638
1639   return FALSE;
1640 }
1641
1642 static void
1643 gst_caps_switch_structures (GstCaps * caps, GstStructure * old,
1644     GstStructure * new, gint i)
1645 {
1646   gst_structure_set_parent_refcount (old, NULL);
1647   gst_structure_free (old);
1648   gst_structure_set_parent_refcount (new, &caps->refcount);
1649   g_ptr_array_index (caps->structs, i) = new;
1650 }
1651
1652 /**
1653  * gst_caps_do_simplify:
1654  * @caps: a #GstCaps to simplify
1655  *
1656  * Modifies the given @caps inplace into a representation that represents the
1657  * same set of formats, but in a simpler form.  Component structures that are
1658  * identical are merged.  Component structures that have values that can be
1659  * merged are also merged.
1660  *
1661  * Returns: TRUE, if the caps could be simplified
1662  */
1663 gboolean
1664 gst_caps_do_simplify (GstCaps * caps)
1665 {
1666   GstStructure *simplify, *compare, *result = NULL;
1667   gint i, j, start;
1668   gboolean changed = FALSE;
1669
1670   g_return_val_if_fail (caps != NULL, FALSE);
1671   g_return_val_if_fail (IS_WRITABLE (caps), FALSE);
1672
1673   if (gst_caps_get_size (caps) < 2)
1674     return FALSE;
1675
1676   g_ptr_array_sort (caps->structs, gst_caps_compare_structures);
1677
1678   start = caps->structs->len - 1;
1679   for (i = caps->structs->len - 1; i >= 0; i--) {
1680     simplify = gst_caps_get_structure_unchecked (caps, i);
1681     if (gst_structure_get_name_id (simplify) !=
1682         gst_structure_get_name_id (gst_caps_get_structure_unchecked (caps,
1683                 start)))
1684       start = i;
1685     for (j = start; j >= 0; j--) {
1686       if (j == i)
1687         continue;
1688       compare = gst_caps_get_structure_unchecked (caps, j);
1689       if (gst_structure_get_name_id (simplify) !=
1690           gst_structure_get_name_id (compare)) {
1691         break;
1692       }
1693       if (gst_caps_structure_simplify (&result, simplify, compare)) {
1694         if (result) {
1695           gst_caps_switch_structures (caps, simplify, result, i);
1696           simplify = result;
1697         } else {
1698           gst_caps_remove_structure (caps, i);
1699           start--;
1700           break;
1701         }
1702         changed = TRUE;
1703       }
1704     }
1705   }
1706
1707   if (!changed)
1708     return FALSE;
1709
1710   /* gst_caps_do_simplify (caps); */
1711   return TRUE;
1712 }
1713
1714 #ifndef GST_DISABLE_LOADSAVE
1715 /**
1716  * gst_caps_save_thyself:
1717  * @caps: a #GstCaps structure
1718  * @parent: a XML parent node
1719  *
1720  * Serializes a #GstCaps to XML and adds it as a child node of @parent.
1721  *
1722  * Returns: a XML node pointer
1723  */
1724 xmlNodePtr
1725 gst_caps_save_thyself (const GstCaps * caps, xmlNodePtr parent)
1726 {
1727   char *s = gst_caps_to_string (caps);
1728
1729   xmlNewChild (parent, NULL, (xmlChar *) "caps", (xmlChar *) s);
1730   g_free (s);
1731   return parent;
1732 }
1733
1734 /**
1735  * gst_caps_load_thyself:
1736  * @parent: a XML node
1737  *
1738  * Creates a #GstCaps from its XML serialization.
1739  *
1740  * Returns: a new #GstCaps structure
1741  */
1742 GstCaps *
1743 gst_caps_load_thyself (xmlNodePtr parent)
1744 {
1745   if (strcmp ("caps", (char *) parent->name) == 0) {
1746     return gst_caps_from_string ((gchar *) xmlNodeGetContent (parent));
1747   }
1748
1749   return NULL;
1750 }
1751 #endif
1752
1753 /* utility */
1754
1755 /**
1756  * gst_caps_replace:
1757  * @caps: a pointer to #GstCaps
1758  * @newcaps: a #GstCaps to replace *caps
1759  *
1760  * Replaces *caps with @newcaps.  Unrefs the #GstCaps in the location
1761  * pointed to by @caps, if applicable, then modifies @caps to point to
1762  * @newcaps. An additional ref on @newcaps is taken.
1763  *
1764  * This function does not take any locks so you might want to lock
1765  * the object owning @caps pointer.
1766  */
1767 void
1768 gst_caps_replace (GstCaps ** caps, GstCaps * newcaps)
1769 {
1770   GstCaps *oldcaps;
1771
1772   g_return_if_fail (caps != NULL);
1773
1774   oldcaps = *caps;
1775
1776   if (newcaps != oldcaps) {
1777     if (newcaps)
1778       gst_caps_ref (newcaps);
1779
1780     *caps = newcaps;
1781
1782     if (oldcaps)
1783       gst_caps_unref (oldcaps);
1784   }
1785 }
1786
1787 /**
1788  * gst_caps_to_string:
1789  * @caps: a #GstCaps
1790  *
1791  * Converts @caps to a string representation.  This string representation
1792  * can be converted back to a #GstCaps by gst_caps_from_string().
1793  *
1794  * For debugging purposes its easier to do something like this:
1795  * |[
1796  * GST_LOG ("caps are %" GST_PTR_FORMAT, caps);
1797  * ]|
1798  * This prints the caps in human readble form.
1799  *
1800  * Returns: a newly allocated string representing @caps.
1801  */
1802 gchar *
1803 gst_caps_to_string (const GstCaps * caps)
1804 {
1805   guint i, slen, clen;
1806   GString *s;
1807
1808   /* NOTE:  This function is potentially called by the debug system,
1809    * so any calls to gst_log() (and GST_DEBUG(), GST_LOG(), etc.)
1810    * should be careful to avoid recursion.  This includes any functions
1811    * called by gst_caps_to_string.  In particular, calls should
1812    * not use the GST_PTR_FORMAT extension.  */
1813
1814   if (caps == NULL) {
1815     return g_strdup ("NULL");
1816   }
1817   if (gst_caps_is_any (caps)) {
1818     return g_strdup ("ANY");
1819   }
1820   if (gst_caps_is_empty (caps)) {
1821     return g_strdup ("EMPTY");
1822   }
1823
1824   /* estimate a rough string length to avoid unnecessary reallocs in GString */
1825   slen = 0;
1826   clen = caps->structs->len;
1827   for (i = 0; i < clen; i++) {
1828     slen +=
1829         STRUCTURE_ESTIMATED_STRING_LEN (gst_caps_get_structure_unchecked (caps,
1830             i));
1831   }
1832
1833   s = g_string_sized_new (slen);
1834   for (i = 0; i < clen; i++) {
1835     GstStructure *structure;
1836
1837     if (i > 0) {
1838       /* ';' is now added by gst_structure_to_string */
1839       g_string_append_c (s, ' ');
1840     }
1841
1842     structure = gst_caps_get_structure_unchecked (caps, i);
1843     priv_gst_structure_append_to_gstring (structure, s);
1844   }
1845   if (s->len && s->str[s->len - 1] == ';') {
1846     /* remove latest ';' */
1847     s->str[--s->len] = '\0';
1848   }
1849   return g_string_free (s, FALSE);
1850 }
1851
1852 static gboolean
1853 gst_caps_from_string_inplace (GstCaps * caps, const gchar * string)
1854 {
1855   GstStructure *structure;
1856   gchar *s;
1857
1858   g_return_val_if_fail (string, FALSE);
1859   if (strcmp ("ANY", string) == 0) {
1860     caps->flags = GST_CAPS_FLAGS_ANY;
1861     return TRUE;
1862   }
1863   if (strcmp ("EMPTY", string) == 0) {
1864     return TRUE;
1865   }
1866
1867   structure = gst_structure_from_string (string, &s);
1868   if (structure == NULL) {
1869     return FALSE;
1870   }
1871   gst_caps_append_structure (caps, structure);
1872
1873   do {
1874
1875     while (g_ascii_isspace (*s))
1876       s++;
1877     if (*s == '\0') {
1878       break;
1879     }
1880     structure = gst_structure_from_string (s, &s);
1881     if (structure == NULL) {
1882       return FALSE;
1883     }
1884     gst_caps_append_structure (caps, structure);
1885
1886   } while (TRUE);
1887
1888   return TRUE;
1889 }
1890
1891 /**
1892  * gst_caps_from_string:
1893  * @string: a string to convert to #GstCaps
1894  *
1895  * Converts @caps from a string representation.
1896  *
1897  * Returns: a newly allocated #GstCaps
1898  */
1899 GstCaps *
1900 gst_caps_from_string (const gchar * string)
1901 {
1902   GstCaps *caps;
1903
1904   caps = gst_caps_new_empty ();
1905   if (gst_caps_from_string_inplace (caps, string)) {
1906     return caps;
1907   } else {
1908     gst_caps_unref (caps);
1909     return NULL;
1910   }
1911 }
1912
1913 static void
1914 gst_caps_transform_to_string (const GValue * src_value, GValue * dest_value)
1915 {
1916   g_return_if_fail (G_IS_VALUE (src_value));
1917   g_return_if_fail (G_IS_VALUE (dest_value));
1918   g_return_if_fail (G_VALUE_HOLDS (src_value, GST_TYPE_CAPS));
1919   g_return_if_fail (G_VALUE_HOLDS (dest_value, G_TYPE_STRING)
1920       || G_VALUE_HOLDS (dest_value, G_TYPE_POINTER));
1921
1922   dest_value->data[0].v_pointer =
1923       gst_caps_to_string (src_value->data[0].v_pointer);
1924 }
1925
1926 static GstCaps *
1927 gst_caps_copy_conditional (GstCaps * src)
1928 {
1929   if (src) {
1930     return gst_caps_ref (src);
1931   } else {
1932     return NULL;
1933   }
1934 }