]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/dict.c
Merge commit '801c39e1e3058fc4ba822bfb5d8612d777111e32'
[ffmpeg] / libavutil / dict.c
index 0bf54b5b93ccffe3c007bf50b05beba0aeaeec6b..003afd74fc746fcb991352feb3265124c1e5c54a 100644 (file)
@@ -35,7 +35,7 @@ int av_dict_count(const AVDictionary *m)
     return m ? m->count : 0;
 }
 
-AVDictionaryEntry *av_dict_get(AVDictionary *m, const char *key,
+AVDictionaryEntry *av_dict_get(const AVDictionary *m, const char *key,
                                const AVDictionaryEntry *prev, int flags)
 {
     unsigned int i, j;
@@ -181,7 +181,7 @@ void av_dict_free(AVDictionary **pm)
     av_freep(pm);
 }
 
-void av_dict_copy(AVDictionary **dst, AVDictionary *src, int flags)
+void av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
 {
     AVDictionaryEntry *t = NULL;