mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
meta: update for new API
This commit is contained in:
parent
a4fdb8ee44
commit
c63dc97adf
3 changed files with 5 additions and 8 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue