]> git.sesse.net Git - ffmpeg/commitdiff
Fix typo, "get rid off" -> "get rid of".
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 16 Jan 2010 22:49:00 +0000 (22:49 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 16 Jan 2010 22:49:00 +0000 (22:49 +0000)
Originally committed as revision 30338 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.c

index bb274e6f57ce39d8536b6c8d221c49d366d0fa2f..d256f1061541442c8a1270f4816a06da5cff3b2f 100644 (file)
@@ -1552,7 +1552,7 @@ static inline int initFilter(int16_t **outFilter, int16_t **filterPos, int *outF
         int j;
         int64_t cutOff=0.0;
 
-        /* get rid off near zero elements on the left by shifting left */
+        /* get rid of near zero elements on the left by shifting left */
         for (j=0; j<filter2Size; j++) {
             int k;
             cutOff += FFABS(filter2[i*filter2Size]);