av_opt: add av_opt_ptr() to return a pointer to a field of a object based on

an AVClass

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2011-12-03 21:16:46 +01:00
parent 618fb9cc06
commit dff97be808
2 changed files with 19 additions and 0 deletions

View File

@@ -806,6 +806,14 @@ const AVClass *av_opt_child_class_next(const AVClass *parent, const AVClass *pre
return NULL;
}
void *av_opt_ptr(const AVClass *class, void *obj, const char *name)
{
AVOption *opt= av_opt_find2(&class, name, NULL, 0, AV_OPT_SEARCH_FAKE_OBJ, NULL);
if(!opt)
return NULL;
return (uint8_t*)obj + opt->offset;
}
#ifdef TEST
#undef printf