diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-03 19:49:12 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-12 16:51:16 +0200 |
commit | 641c7afe3c17334b81e3e2eef88f1751eb68f89f (patch) | |
tree | 27ff55b88d052b7947b40a40834f80f0c2c99083 /libavutil/log.h | |
parent | 1bca8f4bc596d286dc50e572f5f8d52e4fc3a8dc (diff) | |
download | ffmpeg-641c7afe3c17334b81e3e2eef88f1751eb68f89f.tar.gz |
AVOptions: add new API for enumerating children.
This will allow the caller to enumerate child contexts in a generic way
and since the API is recursive, it also allows for deeper nesting (e.g.
AVFormatContext->AVIOContext->URLContext)
This will also allow the new setting/reading API to transparently apply
to children contexts.
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index c1d9a6c393..18d0ddf0a8 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -73,11 +73,19 @@ typedef struct { int parent_log_context_offset; /** - * A function for extended searching, e.g. in possible - * children objects. + * Return next AVOptions-enabled child or NULL */ - const struct AVOption* (*opt_find)(void *obj, const char *name, const char *unit, - int opt_flags, int search_flags); + void* (*child_next)(void *obj, void *prev); + + /** + * Return an AVClass corresponding to next potential + * AVOptions-enabled child. + * + * The difference between child_next and this is that + * child_next iterates over _already existing_ objects, while + * child_class_next iterates over _all possible_ children. + */ + const struct AVClass* (*child_class_next)(const struct AVClass *prev); } AVClass; /* av_log API */ |