| 1603 | } |
| 1604 | |
| 1605 | int check_avoptions(AVDictionary *m) |
| 1606 | { |
| 1607 | const AVDictionaryEntry *t = av_dict_iterate(m, NULL); |
| 1608 | if (t) { |
| 1609 | av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key); |
| 1610 | return AVERROR_OPTION_NOT_FOUND; |
| 1611 | } |
| 1612 | |
| 1613 | return 0; |
| 1614 | } |
| 1615 | |
| 1616 | void dump_dictionary(void *ctx, const AVDictionary *m, |
| 1617 | const char *name, const char *indent, |
no test coverage detected