diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 01:25:52 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:31 +0100 |
commit | b04ee900435bbfcc03d1b480a8f0355863fbc65d (patch) | |
tree | 9bd3951fcdc8119e190f92355a1e001998441108 /libavformat | |
parent | 63b796b0dd06fb35418d98be149fbac6bd75da09 (diff) | |
download | ffmpeg-b04ee900435bbfcc03d1b480a8f0355863fbc65d.tar.gz |
Rename remaining av_metadata_set2 to av_dict_set.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/bintext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/bintext.c b/libavformat/bintext.c index 7f99d013a8..ea0c553400 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -80,7 +80,7 @@ static int next_tag_read(AVFormatContext *avctx, uint64_t *fsize) return -1; \ if (avio_read(pb, buf, size) == size && *buf) { \ buf[len] = 0; \ - av_metadata_set2(&avctx->metadata, name, buf, 0); \ + av_dict_set(&avctx->metadata, name, buf, 0); \ } GET_EFI2_META("filename", 12) |