aubiomodule.c: simplify includes
authorPaul Brossier <piem@piem.org>
Mon, 4 Mar 2013 19:28:17 +0000 (14:28 -0500)
committerPaul Brossier <piem@piem.org>
Mon, 4 Mar 2013 19:28:17 +0000 (14:28 -0500)
python/aubio-types.h
python/aubiomodule.c

index 9d38c6e37edafdf6401b14c246a7c1c19a5e94a5..b2747a607ce75650416da45c8b680897d743068a 100644 (file)
@@ -1,13 +1,27 @@
-#include <Python.h>
+#include "Python.h"
 #include <structmember.h>
-#define NO_IMPORT_ARRAY
+
 //#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
-#include <numpy/arrayobject.h>
+
+// define numpy unique symbols for aubio
+#define PY_ARRAY_UNIQUE_SYMBOL PYAUBIO_ARRAY_API
+#define PY_UFUNC_UNIQUE_SYMBOL PYAUBIO_UFUNC_API
+
+// only import array and ufunc from main module
+#ifndef PY_AUBIO_MODULE_MAIN
+#define NO_IMPORT_ARRAY
+#define NO_IMPORT_UFUNC
+#endif
+
+// import aubio
+#include <numpy/ndarraytypes.h>
+#include <numpy/ufuncobject.h>
+#include <numpy/npy_3kcompat.h>
+
 #define AUBIO_UNSTABLE 1
 #include <aubio.h>
 
 #define Py_default_vector_length 1024
-#define Py_default_vector_height 1
 
 #define Py_aubio_default_samplerate 44100
 
index ccbc28bab62f7e68edcf8ac81781e8c897c2711b..293758abbf1f7ec893d20fa61225e84f4b8e671c 100644 (file)
@@ -1,8 +1,4 @@
-#include <Python.h>
-#define PY_ARRAY_UNIQUE_SYMBOL PyArray_API
-//#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
-#include <numpy/arrayobject.h>
-
+#define PY_AUBIO_MODULE_MAIN
 #include "aubio-types.h"
 #include "generated/aubio-generated.h"
 
@@ -246,6 +242,7 @@ init_aubio (void)
   PyObject *m;
   int err;
 
+  // fvec is defined in __init__.py
   if (   (PyType_Ready (&Py_cvecType) < 0)
       || (PyType_Ready (&Py_filterType) < 0)
       || (PyType_Ready (&Py_filterbankType) < 0)
@@ -281,6 +278,6 @@ init_aubio (void)
   Py_INCREF (&Py_pvocType);
   PyModule_AddObject (m, "pvoc", (PyObject *) & Py_pvocType);
 
-  // generated objects
+  // add generated objects
   add_generated_objects(m);
 }