fftools: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
committed by
Andreas Rheinhardt
parent
7b450bafd7
commit
f1907faab4
@@ -169,7 +169,7 @@ AVDictionary *strip_specifiers(const AVDictionary *dict)
|
||||
const AVDictionaryEntry *e = NULL;
|
||||
AVDictionary *ret = NULL;
|
||||
|
||||
while ((e = av_dict_get(dict, "", e, AV_DICT_IGNORE_SUFFIX))) {
|
||||
while ((e = av_dict_iterate(dict, e))) {
|
||||
char *p = strchr(e->key, ':');
|
||||
|
||||
if (p)
|
||||
|
||||
Reference in New Issue
Block a user