summaryrefslogtreecommitdiff
path: root/postproc/postprocess_template.c
diff options
context:
space:
mode:
authorDominik Mierzejewski <dominik@rangers.eu.org>2002-11-23 10:58:14 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-11-23 10:58:14 +0000
commitc9f99fef4fbbcaf7bb99bc0a3e9603e781e163ca (patch)
tree8a1357a80a2bb7fc06aafa3b9b270991058d800d /postproc/postprocess_template.c
parentf8fd15e03f8a50062dc0b1e6e8e3189a82dc14fc (diff)
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
Originally committed as revision 8255 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess_template.c')
-rw-r--r--postproc/postprocess_template.c5
1 files changed, 4 insertions, 1 deletions
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;