projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
7801d21
)
fixing RGB32->RGB16 on big endian patch by (Colin Leroy <colin at colino dot net>)
author
Colin Leroy
<colin@colino.net>
Wed, 23 Oct 2002 23:52:57 +0000
(23:52 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 23 Oct 2002 23:52:57 +0000
(23:52 +0000)
Originally committed as revision 7892 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
postproc/rgb2rgb_template.c
patch
|
blob
|
blame
|
history
diff --git
a/postproc/rgb2rgb_template.c
b/postproc/rgb2rgb_template.c
index
44e764e
..
887856d
100644
(file)
--- a/
postproc/rgb2rgb_template.c
+++ b/
postproc/rgb2rgb_template.c
@@
-364,11
+364,20
@@
static inline void RENAME(rgb32to16)(const uint8_t *src, uint8_t *dst, unsigned
#endif
while(s < end)
{
#endif
while(s < end)
{
+#ifndef WORDS_BIGENDIAN
const int b= *s++;
const int g= *s++;
const int r= *s++;
const int b= *s++;
const int g= *s++;
const int r= *s++;
+#else
+ const int a= *s++; /*skip*/
+ const int r= *s++;
+ const int g= *s++;
+ const int b= *s++;
+#endif
*d++ = (b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8);
*d++ = (b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8);
+#ifndef WORDS_BIGENDIAN
s++;
s++;
+#endif
}
}
}
}