capsfeatures: Copy ANY flag when copying caps features too
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 6 Apr 2013 20:10:58 +0000 (22:10 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 6 Apr 2013 20:10:58 +0000 (22:10 +0200)
gst/gstcapsfeatures.c

index b730827..8fb8df5 100644 (file)
@@ -367,6 +367,7 @@ gst_caps_features_copy (const GstCapsFeatures * features)
   n = gst_caps_features_get_size (features);
   for (i = 0; i < n; i++)
     gst_caps_features_add_id (copy, gst_caps_features_get_nth_id (features, i));
+  copy->is_any = features->is_any;
 
   return copy;
 }