changeset 6364:19e0c709659a libavformat

Fix reference to a wrong parameter name in the metadata API functions doxies.
author stefano
date Wed, 11 Aug 2010 14:38:16 +0000
parents c22c9c5b1588
children c8ba3c854868
files avformat.h
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/avformat.h	Wed Aug 11 09:13:58 2010 +0000
+++ b/avformat.h	Wed Aug 11 14:38:16 2010 +0000
@@ -142,10 +142,10 @@
 
 #if LIBAVFORMAT_VERSION_MAJOR == 52
 /**
- * Set the given tag in m, overwriting an existing tag.
+ * Set the given tag in *pm, overwriting an existing tag.
  *
- * @param key tag key to add to m (will be av_strduped)
- * @param value tag value to add to m (will be av_strduped)
+ * @param key tag key to add to *pm (will be av_strduped)
+ * @param value tag value to add to *pm (will be av_strduped)
  * @return >= 0 on success otherwise an error code <0
  * @deprecated Use av_metadata_set2() instead.
  */
@@ -153,10 +153,10 @@
 #endif
 
 /**
- * Set the given tag in m, overwriting an existing tag.
+ * Set the given tag in *pm, overwriting an existing tag.
  *
- * @param key tag key to add to m (will be av_strduped depending on flags)
- * @param value tag value to add to m (will be av_strduped depending on flags).
+ * @param key tag key to add to *pm (will be av_strduped depending on flags)
+ * @param value tag value to add to *pm (will be av_strduped depending on flags).
  *        Passing a NULL value will cause an existing tag to be deleted.
  * @return >= 0 on success otherwise an error code <0
  */