diff options
author | James Almer <jamrial@gmail.com> | 2014-09-14 21:15:33 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2014-10-05 17:09:53 -0300 |
commit | 71718de814471b7ca871f600cd9368deb56b3972 (patch) | |
tree | fda46500bd3e425ff36915cfbc700a9b7ffa46ab /libavutil/opt.h | |
parent | 1abb77285cff29eb00b766bdaa68fb4b757455aa (diff) | |
download | ffmpeg-71718de814471b7ca871f600cd9368deb56b3972.tar.gz |
avutil: remove obsolete FF_API_FIND_OPT cruft
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r-- | libavutil/opt.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index 4905ee30c0..1b72a105c9 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -378,25 +378,6 @@ typedef struct AVOptionRanges { } AVOptionRanges; -#if FF_API_FIND_OPT -/** - * Look for an option in obj. Look only for the options which - * have the flags set as specified in mask and flags (that is, - * for which it is the case that (opt->flags & mask) == flags). - * - * @param[in] obj a pointer to a struct whose first element is a - * pointer to an AVClass - * @param[in] name the name of the option to look for - * @param[in] unit the unit of the option to look for, or any if NULL - * @return a pointer to the option found, or NULL if no option - * has been found - * - * @deprecated use av_opt_find. - */ -attribute_deprecated -const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags); -#endif - #if FF_API_OLD_AVOPTIONS /** * Set the field of obj with the given name to value. |