AV_OPT_SEARCH_FAKE_OBJ

The obj passed to av_opt_find() is fake -- only a double pointer to AVClass instead of a required pointer to a struct containing AVClass. This is useful for searching for options without needing to allocate the corresponding object.

extern (C) @nogc nothrow
enum AV_OPT_SEARCH_FAKE_OBJ = 1 << 1;

Meta