mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
swscale/x86/swscale: Fix warning about loosing significant bits in cast
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a649f36f75
commit
54e64eaf68
@ -201,7 +201,7 @@ static void yuv2yuvX_sse3(const int16_t *filter, int filterSize,
|
|||||||
const int16_t **src, uint8_t *dest, int dstW,
|
const int16_t **src, uint8_t *dest, int dstW,
|
||||||
const uint8_t *dither, int offset)
|
const uint8_t *dither, int offset)
|
||||||
{
|
{
|
||||||
if(((int)dest) & 15){
|
if(((uintptr_t)dest) & 15){
|
||||||
yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset);
|
yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user