diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-06 00:04:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-06 00:04:03 +0000 |
commit | e778e50f63dcd48f3daad865fd25dc8020bcf405 (patch) | |
tree | 4c4816c44f5740f03344b807864f442fe3e54b26 /libavutil | |
parent | d593b4ed023be2394201514509a68712732bf5bb (diff) | |
download | ffmpeg-e778e50f63dcd48f3daad865fd25dc8020bcf405.tar.gz |
Sort AV_CPU_FLAG* by value.
Originally committed as revision 25047 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/cpu.h b/libavutil/cpu.h index edac328fa3..644df3e568 100644 --- a/libavutil/cpu.h +++ b/libavutil/cpu.h @@ -27,8 +27,8 @@ /* lower 16 bits - CPU features */ #define AV_CPU_FLAG_MMX 0x0001 ///< standard MMX -#define AV_CPU_FLAG_3DNOW 0x0004 ///< AMD 3DNOW #define AV_CPU_FLAG_MMX2 0x0002 ///< SSE integer functions or AMD MMX ext +#define AV_CPU_FLAG_3DNOW 0x0004 ///< AMD 3DNOW #define AV_CPU_FLAG_SSE 0x0008 ///< SSE functions #define AV_CPU_FLAG_SSE2 0x0010 ///< PIV SSE2 functions #define AV_CPU_FLAG_SSE2SLOW 0x40000000 ///< SSE2 supported, but usually not faster |