| 630 | } |
| 631 | |
| 632 | void assert_avoptions(AVDictionary *m) |
| 633 | { |
| 634 | AVDictionaryEntry *t; |
| 635 | if ((t = av_dict_get(m, "", NULL, AV_DICT_IGNORE_SUFFIX))) { |
| 636 | av_log(NULL, AV_LOG_FATAL, "Option %s not found.\n", t->key); |
| 637 | exit_program(1); |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | static void abort_codec_experimental(AVCodec *c, int encoder) |
| 642 | { |
no test coverage detected