diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-07-16 09:53:40 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-17 06:58:29 +0200 |
commit | 62709956677d648cbf340dccd4549fa62142cb7e (patch) | |
tree | 43c040c908ab312edd8bd11422a65626946f90b7 | |
parent | 412b4367c5b93586b42ea95a90d7c2f9f3e4b710 (diff) | |
download | ffmpeg-62709956677d648cbf340dccd4549fa62142cb7e.tar.gz |
wav: remove a use of deprecated AV_METADATA_ macro
-rw-r--r-- | libavformat/wav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 5b9f6e4480..1f12ad109a 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -363,7 +363,7 @@ static int wav_parse_bext_tag(AVFormatContext *s, int64_t size) coding_history[size] = 0; if ((ret = av_dict_set(&s->metadata, "coding_history", coding_history, - AV_METADATA_DONT_STRDUP_VAL)) < 0) + AV_DICT_DONT_STRDUP_VAL)) < 0) return ret; } |