diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 09a57cab8186a680ba6be8500cf04fde37944ccf..56c94264307bb53ca9eb059703d5fcfd3f1fcefb 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -323,8 +323,6 @@ static inline void RENAME(rgb16to15)(const uint8_t *src, uint8_t *dst, long src_ { register uint16_t x= *((const uint16_t*)s); *((uint16_t *)d) = ((x>>1)&0x7FE0) | (x&0x001F); - s+=2; - d+=2; } }