OSDN Git Service

Use correct type in FFSWAP (thanks to Benoit Fouet for pointing it out)
authorVitor Sessak <vitor1001@gmail.com>
Thu, 15 May 2008 18:30:05 +0000 (18:30 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Thu, 15 May 2008 18:30:05 +0000 (18:30 +0000)
Originally committed as revision 13161 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra144.c

index 234f85c..c2b6349 100644 (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;
 }