removed inline since it barfs on MSVC

This commit is contained in:
2006-02-05 23:07:48 +00:00
parent 0313cacc2b
commit 0946b399c6

View File

@@ -2451,7 +2451,7 @@ static void rgb_to_yuv(float rgb[3], float yuv[3]) {
yuv[2]+= 0.5;
}
static inline void scope_put_pixel(unsigned char* table, unsigned char * pos)
static void scope_put_pixel(unsigned char* table, unsigned char * pos)
{
char newval = table[*pos];
pos[0] = pos[1] = pos[2] = newval;