| 1594 | } |
| 1595 | |
| 1596 | void 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 | |
| 1605 | int check_avoptions(AVDictionary *m) |
| 1606 | { |
no test coverage detected