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/mp3.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/mp3.c')
-rw-r--r-- | libavformat/mp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 77b131d5d5..ceba2ce506 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -315,7 +315,7 @@ static int mp3_write_header(struct AVFormatContext *s) size_pos = url_ftell(s->pb); put_be32(s->pb, 0); - metadata_conv(&s->metadata, ff_id3v2_metadata_conv, NULL); + ff_metadata_conv(&s->metadata, ff_id3v2_metadata_conv, NULL); while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) { uint32_t tag = 0; |