From 97df2f91624249b8a93c1d8ba7b4857150200628 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 16 Jan 2009 09:32:54 +0000 Subject: More #ifdef HAVE_MMX etc. missed by earlier search. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28327 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_filmdint.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libmpcodecs/vf_filmdint.c') diff --git a/libmpcodecs/vf_filmdint.c b/libmpcodecs/vf_filmdint.c index 2658153c27..4313d50692 100644 --- a/libmpcodecs/vf_filmdint.c +++ b/libmpcodecs/vf_filmdint.c @@ -433,7 +433,7 @@ block_metrics_3dnow(unsigned char *a, unsigned char *b, int as, int bs, int lines, struct vf_priv_s *p, struct frame_stats *s) { struct metrics tm; -#ifndef HAVE_3DNOW +#if !HAVE_3DNOW mp_msg(MSGT_VFILTER, MSGL_FATAL, "block_metrics_3dnow: internal error\n"); #else static const unsigned long long ones = 0x0101010101010101ull; @@ -462,7 +462,7 @@ block_metrics_mmx2(unsigned char *a, unsigned char *b, int as, int bs, int lines, struct vf_priv_s *p, struct frame_stats *s) { struct metrics tm; -#ifndef HAVE_MMX +#if !HAVE_MMX mp_msg(MSGT_VFILTER, MSGL_FATAL, "block_metrics_mmx2: internal error\n"); #else static const unsigned long long ones = 0x0101010101010101ull; @@ -591,7 +591,7 @@ static inline int dint_copy_line_mmx2(unsigned char *dst, unsigned char *a, long bos, long cos, int ds, int ss, int w, int t) { -#ifndef HAVE_MMX +#if !HAVE_MMX mp_msg(MSGT_VFILTER, MSGL_FATAL, "dint_copy_line_mmx2: internal error\n"); return 0; #else @@ -1422,10 +1422,10 @@ static int open(vf_instance_t *vf, char* args) } if (p->mmx2 > 2) p->mmx2 = 0; -#ifndef HAVE_MMX +#if !HAVE_MMX p->mmx2 = 0; #endif -#ifndef HAVE_3DNOW +#if !HAVE_3DNOW p->mmx2 &= 1; #endif p->thres.odd = p->thres.even; -- cgit v1.2.3