avformat/metadata: use av_dict_iterate

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Marvin Scholz 2022-11-26 15:46:35 +01:00 committed by Andreas Rheinhardt
parent 562d19b503
commit b7c577cec7
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ void ff_metadata_conv(AVDictionary **pm, const AVMetadataConv *d_conv,
/* TODO: use binary search to look up the two conversion tables
if the tables are getting big enough that it would matter speed wise */
const AVMetadataConv *sc, *dc;
AVDictionaryEntry *mtag = NULL;
const AVDictionaryEntry *mtag = NULL;
AVDictionary *dst = NULL;
const char *key;
if (d_conv == s_conv || !pm)
return;
while ((mtag = av_dict_get(*pm, "", mtag, AV_DICT_IGNORE_SUFFIX))) {
while ((mtag = av_dict_iterate(*pm, mtag))) {
key = mtag->key;
if (s_conv)
for (sc=s_conv; sc->native; sc++)