meta: transform docs
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 2 Mar 2012 10:57:52 +0000 (11:57 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 2 Mar 2012 10:57:52 +0000 (11:57 +0100)
Use gst- prefix for metadata transform types.

gst/gstmeta.c
gst/gstmeta.h

index 97431a2..8a0978a 100644 (file)
@@ -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");
 }
 
index e14f37e..a99dd3c 100644 (file)
@@ -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;