diff options
author | James Almer <jamrial@gmail.com> | 2023-01-12 08:55:32 -0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-02-09 15:35:14 +0100 |
commit | c52b1c283e30c0985cf062248eb1dd8fb0485966 (patch) | |
tree | 10198943f2db0ad17a7ca2bb416de74164c445d2 | |
parent | 1135ad0f26305b534fc7ad7239a942c35b2165c6 (diff) | |
download | ffmpeg-c52b1c283e30c0985cf062248eb1dd8fb0485966.tar.gz |
avformat/version: postpone the remaining API deprecations
They are either too recent, or still need work like FF_API_COMPUTE_PKT_FIELDS2.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavformat/version_major.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/version_major.h b/libavformat/version_major.h index 1db8e7600e..b11f811383 100644 --- a/libavformat/version_major.h +++ b/libavformat/version_major.h @@ -41,9 +41,9 @@ * at once through the bump. This improves the git bisect-ability of the change. * */ -#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 60) -#define FF_API_GET_END_PTS (LIBAVFORMAT_VERSION_MAJOR < 60) -#define FF_API_AVIODIRCONTEXT (LIBAVFORMAT_VERSION_MAJOR < 60) +#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 61) +#define FF_API_GET_END_PTS (LIBAVFORMAT_VERSION_MAJOR < 61) +#define FF_API_AVIODIRCONTEXT (LIBAVFORMAT_VERSION_MAJOR < 61) #define FF_API_R_FRAME_RATE 1 |