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

Function check_avoptions

fftools/cmdutils.c:1605–1614  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1603}
1604
1605int 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
1616void dump_dictionary(void *ctx, const AVDictionary *m,
1617 const char *name, const char *indent,

Callers 5

stream_component_openFunction · 0.85
read_threadFunction · 0.85
dec_openFunction · 0.85
ost_addFunction · 0.85
ifile_openFunction · 0.85

Calls 2

av_dict_iterateFunction · 0.85
av_logFunction · 0.85

Tested by

no test coverage detected