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

Function find_opt

libavformat/utils.c:626–634  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624}
625
626static const AVOption* find_opt(void *obj, const char *name, size_t len)
627{
628 char decoded_name[128];
629
630 if (ff_urldecode_len(decoded_name, sizeof(decoded_name), name, len, 1) < 0)
631 return NULL;
632
633 return av_opt_find(obj, decoded_name, NULL, 0, 0);
634}
635
636int ff_parse_opts_from_query_string(void *obj, const char *str, int allow_unknown)
637{

Callers 1

Calls 2

ff_urldecode_lenFunction · 0.85
av_opt_findFunction · 0.85

Tested by

no test coverage detected