[MPlayer-cvslog] CVS: main/postproc swscale_template.c,1.112,1.113
Alex Beregszaszi
syncmail at mplayerhq.hu
Fri Apr 29 20:32:26 CEST 2005
CVS change done by Alex Beregszaszi
Update of /cvsroot/mplayer/main/postproc
In directory mail:/var2/tmp/cvs-serv8111
Modified Files:
swscale_template.c
Log Message:
unused define
Index: swscale_template.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale_template.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- swscale_template.c 16 Feb 2005 23:47:00 -0000 1.112
+++ swscale_template.c 29 Apr 2005 18:32:24 -0000 1.113
@@ -1617,8 +1617,6 @@
static inline void RENAME(bgr32ToY)(uint8_t *dst, uint8_t *src, int width)
{
-#ifdef HAVE_MMXFIXME
-#else
int i;
for(i=0; i<width; i++)
{
@@ -1628,13 +1626,10 @@
dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT);
}
-#endif
}
static inline void RENAME(bgr32ToUV)(uint8_t *dstU, uint8_t *dstV, uint8_t *src1, uint8_t *src2, int width)
{
-#ifdef HAVE_MMXFIXME
-#else
int i;
for(i=0; i<width; i++)
{
@@ -1651,7 +1646,6 @@
dstU[i]= ((RU*r + GU*g + BU*b)>>(RGB2YUV_SHIFT+2)) + 128;
dstV[i]= ((RV*r + GV*g + BV*b)>>(RGB2YUV_SHIFT+2)) + 128;
}
-#endif
}
static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, int width)
More information about the MPlayer-cvslog
mailing list