diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 22:49:00 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 22:49:00 +0000 |
commit | a630ed3ee901ac5e24b7fdf62523701f781b3ec9 (patch) | |
tree | b6c51515ba65fd402484a83687fe71e4d7dd027a /libswscale/swscale.c | |
parent | 05e24fa8528f04112bac60114d56d9bcbab2aeca (diff) | |
download | ffmpeg-a630ed3ee901ac5e24b7fdf62523701f781b3ec9.tar.gz |
Fix typo, "get rid off" -> "get rid of".
Originally committed as revision 30338 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index bb274e6f57..d256f10615 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -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]); |