[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60645] trunk/blender: Fix compilation error after recent libmv change

Sergey Sharybin sergey.vfx at gmail.com
Wed Oct 9 21:49:10 CEST 2013


Revision: 60645
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60645
Author:   nazgul
Date:     2013-10-09 19:49:09 +0000 (Wed, 09 Oct 2013)
Log Message:
-----------
Fix compilation error after recent libmv change

- Tweaked typedefs in stdint so they match
  what we've got in BLI_sys_types (needed to
  explicitly tell sign to MSVC).

  Not so much harmful to be more explicit here,
  but we really better to have single stdint
  int blender.

- Tweaked allocations macros so MSVC is happy
  with structures allocation.

Modified Paths:
--------------
    trunk/blender/extern/libmv/libmv-capi.cc
    trunk/blender/extern/libmv/third_party/msinttypes/stdint.h
    trunk/blender/intern/guardedalloc/MEM_guardedalloc.h

Modified: trunk/blender/extern/libmv/libmv-capi.cc
===================================================================
--- trunk/blender/extern/libmv/libmv-capi.cc	2013-10-09 19:29:50 UTC (rev 60644)
+++ trunk/blender/extern/libmv/libmv-capi.cc	2013-10-09 19:49:09 UTC (rev 60645)
@@ -43,12 +43,17 @@
 #  include <png.h>
 #endif
 
+#if defined(_MSC_VER)
+#  define __func__ __FUNCTION__
+#endif
+
 #ifdef WITH_LIBMV_GUARDED_ALLOC
 #  include "MEM_guardedalloc.h"
 #  define LIBMV_OBJECT_NEW OBJECT_GUARDED_NEW
 #  define LIBMV_OBJECT_DELETE OBJECT_GUARDED_DELETE
 #  define LIBMV_OBJECT_DELETE OBJECT_GUARDED_DELETE
-#  define LIBMV_OBJECT_DELETE_ARRAY OBJECT_GUARDED_DELETE_ARRAY
+#  define LIBMV_STRUCT_NEW(type, count) (type*)MEM_mallocN(sizeof(type) * count, __func__)
+#  define LIBMV_STRUCT_DELETE(what) MEM_freeN(what)
 #else
 // Need this to keep libmv-capi potentially standalone.
 #  if defined __GNUC__ || defined __sun
@@ -63,11 +68,8 @@
 			((type*)(what))->~type(); \
 			free(what); \
 	} } (void)0
-#define LIBMV_OBJECT_DELETE_ARRAY(what, type, count) \
-	{ if(what) { \
-			for (int i = 0; i < count; i++) ((type*)(what))[i].~type(); \
-			free(what); \
-	} } (void)0
+#  define LIBMV_STRUCT_NEW(type, count) (type*)malloc(sizeof(type) * count)
+#  define LIBMV_STRUCT_DELETE(what) { if (what) free(what); } (void)0
 #endif
 
 #include "libmv/logging/logging.h"
@@ -875,7 +877,7 @@
 {
 	libmv::Feature *features = NULL;
 	std::vector<libmv::Feature> v;
-	struct libmv_Features *libmv_features = LIBMV_OBJECT_NEW(libmv_Features);
+	struct libmv_Features *libmv_features = LIBMV_STRUCT_NEW(libmv_Features, 1);
 	int i = 0, count;
 
 	if (margin) {
@@ -889,7 +891,7 @@
 	count = v.size();
 
 	if (count) {
-		features = LIBMV_OBJECT_NEW(libmv::Feature[count]);
+		features = LIBMV_STRUCT_NEW(libmv::Feature, count);
 
 		for(std::vector<libmv::Feature>::iterator it = v.begin(); it != v.end(); it++) {
 			features[i++] = *it;
@@ -908,7 +910,7 @@
                                                    int margin, int count, int min_distance)
 {
 	libmv::Feature *features = NULL;
-	struct libmv_Features *libmv_features = LIBMV_OBJECT_NEW(libmv_Features);
+	struct libmv_Features *libmv_features = LIBMV_STRUCT_NEW(libmv_Features, 1);
 
 	if (count) {
 		if (margin) {
@@ -917,7 +919,7 @@
 			height -= 2 * margin;
 		}
 
-		features = LIBMV_OBJECT_NEW(libmv::Feature[count]);
+		features = LIBMV_STRUCT_NEW(libmv::Feature, count);
 		libmv::DetectMORAVEC(data, stride, width, height, features, &count, min_distance, NULL);
 	}
 
@@ -931,11 +933,10 @@
 void libmv_featuresDestroy(struct libmv_Features *libmv_features)
 {
 	if (libmv_features->features) {
-		using libmv::Feature;
-		LIBMV_OBJECT_DELETE_ARRAY(libmv_features->features, Feature, libmv_features->count);
+		LIBMV_STRUCT_DELETE(libmv_features->features);
 	}
 
-	LIBMV_OBJECT_DELETE(libmv_features, libmv_Features);
+	LIBMV_STRUCT_DELETE(libmv_features);
 }
 
 int libmv_countFeatures(const struct libmv_Features *libmv_features)

Modified: trunk/blender/extern/libmv/third_party/msinttypes/stdint.h
===================================================================
--- trunk/blender/extern/libmv/third_party/msinttypes/stdint.h	2013-10-09 19:29:50 UTC (rev 60644)
+++ trunk/blender/extern/libmv/third_party/msinttypes/stdint.h	2013-10-09 19:49:09 UTC (rev 60645)
@@ -72,16 +72,16 @@
 // realize that, e.g. char has the same size as __int8
 // so we give up on __intX for them.
 #if (_MSC_VER < 1300)
-   typedef char              int8_t;
-   typedef short             int16_t;
-   typedef int               int32_t;
+   typedef signed char       int8_t;
+   typedef signed short      int16_t;
+   typedef signed int        int32_t;
    typedef unsigned char     uint8_t;
    typedef unsigned short    uint16_t;
    typedef unsigned int      uint32_t;
 #else
-   typedef __int8            int8_t;
-   typedef __int16           int16_t;
-   typedef __int32           int32_t;
+   typedef signed __int8            int8_t;
+   typedef signed __int16           int16_t;
+   typedef signed __int32           int32_t;
    typedef unsigned __int8   uint8_t;
    typedef unsigned __int16  uint16_t;
    typedef unsigned __int32  uint32_t;

Modified: trunk/blender/intern/guardedalloc/MEM_guardedalloc.h
===================================================================
--- trunk/blender/intern/guardedalloc/MEM_guardedalloc.h	2013-10-09 19:29:50 UTC (rev 60644)
+++ trunk/blender/intern/guardedalloc/MEM_guardedalloc.h	2013-10-09 19:49:09 UTC (rev 60645)
@@ -256,12 +256,6 @@
 			((type*)(what))->~type(); \
 			MEM_freeN(what); \
 	} } (void)0
-#define OBJECT_GUARDED_DELETE_ARRAY(what, type, count) \
-	{ if(what) { \
-			for (int i = 0; i < count; i++) ((type*)(what))[i].~type(); \
-			MEM_freeN(what); \
-	} } (void)0
-
 #endif  /* __cplusplus */
 
 #ifdef __cplusplus




More information about the Bf-blender-cvs mailing list