summaryrefslogtreecommitdiff
path: root/docs/design/part-meta.txt
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-02-24 10:23:17 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2012-02-24 10:28:56 +0100
commitd6f31dfce52e0f0deeac18a418f7589a6de252cb (patch)
tree25fb76496869e0ae92132c41234960353ba50a72 /docs/design/part-meta.txt
parent0f0f355bfa410ef1fe5a94edce4a3d2156d3a221 (diff)
docs: update docs
Diffstat (limited to 'docs/design/part-meta.txt')
-rw-r--r--docs/design/part-meta.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/design/part-meta.txt b/docs/design/part-meta.txt
index ac09e1ffda..9fd576ec19 100644
--- a/docs/design/part-meta.txt
+++ b/docs/design/part-meta.txt
@@ -91,6 +91,7 @@ methods.
GstVideoFlags flags;
GstVideoFormat format;
+ guint id
guint width;
guint height;
@@ -100,13 +101,13 @@ methods.
gint stride[GST_VIDEO_MAX_PLANES]; /* stride of the image lines. Can be negative when
* the image is upside-down */
- gpointer (*map) (GstMetaVideo *meta, guint plane, gint *stride,
+ gpointer (*map) (GstMetaVideo *meta, guint plane, gpointer * data, gint *stride,
GstMapFlags flags);
gboolean (*unmap) (GstMetaVideo *meta, guint plane, gpointer data);
};
- gpointer gst_meta_video_map (GstMetaVideo *meta, guint plane, gint *stride,
- GstMapflags flags);
+ gpointer gst_meta_video_map (GstMetaVideo *meta, guint plane, gpointer * data,
+ gint *stride, GstMapflags flags);
gboolean gst_meta_video_unmap (GstMetaVideo *meta, guint plane, gpointer data);
GstMeta derived structures define the API of the metadata. The API can consist of
@@ -125,7 +126,6 @@ GstMetaInfo will point to more information about the metadata and looks like thi
GstMetaInitFunction init_func;
GstMetaFreeFunction free_func;
- GstMetaCopyFunction copy_func;
GstMetaTransformFunction transform_func;
};