mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
docs: update docs
This commit is contained in:
parent
0f0f355bfa
commit
d6f31dfce5
1 changed files with 4 additions and 4 deletions
|
@ -91,6 +91,7 @@ methods.
|
||||||
|
|
||||||
GstVideoFlags flags;
|
GstVideoFlags flags;
|
||||||
GstVideoFormat format;
|
GstVideoFormat format;
|
||||||
|
guint id
|
||||||
guint width;
|
guint width;
|
||||||
guint height;
|
guint height;
|
||||||
|
|
||||||
|
@ -100,13 +101,13 @@ methods.
|
||||||
gint stride[GST_VIDEO_MAX_PLANES]; /* stride of the image lines. Can be negative when
|
gint stride[GST_VIDEO_MAX_PLANES]; /* stride of the image lines. Can be negative when
|
||||||
* the image is upside-down */
|
* 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);
|
GstMapFlags flags);
|
||||||
gboolean (*unmap) (GstMetaVideo *meta, guint plane, gpointer data);
|
gboolean (*unmap) (GstMetaVideo *meta, guint plane, gpointer data);
|
||||||
};
|
};
|
||||||
|
|
||||||
gpointer gst_meta_video_map (GstMetaVideo *meta, guint plane, gint *stride,
|
gpointer gst_meta_video_map (GstMetaVideo *meta, guint plane, gpointer * data,
|
||||||
GstMapflags flags);
|
gint *stride, GstMapflags flags);
|
||||||
gboolean gst_meta_video_unmap (GstMetaVideo *meta, guint plane, gpointer data);
|
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
|
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;
|
GstMetaInitFunction init_func;
|
||||||
GstMetaFreeFunction free_func;
|
GstMetaFreeFunction free_func;
|
||||||
GstMetaCopyFunction copy_func;
|
|
||||||
GstMetaTransformFunction transform_func;
|
GstMetaTransformFunction transform_func;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue