diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-02-04 14:06:29 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-02-04 14:06:29 +0000 |
commit | 5e7976e7ef58bab9ae5b55a87acf369868c7a955 (patch) | |
tree | da401376cbc246720f041133976a8c5a7e8eadf7 /src/post/deinterlace/plugins/greedy.c | |
parent | ae4c5b53d2d0f540c95fb11c993de003842075a7 (diff) | |
download | xine-lib-5e7976e7ef58bab9ae5b55a87acf369868c7a955.tar.gz xine-lib-5e7976e7ef58bab9ae5b55a87acf369868c7a955.tar.bz2 |
Enable AMD64 mmx/sse support in some plugins (tvtime, libmpeg2, goom...)
patch by dani3l
CVS patchset: 7867
CVS date: 2006/02/04 14:06:29
Diffstat (limited to 'src/post/deinterlace/plugins/greedy.c')
-rw-r--r-- | src/post/deinterlace/plugins/greedy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/deinterlace/plugins/greedy.c b/src/post/deinterlace/plugins/greedy.c index 9f0e313b9..fa157258f 100644 --- a/src/post/deinterlace/plugins/greedy.c +++ b/src/post/deinterlace/plugins/greedy.c @@ -64,7 +64,7 @@ static void deinterlace_greedy_packed422_scanline_mmxext( uint8_t *output, deinterlace_scanline_data_t *data, int width ) { -#ifdef ARCH_X86 +#if defined(ARCH_X86) || defined(ARCH_X86_64) mmx_t MaxComb; uint8_t *m0 = data->m0; uint8_t *t1 = data->t1; |