comparison avcodec.h @ 9342:7f594601d5e9 libavcodec

Rename FF_MM_MMXEXT to FF_MM_MMX2, for both clarity and consistency with libswscale.
author stefano
date Sat, 04 Apr 2009 13:20:53 +0000
parents 62940d73e9fe
children 4b801f9ae493
comparison
equal deleted inserted replaced
9341:06532529c428 9342:7f594601d5e9
28 28
29 #include <errno.h> 29 #include <errno.h>
30 #include "libavutil/avutil.h" 30 #include "libavutil/avutil.h"
31 31
32 #define LIBAVCODEC_VERSION_MAJOR 52 32 #define LIBAVCODEC_VERSION_MAJOR 52
33 #define LIBAVCODEC_VERSION_MINOR 23 33 #define LIBAVCODEC_VERSION_MINOR 24
34 #define LIBAVCODEC_VERSION_MICRO 0 34 #define LIBAVCODEC_VERSION_MICRO 0
35 35
36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ 36 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
37 LIBAVCODEC_VERSION_MINOR, \ 37 LIBAVCODEC_VERSION_MINOR, \
38 LIBAVCODEC_VERSION_MICRO) 38 LIBAVCODEC_VERSION_MICRO)
1454 unsigned dsp_mask; 1454 unsigned dsp_mask;
1455 #define FF_MM_FORCE 0x80000000 /* Force usage of selected flags (OR) */ 1455 #define FF_MM_FORCE 0x80000000 /* Force usage of selected flags (OR) */
1456 /* lower 16 bits - CPU features */ 1456 /* lower 16 bits - CPU features */
1457 #define FF_MM_MMX 0x0001 ///< standard MMX 1457 #define FF_MM_MMX 0x0001 ///< standard MMX
1458 #define FF_MM_3DNOW 0x0004 ///< AMD 3DNOW 1458 #define FF_MM_3DNOW 0x0004 ///< AMD 3DNOW
1459 #if LIBAVCODEC_VERSION_MAJOR < 53
1459 #define FF_MM_MMXEXT 0x0002 ///< SSE integer functions or AMD MMX ext 1460 #define FF_MM_MMXEXT 0x0002 ///< SSE integer functions or AMD MMX ext
1461 #endif
1462 #define FF_MM_MMX2 0x0002 ///< SSE integer functions or AMD MMX ext
1460 #define FF_MM_SSE 0x0008 ///< SSE functions 1463 #define FF_MM_SSE 0x0008 ///< SSE functions
1461 #define FF_MM_SSE2 0x0010 ///< PIV SSE2 functions 1464 #define FF_MM_SSE2 0x0010 ///< PIV SSE2 functions
1462 #define FF_MM_3DNOWEXT 0x0020 ///< AMD 3DNowExt 1465 #define FF_MM_3DNOWEXT 0x0020 ///< AMD 3DNowExt
1463 #define FF_MM_SSE3 0x0040 ///< Prescott SSE3 functions 1466 #define FF_MM_SSE3 0x0040 ///< Prescott SSE3 functions
1464 #define FF_MM_SSSE3 0x0080 ///< Conroe SSSE3 functions 1467 #define FF_MM_SSSE3 0x0080 ///< Conroe SSSE3 functions