diff options
author | Gildas Bazin <gbazi@altern.org> | 2005-06-28 22:46:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-06-28 22:46:36 +0000 |
commit | eba9ae3cfcfb924e2dd6e6c45838e73181bd1430 (patch) | |
tree | 8b76726c4a504880d78b894125cd36822c525fb8 /libavcodec/avcodec.h | |
parent | b4cad5371b72027627220e96b79ec0d65b2debe5 (diff) | |
download | ffmpeg-eba9ae3cfcfb924e2dd6e6c45838e73181bd1430.tar.gz |
IWMMXT configure support + runtime selection patch by (Gildas Bazin, gbazin : altern org)
Originally committed as revision 4409 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6f644f6493..c6ebbb190d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #define FFMPEG_VERSION_INT 0x000409 #define FFMPEG_VERSION "0.4.9-pre1" -#define LIBAVCODEC_BUILD 4756 +#define LIBAVCODEC_BUILD 4757 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1193,7 +1193,7 @@ typedef struct AVCodecContext { #define FF_IDCT_SIMPLEARM 10 #define FF_IDCT_H264 11 #define FF_IDCT_VP3 12 -#define FP_IDCT_IPP 13 +#define FF_IDCT_IPP 13 /** * slice count. @@ -1236,6 +1236,9 @@ typedef struct AVCodecContext { #define FF_MM_SSE2 0x0010 /* PIV SSE2 functions */ #define FF_MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */ #endif /* HAVE_MMX */ +#ifdef HAVE_IWMMXT +#define FF_MM_IWMMXT 0x0100 /* XScale IWMMXT */ +#endif /* HAVE_IWMMXT */ /** * bits per sample/pixel from the demuxer (needed for huffyuv). |