[FFmpeg-cvslog] libswscale: remove unnecessary direct #if LIBSWSCALE_VERSION_MAJOR
Janne Grunau
git at videolan.org
Sat Nov 17 13:12:52 CET 2012
ffmpeg | branch: master | Janne Grunau <janne-libav at jannau.net> | Fri Nov 16 15:00:49 2012 +0100| [80716953c22762a5ebeb8f933f5ad3dc493cf2db] | committer: Janne Grunau
libswscale: remove unnecessary direct #if LIBSWSCALE_VERSION_MAJOR
SWS_CPU_CAPS are deprecated and slated to removed with libswscale major
version 3. No need to provide a SWS_CPU_CAPS_MMX2 as backward
compatibility define under the same explicit condition.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=80716953c22762a5ebeb8f933f5ad3dc493cf2db
---
libswscale/swscale.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index 598946d..8ba09e6 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -85,9 +85,7 @@ const char *swscale_license(void);
*/
#define SWS_CPU_CAPS_MMX 0x80000000
#define SWS_CPU_CAPS_MMXEXT 0x20000000
-#if LIBSWSCALE_VERSION_MAJOR < 3
#define SWS_CPU_CAPS_MMX2 0x20000000
-#endif
#define SWS_CPU_CAPS_3DNOW 0x40000000
#define SWS_CPU_CAPS_ALTIVEC 0x10000000
#define SWS_CPU_CAPS_BFIN 0x01000000
More information about the ffmpeg-cvslog
mailing list