diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-12 18:50:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-12 18:50:50 +0000 |
commit | 90b5b51eab008ddb24701bb95aa4c017e62bb111 (patch) | |
tree | 47bc9eb153584ccf309c27277fb56c2d1468230f /libavcodec/motion_est.c | |
parent | c294d7c6bafb5115dbaffd12aec4530ffed3a0b4 (diff) | |
download | ffmpeg-90b5b51eab008ddb24701bb95aa4c017e62bb111.tar.gz |
misc typo fixes
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r-- | libavcodec/motion_est.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 9d1c26fe23..014e3c5f44 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -1807,7 +1807,7 @@ static inline int direct_search(MpegEncContext * s, int mb_x, int mb_y) P_LEFT[1] = av_clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift); /* special case for first line */ - if (!s->first_slice_line) { //FIXME maybe allow this over thread boundary as its clipped + if (!s->first_slice_line) { //FIXME maybe allow this over thread boundary as it is clipped P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin<<shift, xmax<<shift); P_TOP[1] = av_clip(mv_table[mot_xy - mot_stride ][1], ymin<<shift, ymax<<shift); P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1 ][0], xmin<<shift, xmax<<shift); |