[FFmpeg-cvslog] libpostproc: update APIChanges and version for "deprecate the AMD 3DNow"

Sean McGovern git at videolan.org
Wed Apr 16 14:59:55 EEST 2025


ffmpeg | branch: master | Sean McGovern <gseanmcg at gmail.com> | Tue Apr 15 13:31:08 2025 -0400| [afe6c1238ac4119ec9c9dedc42220c4595f6a33c] | committer: Michael Niedermayer

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

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=afe6c1238ac4119ec9c9dedc42220c4595f6a33c
---

 doc/APIchanges              | 3 +++
 libpostproc/postprocess.h   | 2 +-
 libpostproc/version.h       | 2 +-
 libpostproc/version_major.h | 2 ++
 4 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/doc/APIchanges b/doc/APIchanges
index 65bf5a9419..22aa6fa5c7 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -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.
 
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h
index 7010c2b51b..d2adb6ccad 100644
--- a/libpostproc/postprocess.h
+++ b/libpostproc/postprocess.h
@@ -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
diff --git a/libpostproc/version.h b/libpostproc/version.h
index 5a272630bf..111f075536 100644
--- a/libpostproc/version.h
+++ b/libpostproc/version.h
@@ -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, \
diff --git a/libpostproc/version_major.h b/libpostproc/version_major.h
index b40b251a73..b9946912db 100644
--- a/libpostproc/version_major.h
+++ b/libpostproc/version_major.h
@@ -28,4 +28,6 @@
 
 #define LIBPOSTPROC_VERSION_MAJOR  59
 
+#define FF_API_PP_AMD_3DNOW      (LIBPOSTPROC_VERSION_MAJOR < 60)
+
 #endif /* POSTPROC_VERSION_MAJOR_H */



More information about the ffmpeg-cvslog mailing list