1
0
mirror of https://git.ffmpeg.org/ffmpeg.git synced 2025-04-19 02:04:19 +03:00

libpostproc: update APIChanges and version for "deprecate the AMD 3DNow"

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Sean McGovern 2025-04-15 13:31:08 -04:00 committed by Michael Niedermayer
parent 6995372ea2
commit afe6c1238a
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64
4 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,9 @@ The last version increases of all libraries were on 2025-03-28
API changes, most recent first:
2025-04-16 - c818c67991 - libpostproc 59.1.100 - postprocess.h
Deprecate PP_CPU_CAPS_3DNOW.
2025-04-07 - 19e9a203b7 - lavu 60.01.100 - dict.h
Add AV_DICT_DEDUP.

View File

@ -87,7 +87,7 @@ void pp_free_context(pp_context *ppContext);
#define PP_CPU_CAPS_MMX 0x80000000
#define PP_CPU_CAPS_MMX2 0x20000000
#if PP_AMD_3DNOW
#if FF_API_PP_AMD_3DNOW
#define PP_CPU_CAPS_3DNOW 0x40000000
#endif
#define PP_CPU_CAPS_ALTIVEC 0x10000000

View File

@ -30,7 +30,7 @@
#include "version_major.h"
#define LIBPOSTPROC_VERSION_MINOR 0
#define LIBPOSTPROC_VERSION_MINOR 1
#define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \

View File

@ -28,4 +28,6 @@
#define LIBPOSTPROC_VERSION_MAJOR 59
#define FF_API_PP_AMD_3DNOW (LIBPOSTPROC_VERSION_MAJOR < 60)
#endif /* POSTPROC_VERSION_MAJOR_H */