MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / remove_avoptions

Function remove_avoptions

fftools/cmdutils.c:1596–1603  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1594}
1595
1596void remove_avoptions(AVDictionary **a, AVDictionary *b)
1597{
1598 const AVDictionaryEntry *t = NULL;
1599
1600 while ((t = av_dict_iterate(b, t))) {
1601 av_dict_set(a, t->key, NULL, AV_DICT_MATCH_CASE);
1602 }
1603}
1604
1605int check_avoptions(AVDictionary *m)
1606{

Callers 2

read_threadFunction · 0.85
ifile_openFunction · 0.85

Calls 2

av_dict_iterateFunction · 0.85
av_dict_setFunction · 0.85

Tested by

no test coverage detected