diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-12 09:29:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-12 09:29:25 +0000 |
commit | 755bfeabccbba9ae1b565b11d645b8e4fe139fa8 (patch) | |
tree | dbd398273c82bc49803b6143e6942e86dd3f3d25 /libavcodec/svq1.c | |
parent | 26ef3220cf6ad4a3cb1580086c244394f5aa3094 (diff) | |
download | ffmpeg-755bfeabccbba9ae1b565b11d645b8e4fe139fa8.tar.gz |
misc spelling fixes
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1.c')
-rw-r--r-- | libavcodec/svq1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq1.c b/libavcodec/svq1.c index 42fc6be196..3414264105 100644 --- a/libavcodec/svq1.c +++ b/libavcodec/svq1.c @@ -499,7 +499,7 @@ static int svq1_motion_inter_4v_block (MpegEncContext *s, GetBitContext *bitbuf, int mvx= pmv[i]->x + (i&1)*16; int mvy= pmv[i]->y + (i>>1)*16; - ///XXX /FIXME cliping or padding? + ///XXX /FIXME clipping or padding? if(y + (mvy >> 1)<0) mvy= 0; if(x + (mvx >> 1)<0) |