summaryrefslogtreecommitdiff
path: root/libavutil/dict.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-24 02:10:45 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-24 02:22:19 +0100
commit5182a2a235c3840e0ea0b5f3e352dc28646a11ed (patch)
treeead45b1e436c7ef0dff90c776c1e11dc39f90a45 /libavutil/dict.c
parent8294f5042d5c5a9b806c90f866514f5a321c70cf (diff)
avutil: remove FF_CONST_AVUTIL53, its no longer needed
version is 54 already Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/dict.c')
-rw-r--r--libavutil/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/dict.c b/libavutil/dict.c
index 65b330f57c..2983ea57a9 100644
--- a/libavutil/dict.c
+++ b/libavutil/dict.c
@@ -36,7 +36,7 @@ int av_dict_count(const AVDictionary *m)
return m ? m->count : 0;
}
-AVDictionaryEntry *av_dict_get(FF_CONST_AVUTIL53 AVDictionary *m, const char *key,
+AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key,
const AVDictionaryEntry *prev, int flags)
{
unsigned int i, j;
@@ -201,7 +201,7 @@ void av_dict_free(AVDictionary **pm)
av_freep(pm);
}
-void av_dict_copy(AVDictionary **dst, FF_CONST_AVUTIL53 AVDictionary *src, int flags)
+void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
{
AVDictionaryEntry *t = NULL;