diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-22 13:25:19 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-16 20:24:56 +0200 |
commit | dc59ec5e79d813228e3dfbc8942a5fe424b399a0 (patch) | |
tree | 140dace29d599a0478455f7394de015bbb7a9939 /libavutil/avutil.h | |
parent | 7e83e1c511baf0d02f3af75b6180d6af4d50aa99 (diff) | |
download | ffmpeg-dc59ec5e79d813228e3dfbc8942a5fe424b399a0.tar.gz |
AVOptions: add av_opt_find() as a replacement for av_find_opt.
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 0299bdf797..21df460c1f 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -60,6 +60,9 @@ #ifndef FF_API_GET_BITS_PER_SAMPLE_FMT #define FF_API_GET_BITS_PER_SAMPLE_FMT (LIBAVUTIL_VERSION_MAJOR < 52) #endif +#ifndef FF_API_FIND_OPT +#define FF_API_FIND_OPT (LIBAVUTIL_VERSION_MAJOR < 52) +#endif /** * Return the LIBAVUTIL_VERSION_INT constant. |