mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
meta: transform docs
Use gst- prefix for metadata transform types.
This commit is contained in:
parent
3fa69e6e11
commit
36b6204811
2 changed files with 4 additions and 4 deletions
|
@ -44,7 +44,7 @@ _priv_gst_meta_initialize (void)
|
|||
g_rw_lock_init (&lock);
|
||||
metainfo = g_hash_table_new (g_str_hash, g_str_equal);
|
||||
|
||||
_gst_meta_transform_copy = g_quark_from_static_string ("copy");
|
||||
_gst_meta_transform_copy = g_quark_from_static_string ("gst-copy");
|
||||
_gst_meta_tag_memory = g_quark_from_static_string ("memory");
|
||||
}
|
||||
|
||||
|
|
|
@ -115,18 +115,18 @@ typedef void (*GstMetaFreeFunction) (GstMeta *meta, GstBuffer *buffer);
|
|||
/**
|
||||
* gst_meta_transform_copy:
|
||||
*
|
||||
* GQuark for the "copy" transform.
|
||||
* GQuark for the "gst-copy" transform.
|
||||
*/
|
||||
GST_EXPORT GQuark _gst_meta_transform_copy;
|
||||
|
||||
#define GST_META_TRANSFORM_IS_COPY(type) ((type) == _gst_meta_transform_copy)
|
||||
|
||||
/**
|
||||
* GstMetaTransformDataCopy:
|
||||
* GstMetaTransformCopy:
|
||||
* @offset: the offset to copy
|
||||
* @size: the size to copy
|
||||
*
|
||||
* Extra data passed to a "copy" transform #GstMetaTransformFunction.
|
||||
* Extra data passed to a "gst-copy" transform #GstMetaTransformFunction.
|
||||
*/
|
||||
typedef struct {
|
||||
gsize offset;
|
||||
|
|
Loading…
Reference in a new issue