diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-11 14:38:16 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-11 14:38:16 +0000 |
commit | 32e6f246b3879280b239a692aa6d11a2d7104614 (patch) | |
tree | 81cbb8b1522dccc883a49de528dcd68986f1a807 /libavformat/avformat.h | |
parent | c6a34954b9e33e64a780ce1669647b2d99812646 (diff) | |
download | ffmpeg-32e6f246b3879280b239a692aa6d11a2d7104614.tar.gz |
Fix reference to a wrong parameter name in the metadata API functions
doxies.
Originally committed as revision 24770 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 12ea6ed100..0c702799c2 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -142,10 +142,10 @@ av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int f #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 @@ attribute_deprecated int av_metadata_set(AVMetadata **pm, const char *key, const #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 */ |