Commit: a1f8755d32d547190f781fa162a80fbd210b9671
Author: Sergey Sharybin
Date:   Fri Apr 7 17:10:44 2017 +0200
Branches: master
https://developer.blender.org/rBa1f8755d32d547190f781fa162a80fbd210b9671

Libmv: Fix crash of keyframe selection on 32bit linux

===================================================================

M       intern/libmv/libmv/multiview/homography.cc

===================================================================

diff --git a/intern/libmv/libmv/multiview/homography.cc 
b/intern/libmv/libmv/multiview/homography.cc
index ce533a3ead2..a7679c33bbf 100644
--- a/intern/libmv/libmv/multiview/homography.cc
+++ b/intern/libmv/libmv/multiview/homography.cc
@@ -209,8 +209,8 @@ class HomographySymmetricGeometricCostFunctor {
     return true;
   }
 
-  const Vec2 x_;
-  const Vec2 y_;
+  const Vec2 &x_;
+  const Vec2 &y_;
 };
 
 // Termination checking callback used for homography estimation.

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to