summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-28 17:42:52 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-28 17:42:52 +0000
commit7ae1041907c18ea91decd33893d645193ec33884 (patch)
tree712ca4fd340e0cb62054d31861e9ab56806f3c28 /postproc
parent578e647be3e33f9cd4b58d975aadaf2b96775c06 (diff)
downloadmpv-7ae1041907c18ea91decd33893d645193ec33884.tar.bz2
mpv-7ae1041907c18ea91decd33893d645193ec33884.tar.xz
32to24: MMX, MMX2, 3DNOW optimization
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2518 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/rgb2rgb.c43
-rw-r--r--postproc/rgb2rgb_template.c43
2 files changed, 84 insertions, 2 deletions
diff --git a/postproc/rgb2rgb.c b/postproc/rgb2rgb.c
index 925e586df5..60d3d13e12 100644
--- a/postproc/rgb2rgb.c
+++ b/postproc/rgb2rgb.c
@@ -51,13 +51,52 @@ void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)
}
}
-/* TODO: MMX optimization */
void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size)
{
uint8_t *dest = dst;
uint8_t *s = src;
uint8_t *end;
+#ifdef HAVE_MMX
+ const uint64_t mask24l = 0x0000000000FFFFFFULL;
+ const uint64_t mask24h = 0x0000FFFFFF000000ULL;
+ uint8_t *mm_end;
+#endif
end = s + src_size;
+#ifdef HAVE_MMX
+ __asm __volatile(PREFETCH" %0\n\t"::"m"(*s):"memory");
+ mm_end = (uint8_t*)((((unsigned long)end)/(MMREG_SIZE*2))*(MMREG_SIZE*2));
+ __asm __volatile(
+ "movq %0, %%mm7\n\t"
+ "movq %1, %%mm6\n\t"
+ ::"m"(mask24l),"m"(mask24h):"memory");
+ if(mm_end == end) mm_end -= MMREG_SIZE*2;
+ while(s < mm_end)
+ {
+ __asm __volatile(
+ PREFETCH" 32%1\n\t"
+ "movq %1, %%mm0\n\t"
+ "movq 8%1, %%mm1\n\t"
+ "movq %%mm0, %%mm2\n\t"
+ "movq %%mm1, %%mm3\n\t"
+ "psrlq $8, %%mm2\n\t"
+ "psrlq $8, %%mm3\n\t"
+ "pand %%mm7, %%mm0\n\t"
+ "pand %%mm7, %%mm1\n\t"
+ "pand %%mm6, %%mm2\n\t"
+ "pand %%mm6, %%mm3\n\t"
+ "por %%mm2, %%mm0\n\t"
+ "por %%mm3, %%mm1\n\t"
+ MOVNTQ" %%mm0, %0\n\t"
+ MOVNTQ" %%mm1, 6%0"
+ :"=m"(*dest)
+ :"m"(*s)
+ :"memory");
+ dest += 12;
+ s += 16;
+ }
+ __asm __volatile(SFENCE:::"memory");
+ __asm __volatile(EMMS:::"memory");
+#endif
while(s < end)
{
*dest++ = *s++;
@@ -67,6 +106,8 @@ void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size)
}
}
+/* TODO: 3DNOW, MMX2 optimization */
+
/* Original by Strepto/Astral
ported to gcc & bugfixed : A'rpi */
void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size)
diff --git a/postproc/rgb2rgb_template.c b/postproc/rgb2rgb_template.c
index 925e586df5..60d3d13e12 100644
--- a/postproc/rgb2rgb_template.c
+++ b/postproc/rgb2rgb_template.c
@@ -51,13 +51,52 @@ void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)
}
}
-/* TODO: MMX optimization */
void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size)
{
uint8_t *dest = dst;
uint8_t *s = src;
uint8_t *end;
+#ifdef HAVE_MMX
+ const uint64_t mask24l = 0x0000000000FFFFFFULL;
+ const uint64_t mask24h = 0x0000FFFFFF000000ULL;
+ uint8_t *mm_end;
+#endif
end = s + src_size;
+#ifdef HAVE_MMX
+ __asm __volatile(PREFETCH" %0\n\t"::"m"(*s):"memory");
+ mm_end = (uint8_t*)((((unsigned long)end)/(MMREG_SIZE*2))*(MMREG_SIZE*2));
+ __asm __volatile(
+ "movq %0, %%mm7\n\t"
+ "movq %1, %%mm6\n\t"
+ ::"m"(mask24l),"m"(mask24h):"memory");
+ if(mm_end == end) mm_end -= MMREG_SIZE*2;
+ while(s < mm_end)
+ {
+ __asm __volatile(
+ PREFETCH" 32%1\n\t"
+ "movq %1, %%mm0\n\t"
+ "movq 8%1, %%mm1\n\t"
+ "movq %%mm0, %%mm2\n\t"
+ "movq %%mm1, %%mm3\n\t"
+ "psrlq $8, %%mm2\n\t"
+ "psrlq $8, %%mm3\n\t"
+ "pand %%mm7, %%mm0\n\t"
+ "pand %%mm7, %%mm1\n\t"
+ "pand %%mm6, %%mm2\n\t"
+ "pand %%mm6, %%mm3\n\t"
+ "por %%mm2, %%mm0\n\t"
+ "por %%mm3, %%mm1\n\t"
+ MOVNTQ" %%mm0, %0\n\t"
+ MOVNTQ" %%mm1, 6%0"
+ :"=m"(*dest)
+ :"m"(*s)
+ :"memory");
+ dest += 12;
+ s += 16;
+ }
+ __asm __volatile(SFENCE:::"memory");
+ __asm __volatile(EMMS:::"memory");
+#endif
while(s < end)
{
*dest++ = *s++;
@@ -67,6 +106,8 @@ void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size)
}
}
+/* TODO: 3DNOW, MMX2 optimization */
+
/* Original by Strepto/Astral
ported to gcc & bugfixed : A'rpi */
void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size)