meta: update for new API
authorWim Taymans <wim.taymans@collabora.co.uk>
Tue, 8 Mar 2011 17:02:30 +0000 (17:02 +0000)
committerWim Taymans <wim.taymans@collabora.co.uk>
Tue, 8 Mar 2011 17:02:30 +0000 (17:02 +0000)
gst/debugutils/efence.c
sys/v4l2/gstv4l2bufferpool.c
sys/ximage/ximageutil.c

index 9d5a599..7019352 100644 (file)
@@ -102,8 +102,7 @@ gst_meta_fenced_get_info (void)
         sizeof (GstMetaFenced),
         (GstMetaInitFunction) NULL,
         (GstMetaFreeFunction) NULL,
-        (GstMetaCopyFunction) NULL,
-        (GstMetaSubFunction) NULL,
+        (GstMetaTransformFunction) NULL,
         (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
   }
   return meta_fenced_info;
index 5c3f018..e2b6de3 100644 (file)
@@ -64,9 +64,8 @@ gst_meta_v4l2_get_info (void)
     meta_info =
         gst_meta_register ("GstMetaV4l2", "GstMetaV4l2",
         sizeof (GstMetaV4l2), (GstMetaInitFunction) NULL,
-        (GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL,
-        (GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL,
-        (GstMetaDeserializeFunction) NULL);
+        (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
+        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
   }
   return meta_info;
 }
index c425162..7138681 100644 (file)
@@ -32,9 +32,8 @@ gst_meta_ximage_get_info (void)
     meta_ximage_info =
         gst_meta_register ("GstMetaXImageSrc", "GstMetaXImageSrc",
         sizeof (GstMetaXImage), (GstMetaInitFunction) NULL,
-        (GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL,
-        (GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL,
-        (GstMetaDeserializeFunction) NULL);
+        (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
+        (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
   }
   return meta_ximage_info;
 }