meta: update for new API

This commit is contained in:
Wim Taymans 2011-03-08 17:02:30 +00:00
parent a4fdb8ee44
commit c63dc97adf
3 changed files with 5 additions and 8 deletions

View file

@ -102,8 +102,7 @@ gst_meta_fenced_get_info (void)
sizeof (GstMetaFenced), sizeof (GstMetaFenced),
(GstMetaInitFunction) NULL, (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL, (GstMetaFreeFunction) NULL,
(GstMetaCopyFunction) NULL, (GstMetaTransformFunction) NULL,
(GstMetaSubFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL); (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
} }
return meta_fenced_info; return meta_fenced_info;

View file

@ -64,9 +64,8 @@ gst_meta_v4l2_get_info (void)
meta_info = meta_info =
gst_meta_register ("GstMetaV4l2", "GstMetaV4l2", gst_meta_register ("GstMetaV4l2", "GstMetaV4l2",
sizeof (GstMetaV4l2), (GstMetaInitFunction) NULL, sizeof (GstMetaV4l2), (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
(GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL, (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
(GstMetaDeserializeFunction) NULL);
} }
return meta_info; return meta_info;
} }

View file

@ -32,9 +32,8 @@ gst_meta_ximage_get_info (void)
meta_ximage_info = meta_ximage_info =
gst_meta_register ("GstMetaXImageSrc", "GstMetaXImageSrc", gst_meta_register ("GstMetaXImageSrc", "GstMetaXImageSrc",
sizeof (GstMetaXImage), (GstMetaInitFunction) NULL, sizeof (GstMetaXImage), (GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL, (GstMetaCopyFunction) NULL, (GstMetaFreeFunction) NULL, (GstMetaTransformFunction) NULL,
(GstMetaSubFunction) NULL, (GstMetaSerializeFunction) NULL, (GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
(GstMetaDeserializeFunction) NULL);
} }
return meta_ximage_info; return meta_ximage_info;
} }