diff motion_est.c @ 5129:0244bba24b43 libavcodec

misc typo fixes
author diego
date Tue, 12 Jun 2007 18:50:50 +0000
parents 4dbe6578f811
children 470601203f44
line wrap: on
line diff
--- a/motion_est.c	Tue Jun 12 15:03:28 2007 +0000
+++ b/motion_est.c	Tue Jun 12 18:50:50 2007 +0000
@@ -1807,7 +1807,7 @@
     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);