summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-15 17:29:01 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-15 17:29:01 +0000
commit399c27aabbe8f495fcf9fc350b7f869e26b6e9be (patch)
tree04dd07e5909e5ff43069f044727b7cb699edfebf /postproc
parent4c884c5a6b232b24e5e3e8314dc1bded6eb15e08 (diff)
downloadmpv-399c27aabbe8f495fcf9fc350b7f869e26b6e9be.tar.bz2
mpv-399c27aabbe8f495fcf9fc350b7f869e26b6e9be.tar.xz
1000l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9435 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/swscale_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c
index bbb1d9f120..b108fb1529 100644
--- a/postproc/swscale_template.c
+++ b/postproc/swscale_template.c
@@ -1696,7 +1696,7 @@ static inline void RENAME(bgr24ToY)(uint8_t *dst, uint8_t *src, int width)
int g= src[i*3+1];
int r= src[i*3+2];
- dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT)
+ dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)) )>>RGB2YUV_SHIFT);
}
#endif
}