From c9f99fef4fbbcaf7bb99bc0a3e9603e781e163ca Mon Sep 17 00:00:00 2001 From: Dominik Mierzejewski Date: Sat, 23 Nov 2002 10:58:14 +0000 Subject: [PATCH] warning patch by (Dominik Mierzejewski ) Originally committed as revision 8255 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc --- postproc/postprocess_template.c | 5 ++++- postproc/swscale_template.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c index 3289bb18f8..a75c9b4dc8 100644 --- a/postproc/postprocess_template.c +++ b/postproc/postprocess_template.c @@ -2658,7 +2658,10 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int int black=0, white=255; // blackest black and whitest white in the picture int QPCorrecture= 256*256; - int copyAhead, i; + int copyAhead; +#ifdef HAVE_MMX + int i; +#endif //FIXME remove uint64_t * const yHistogram= c.yHistogram; diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index 0bc0457717..1f64218eaa 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -1256,7 +1256,9 @@ YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB2_C, YSCALE_YUV_2_PACKED2_C) static inline void RENAME(yuv2packed1)(SwsContext *c, uint16_t *buf0, uint16_t *uvbuf0, uint16_t *uvbuf1, uint8_t *dest, int dstW, int uvalpha, int dstFormat, int flags, int y) { +#ifdef HAVE_MMX int uvalpha1=uvalpha^4095; +#endif const int yalpha1=0; int i;