Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-07-16 11:53:40 +0400
committerAnton Khirnov <anton@khirnov.net>2011-07-17 08:58:29 +0400
commit62709956677d648cbf340dccd4549fa62142cb7e (patch)
tree43c040c908ab312edd8bd11422a65626946f90b7 /libavformat/wav.c
parent412b4367c5b93586b42ea95a90d7c2f9f3e4b710 (diff)
wav: remove a use of deprecated AV_METADATA_ macro
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c2
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;
}