summaryrefslogtreecommitdiff
path: root/postproc
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-02-13 12:44:17 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-13 12:44:17 +0000
commitf41b1d3541ac8e30a99e6a4bde3fcd84c11ae6f8 (patch)
treead074dfc9b8b3f9332d1bcefff63551821200c68 /postproc
parentaa11db2f2369e29cedc0399df181461157340932 (diff)
Remove obsolete big-endian FIXMEs.
Originally committed as revision 17623 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r--postproc/rgb2rgb_template.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/postproc/rgb2rgb_template.c b/postproc/rgb2rgb_template.c
index b08778a3a3..fbb4021011 100644
--- a/postproc/rgb2rgb_template.c
+++ b/postproc/rgb2rgb_template.c
@@ -468,8 +468,6 @@ static inline void RENAME(rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long s
#endif
while(s < end)
{
- // FIXME on bigendian
- /* Looks bigendian-OK to me. --Pac. */
const int src= *s; s += 4;
*d++ = ((src&0xF8)<<8) + ((src&0xFC00)>>5) + ((src&0xF80000)>>19);
}
@@ -566,8 +564,6 @@ static inline void RENAME(rgb32to15)(const uint8_t *src, uint8_t *dst, long src_
#endif
while(s < end)
{
- // FIXME on bigendian
- /* Looks bigendian-OK to me. --Pac. */
const int src= *s; s += 4;
*d++ = ((src&0xFF)>>3) + ((src&0xF800)>>6) + ((src&0xF80000)>>9);
}
@@ -629,8 +625,6 @@ static inline void RENAME(rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long s
#endif
while(s < end)
{
- // FIXME on bigendian
- /* Looks bigendian-OK to me. --Pac. */
const int src= *s; s += 4;
*d++ = ((src&0xF8)<<7) + ((src&0xF800)>>6) + ((src&0xF80000)>>19);
}