diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-10-14 19:08:31 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-14 19:08:31 +0000 |
commit | 81e5ff7ae2f69ac6873bfbdcdaddf0fabd653d15 (patch) | |
tree | cee5176e8aa763c0c3768ff09e26ef0f3cab1d3e /libavformat/vorbiscomment.h | |
parent | da7548585e1ed0fdb1c337c2f07ab313c99122a5 (diff) | |
download | ffmpeg-81e5ff7ae2f69ac6873bfbdcdaddf0fabd653d15.tar.gz |
vorbiscomment: change ff_vorbiscomment_write to take an AVMetadata**
patch by Anton Khirnov anton _at_ khirnov _dot_ net
Originally committed as revision 25473 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vorbiscomment.h')
-rw-r--r-- | libavformat/vorbiscomment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vorbiscomment.h b/libavformat/vorbiscomment.h index fe989a0439..3dfe9d226b 100644 --- a/libavformat/vorbiscomment.h +++ b/libavformat/vorbiscomment.h @@ -49,7 +49,7 @@ int ff_vorbiscomment_length(AVMetadata *m, const char *vendor_string, * @param vendor_string The vendor string to write. * @param count The number of tags in m because m->count is "not allowed" */ -int ff_vorbiscomment_write(uint8_t **p, AVMetadata *m, +int ff_vorbiscomment_write(uint8_t **p, AVMetadata **m, const char *vendor_string, const unsigned count); extern const AVMetadataConv ff_vorbiscomment_metadata_conv[]; |