aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/version.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-12-30 13:49:12 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-07 00:31:49 +0100
commita10f1aec1fe59ff3aee3fb93be44142ba33a5c1d (patch)
tree3fa16a9228a303912aaf20197a640cbec27f773d /libavutil/version.h
parente6469e68cc06f0a9a6842f250af5e1f9b97876ca (diff)
downloadffmpeg-a10f1aec1fe59ff3aee3fb93be44142ba33a5c1d.tar.gz
avutil/fifo: Deprecate old FIFO API
Users should switch to the superior AVFifo API. Unfortunately AVFifoBuffer fields cannot be marked as deprecated because it would trigger a warning wherever fifo.h is #included, due to inlined av_fifo_peek2().
Diffstat (limited to 'libavutil/version.h')
-rw-r--r--libavutil/version.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h
index f961077849..a9c9bc6c82 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -79,7 +79,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 57
-#define LIBAVUTIL_VERSION_MINOR 20
+#define LIBAVUTIL_VERSION_MINOR 21
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
@@ -110,6 +110,7 @@
#define FF_API_COLORSPACE_NAME (LIBAVUTIL_VERSION_MAJOR < 58)
#define FF_API_AV_MALLOCZ_ARRAY (LIBAVUTIL_VERSION_MAJOR < 58)
#define FF_API_FIFO_PEEK2 (LIBAVUTIL_VERSION_MAJOR < 58)
+#define FF_API_FIFO_OLD_API (LIBAVUTIL_VERSION_MAJOR < 58)
/**
* @}