diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-23 20:21:31 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-23 20:21:31 +0000 |
commit | b76ee469c75a79a0648bee7208f75544f3add171 (patch) | |
tree | 44bc41d70f0d4f3fd3ba0ccf210047745a10a61b /postproc | |
parent | 27161c06306bd094b51cd40babde6ee7db9ec76e (diff) | |
download | ffmpeg-streaming-b76ee469c75a79a0648bee7208f75544f3add171.zip ffmpeg-streaming-b76ee469c75a79a0648bee7208f75544f3add171.tar.gz |
update
Originally committed as revision 10174 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/cs_test.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/postproc/cs_test.c b/postproc/cs_test.c index 337d9cb..9059dac 100644 --- a/postproc/cs_test.c +++ b/postproc/cs_test.c @@ -20,6 +20,7 @@ #include <stdlib.h> #include <inttypes.h> +#include "swscale.h" #include "rgb2rgb.h" #include "../cpudetect.h" @@ -27,6 +28,13 @@ #define srcByte 0x55 #define dstByte 0xBB +static int get_sws_cpuflags() +{ + return (gCpuCaps.hasMMX ? SWS_CPU_CAPS_MMX : 0) | + (gCpuCaps.hasMMX2 ? SWS_CPU_CAPS_MMX2 : 0) | + (gCpuCaps.has3DNow ? SWS_CPU_CAPS_3DNOW : 0); +} + main(int argc, char **argv) { int i, funcNum; @@ -42,6 +50,8 @@ main(int argc, char **argv) printf("testing mmx\n"); } + sws_rgb2rgb_init(get_sws_cpuflags()); + for(funcNum=0; funcNum<100; funcNum++){ int width; int failed=0; |