[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60041] branches/soc-2013-motion_track/ source/blender/blenkernel/intern/tracking.c: Fix: BKE tracking compilation error

Joseph Mansfield sftrabbit at gmail.com
Wed Sep 11 12:34:54 CEST 2013


Revision: 60041
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60041
Author:   sftrabbit
Date:     2013-09-11 10:34:54 +0000 (Wed, 11 Sep 2013)
Log Message:
-----------
Fix: BKE tracking compilation error

Previous commit was incomplete and didn't include blender-side changes to the libmv API.

Modified Paths:
--------------
    branches/soc-2013-motion_track/source/blender/blenkernel/intern/tracking.c

Modified: branches/soc-2013-motion_track/source/blender/blenkernel/intern/tracking.c
===================================================================
--- branches/soc-2013-motion_track/source/blender/blenkernel/intern/tracking.c	2013-09-11 10:06:54 UTC (rev 60040)
+++ branches/soc-2013-motion_track/source/blender/blenkernel/intern/tracking.c	2013-09-11 10:34:54 UTC (rev 60041)
@@ -3530,10 +3530,10 @@
 	for (a = sfra; a <= efra; a++) {
 		double matd[4][4];
 
-		if (libmv_reprojectionCameraForImage(libmv_reconstruction, 0, a, matd)) {
+		if (libmv_reprojectionCameraForImage(libmv_reconstruction, a, matd)) {
 			int i, j;
 			float mat[4][4];
-			float error = libmv_reprojectionErrorForImage(libmv_reconstruction, 0, a);
+			float error = libmv_reprojectionErrorForImage(libmv_reconstruction, a);
 
 			for (i = 0; i < 4; i++) {
 				for (j = 0; j < 4; j++)




More information about the Bf-blender-cvs mailing list