[Ffmpeg-cvslog] r7345 - trunk/libavcodec/motion_est.c

michael subversion
Thu Dec 21 16:22:16 CET 2006


Author: michael
Date: Thu Dec 21 16:22:16 2006
New Revision: 7345

Modified:
   trunk/libavcodec/motion_est.c

Log:
simplify


Modified: trunk/libavcodec/motion_est.c
==============================================================================
--- trunk/libavcodec/motion_est.c	(original)
+++ trunk/libavcodec/motion_est.c	Thu Dec 21 16:22:16 2006
@@ -1823,8 +1823,8 @@
 
     get_limits(s, 16*mb_x, 16*mb_y); //restore c->?min/max, maybe not needed
 
-    s->b_direct_mv_table[mot_xy][0]= mx;
-    s->b_direct_mv_table[mot_xy][1]= my;
+    mv_table[mot_xy][0]= mx;
+    mv_table[mot_xy][1]= my;
     c->flags     &= ~FLAG_DIRECT;
     c->sub_flags &= ~FLAG_DIRECT;
 




More information about the ffmpeg-cvslog mailing list