From d4574a9b640009e1ec9356e62c6b512e2e63e11b Mon Sep 17 00:00:00 2001 From: James Almer Date: Mon, 22 Jan 2024 10:44:08 -0300 Subject: [PATCH] avformat/version_major: postpone some deprecations until the next bump They are either too recent, or are not trivial to remove. Signed-off-by: James Almer --- libavformat/version_major.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/version_major.h b/libavformat/version_major.h index 333b9bd836..17a487987f 100644 --- a/libavformat/version_major.h +++ b/libavformat/version_major.h @@ -41,10 +41,10 @@ * at once through the bump. This improves the git bisect-ability of the change. * */ -#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 61) -#define FF_API_LAVF_SHORTEST (LIBAVFORMAT_VERSION_MAJOR < 61) -#define FF_API_ALLOW_FLUSH (LIBAVFORMAT_VERSION_MAJOR < 61) -#define FF_API_AVSTREAM_SIDE_DATA (LIBAVFORMAT_VERSION_MAJOR < 61) +#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 62) +#define FF_API_LAVF_SHORTEST (LIBAVFORMAT_VERSION_MAJOR < 62) +#define FF_API_ALLOW_FLUSH (LIBAVFORMAT_VERSION_MAJOR < 62) +#define FF_API_AVSTREAM_SIDE_DATA (LIBAVFORMAT_VERSION_MAJOR < 62) #define FF_API_GET_DUR_ESTIMATE_METHOD (LIBAVFORMAT_VERSION_MAJOR < 62)