caps: delay _make_writable() until needed in _normalize()
authorWim Taymans <wim.taymans@collabora.co.uk>
Mon, 12 Mar 2012 17:34:30 +0000 (18:34 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 12 Mar 2012 17:34:30 +0000 (18:34 +0100)
Delay _make_writable() until we actually found a list and need to update the
caps.

gst/gstcaps.c

index b4d3120..767a2f4 100644 (file)
@@ -1575,6 +1575,7 @@ typedef struct _NormalizeForeach
 {
   GstCaps *caps;
   GstStructure *structure;
+  gboolean writable;
 }
 NormalizeForeach;
 
@@ -1592,6 +1593,10 @@ gst_caps_normalize_foreach (GQuark field_id, const GValue * value, gpointer ptr)
       GstStructure *structure = gst_structure_copy (nf->structure);
 
       gst_structure_id_set_value (structure, field_id, v);
+      if (G_UNLIKELY (!nf->writable)) {
+        nf->caps = gst_caps_make_writable (nf->caps);
+        nf->writable = TRUE;
+      }
       gst_caps_append_structure_unchecked (nf->caps, structure);
     }
 
@@ -1620,22 +1625,21 @@ GstCaps *
 gst_caps_normalize (GstCaps * caps)
 {
   NormalizeForeach nf;
-  GstCaps *newcaps;
   guint i;
 
   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
 
-  newcaps = gst_caps_make_writable (caps);
-  nf.caps = newcaps;
+  nf.caps = caps;
+  nf.writable = FALSE;
 
-  for (i = 0; i < gst_caps_get_size (newcaps); i++) {
-    nf.structure = gst_caps_get_structure_unchecked (newcaps, i);
+  for (i = 0; i < gst_caps_get_size (nf.caps); i++) {
+    nf.structure = gst_caps_get_structure_unchecked (nf.caps, i);
 
     while (!gst_structure_foreach (nf.structure,
             gst_caps_normalize_foreach, &nf));
   }
 
-  return newcaps;
+  return nf.caps;
 }
 
 static gint