diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:16:07 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:47:05 +0200 |
commit | 6dc7d80de7236d04a6ee30f0e4cd03f055893bcf (patch) | |
tree | 77a8c7064de540bb0d7828410b727e74749a604f /libavformat/mp3enc.c | |
parent | b92c5452822f9f58d33daf933a0d2a5516866bc1 (diff) | |
download | ffmpeg-6dc7d80de7236d04a6ee30f0e4cd03f055893bcf.tar.gz |
avio: avio_ prefix for url_close_dyn_buf
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r-- | libavformat/mp3enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c index 2cbd5e224a..d46e67b70c 100644 --- a/libavformat/mp3enc.c +++ b/libavformat/mp3enc.c @@ -115,7 +115,7 @@ static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2 put(dyn_buf, str1); if (str2) put(dyn_buf, str2); - len = url_close_dyn_buf(dyn_buf, &pb); + len = avio_close_dyn_buf(dyn_buf, &pb); avio_wb32(s->pb, tag); id3v2_put_size(s, len); |