aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/version.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-01-24 20:45:18 -0300
committerJames Almer <jamrial@gmail.com>2021-01-25 19:31:04 -0300
commit56709ca8aaffed529b62b2afa4288325d64dae57 (patch)
treeb086c1d2b87a6dc49651808a64be26b1dc8281a9 /libavcodec/version.h
parentc3f3b562c92ed8422f2db085f7d2a4a618e1e2d4 (diff)
downloadffmpeg-56709ca8aaffed529b62b2afa4288325d64dae57.tar.gz
avcodec: deprecate AVCodecContext.debug_mv
It's been unused for almost three years now. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r--libavcodec/version.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h
index c0ce9f1865..866932cb84 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -28,7 +28,7 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 58
-#define LIBAVCODEC_VERSION_MINOR 118
+#define LIBAVCODEC_VERSION_MINOR 119
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
@@ -147,5 +147,8 @@
#ifndef FF_API_THREAD_SAFE_CALLBACKS
#define FF_API_THREAD_SAFE_CALLBACKS (LIBAVCODEC_VERSION_MAJOR < 60)
#endif
+#ifndef FF_API_DEBUG_MV
+#define FF_API_DEBUG_MV (LIBAVCODEC_VERSION_MAJOR < 60)
+#endif
#endif /* AVCODEC_VERSION_H */