clang fix for narrowing

This commit is contained in:
Forrest McDonald 2014-07-15 19:49:06 -07:00 committed by Gregory Hainaut
parent cea03d91e4
commit da93a960af
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ void yuv2rgb_reference(void)
// Know the specification before you touch it. // Know the specification before you touch it.
#define SSE_BYTES(x) {x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x} #define SSE_BYTES(x) {x, x, x, x, x, x, x, x, x, x, x, x, x, x, x, x}
#define SSE_WORDS(x) {x, x, x, x, x, x, x, x} #define SSE_WORDS(x) {x, x, x, x, x, x, x, x}
#define SSE_COEFFICIENTS(x) SSE_WORDS((x)<<2) #define SSE_COEFFICIENTS(x) SSE_WORDS((s16)((x)<<2))
struct SSE2_Tables struct SSE2_Tables
{ {