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
pull/126/head
Vitor Sessak 17 years ago
parent cf408d8873
commit ab5e6526a3
  1. 2
      libavcodec/ra144.c

@ -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;
}

Loading…
Cancel
Save