diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-23 07:11:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-03 20:52:21 +0200 |
commit | c11fb8288d282da430f598bb029deccbacb31591 (patch) | |
tree | 22a1048ae72d776fd0681f063f391208d80171f7 /libavutil/avutil.h | |
parent | 5938e02185430ca711106aaec9b5622dbf588af3 (diff) | |
download | ffmpeg-c11fb8288d282da430f598bb029deccbacb31591.tar.gz |
AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().
It allows to search for options only with AVClass, without allocating
the corresponding context.
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 484659a58b..24594107bc 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -40,7 +40,7 @@ #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) #define LIBAVUTIL_VERSION_MAJOR 51 -#define LIBAVUTIL_VERSION_MINOR 9 +#define LIBAVUTIL_VERSION_MINOR 10 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |