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),
(GstMetaInitFunction) NULL,
(GstMetaFreeFunction) NULL,
(GstMetaCopyFunction) NULL,
(GstMetaSubFunction) NULL,
(GstMetaTransformFunction) NULL,
(GstMetaSerializeFunction) NULL, (GstMetaDeserializeFunction) NULL);
}
return meta_fenced_info;

View 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;
}

View 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;
}