AVOptions: add av_opt_find() as a replacement for av_find_opt.

This commit is contained in:
Anton Khirnov 2011-05-22 13:25:19 +02:00
parent 7e83e1c511
commit dc59ec5e79
6 changed files with 70 additions and 9 deletions

View file

@ -70,6 +70,13 @@ typedef struct {
* can be NULL of course
*/
int parent_log_context_offset;
/**
* A function for extended searching, e.g. in possible
* children objects.
*/
const struct AVOption* (*opt_find)(void *obj, const char *name, const char *unit,
int opt_flags, int search_flags);
} AVClass;
/* av_log API */