1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out)

Originally committed as revision 13161 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-05-15 18:30:05 +00:00
parent cf408d8873
commit ab5e6526a3

View File

@ -394,7 +394,7 @@ static int eq(Real144_internal *glob, short *in, int *target)
if ((u + 0x1000) > 0x1fff)
retval = 1;
FFSWAP(unsigned int *, bp1, bp2);
FFSWAP(int *, bp1, bp2);
}
return retval;
}