projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33a67bd
)
Make the 2point linear interpolation coefficients correct even for the
author
Michael Niedermayer
<michaelni@gmx.at>
Wed, 10 Sep 2008 22:41:55 +0000
(22:41 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 10 Sep 2008 22:41:55 +0000
(22:41 +0000)
nearly never occuring 0.0, 1.0.
Originally committed as revision 27574 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
libswscale/swscale_template.c
patch
|
blob
|
history
diff --git
a/libswscale/swscale_template.c
b/libswscale/swscale_template.c
index
6048bfc
..
d11e130
100644
(file)
--- a/
libswscale/swscale_template.c
+++ b/
libswscale/swscale_template.c
@@
-1204,8
+1204,8
@@
static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_
static inline void RENAME(yuv2packed2)(SwsContext *c, uint16_t *buf0, uint16_t *buf1, uint16_t *uvbuf0, uint16_t *uvbuf1,
uint8_t *dest, int dstW, int yalpha, int uvalpha, int y)
{
- int
yalpha1=yalpha^4095
;
- int uvalpha1=
uvalpha^4095
;
+ int
yalpha1=4095- yalpha
;
+ int uvalpha1=
4095-uvalpha
;
int i;
#if 0 //isn't used