diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-05-27 15:21:30 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-06-10 12:36:42 +0200 |
commit | 1b4a98b0296c7aa6d294ea73ec567d38cf5c5196 (patch) | |
tree | 3d96211f10f2637da14b83fc18feb62964b226da /libavutil/version.h | |
parent | 202e06870eb4bbc4636aff5f461c1a0654ec2435 (diff) | |
download | ffmpeg-1b4a98b0296c7aa6d294ea73ec567d38cf5c5196.tar.gz |
lavu/opt: add a more general child class iteration API
Use opaque iteration state instead of the previous child class. This
mirrors similar changes done in lavf/lavc.
Deprecate the av_opt_child_class_next() API.
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index 652e1e90e1..c059c2e6e2 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -79,7 +79,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 56 -#define LIBAVUTIL_VERSION_MINOR 52 +#define LIBAVUTIL_VERSION_MINOR 53 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ @@ -129,7 +129,9 @@ #ifndef FF_API_PSEUDOPAL #define FF_API_PSEUDOPAL (LIBAVUTIL_VERSION_MAJOR < 57) #endif - +#ifndef FF_API_CHILD_CLASS_NEXT +#define FF_API_CHILD_CLASS_NEXT (LIBAVUTIL_VERSION_MAJOR < 57) +#endif /** * @} |