From a3713ceb29828cce576fa3ea6f936f3ab1d61a38 Mon Sep 17 00:00:00 2001 From: nplourde Date: Sat, 15 Apr 2006 20:46:54 +0000 Subject: add support for intel mac. mp3lib is not fixed yet. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18105 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_ivtc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libmpcodecs/vf_ivtc.c') diff --git a/libmpcodecs/vf_ivtc.c b/libmpcodecs/vf_ivtc.c index 62bc749447..50cabe0ee1 100644 --- a/libmpcodecs/vf_ivtc.c +++ b/libmpcodecs/vf_ivtc.c @@ -5,6 +5,7 @@ #include "config.h" #include "mp_msg.h" #include "cpudetect.h" +#include "asmalign.h" #include "img_format.h" #include "mp_image.h" @@ -67,7 +68,7 @@ static void block_diffs_MMX(struct metrics *m, unsigned char *old, unsigned char "pxor %%mm5, %%mm5 \n\t" // 4 odd difference sums "pxor %%mm7, %%mm7 \n\t" // all zeros - ".balign 16 \n\t" + ASMALIGN16 "1: \n\t" // Even difference @@ -127,7 +128,7 @@ static void block_diffs_MMX(struct metrics *m, unsigned char *old, unsigned char "pxor %%mm5, %%mm5 \n\t" // Temporal noise "pxor %%mm6, %%mm6 \n\t" // Current spacial noise - ".balign 16 \n\t" + ASMALIGN16 "2: \n\t" "movq (%%"REG_S"), %%mm0 \n\t" @@ -181,7 +182,7 @@ static void block_diffs_MMX(struct metrics *m, unsigned char *old, unsigned char "pxor %%mm5, %%mm5 \n\t" "pxor %%mm6, %%mm6 \n\t" - ".balign 16 \n\t" + ASMALIGN16 "3: \n\t" "movq (%%"REG_S"), %%mm0 \n\t" -- cgit v1.2.3