summaryrefslogtreecommitdiff
path: root/postproc/rgb2rgb.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2001-10-29 18:07:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2001-10-29 18:07:40 +0000
commite697a1413b9f1dab58efc3fdbb1cccc0ff3a0fbd (patch)
tree3367c08178440414f6be13fb6bfa79f2e026a486 /postproc/rgb2rgb.c
parent17f715fa64d9663f65e3247d876ae258deb369a3 (diff)
cant compile on non x86 bugfix
Originally committed as revision 2536 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.c')
-rw-r--r--postproc/rgb2rgb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.c b/postproc/rgb2rgb.c
index 60d3d13e12..02f6ba178b 100644
--- a/postproc/rgb2rgb.c
+++ b/postproc/rgb2rgb.c
@@ -1,7 +1,9 @@
#include <inttypes.h>
#include "../config.h"
#include "rgb2rgb.h"
+#ifdef HAVE_MMX
#include "mmx.h"
+#endif
#include "../mmx_defs.h"
void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)