From 118948cbac6b67edbcd4861395fe234afe89db37 Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 22 Jan 2024 10:43:49 -0300 Subject: [PATCH] avcodec/version_major: postpone some deprecations until the next bump They are either too recent, or can't be removed yet. Signed-off-by: James Almer --- libavcodec/version_major.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/version_major.h b/libavcodec/version_major.h index 89bad7ee6c..bdf3dc494b 100644 --- a/libavcodec/version_major.h +++ b/libavcodec/version_major.h @@ -37,10 +37,10 @@ * at once through the bump. This improves the git bisect-ability of the change. */ -#define FF_API_INIT_PACKET (LIBAVCODEC_VERSION_MAJOR < 61) -#define FF_API_SUBFRAMES (LIBAVCODEC_VERSION_MAJOR < 61) -#define FF_API_TICKS_PER_FRAME (LIBAVCODEC_VERSION_MAJOR < 61) -#define FF_API_DROPCHANGED (LIBAVCODEC_VERSION_MAJOR < 61) +#define FF_API_INIT_PACKET (LIBAVCODEC_VERSION_MAJOR < 62) +#define FF_API_SUBFRAMES (LIBAVCODEC_VERSION_MAJOR < 62) +#define FF_API_TICKS_PER_FRAME (LIBAVCODEC_VERSION_MAJOR < 62) +#define FF_API_DROPCHANGED (LIBAVCODEC_VERSION_MAJOR < 62) #define FF_API_AVFFT (LIBAVCODEC_VERSION_MAJOR < 62) #define FF_API_FF_PROFILE_LEVEL (LIBAVCODEC_VERSION_MAJOR < 62)