diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-10-16 13:20:41 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-16 13:20:41 +0000 |
commit | ad7768f4c47f4012cd306ee0098afd98fdff4461 (patch) | |
tree | 4872ef0fa45db203cf186cc346060291fa30fa60 /libavformat/oggparsevorbis.c | |
parent | d60a9f52eb42dc76dea9996c8ba3567ae98a9a04 (diff) | |
download | ffmpeg-ad7768f4c47f4012cd306ee0098afd98fdff4461.tar.gz |
add ff_ prefix to metadata_conv()
patch by Anton Khirnov anton _at_ khirnov _dot_ net
Originally committed as revision 25505 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index ab6c6c74d8..cdb0266eee 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -138,7 +138,7 @@ ff_vorbis_comment(AVFormatContext * as, AVMetadata **m, const uint8_t *buf, int av_log(as, AV_LOG_INFO, "truncated comment header, %i comments not found\n", n); - metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv); + ff_metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv); return 0; } |