Some cosmetic/comment fixes.

Change-Id: Id0613f84cc53fcbeceb913c835a262451687e27b
This commit is contained in:
Urvang Joshi
2012-11-07 16:04:08 -08:00
parent 60b2651a8c
commit 7caab1d8f6
5 changed files with 10 additions and 10 deletions

View File

@ -114,8 +114,8 @@ void VP8YUVInit(void);
// RGB -> YUV conversion
static WEBP_INLINE int VP8ClipUV(int v) {
v = (v + (257 << (YUV_FIX + 2 - 1))) >> (YUV_FIX + 2);
return ((v & ~0xff) == 0) ? v : (v < 0) ? 0 : 255;
v = (v + (257 << (YUV_FIX + 2 - 1))) >> (YUV_FIX + 2);
return ((v & ~0xff) == 0) ? v : (v < 0) ? 0 : 255;
}
#ifndef USE_YUVj