Changeset 449bff6


Ignore:
Timestamp:
Nov 15, 2009, 3:26:19 PM (14 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
2b4d006
Parents:
90077e4
Message:

aubiomodule.c: add generated objects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • interfaces/python/aubiomodule.c

    r90077e4 r449bff6  
    44
    55#include "aubio-types.h"
     6#include "generated/aubio-generated.h"
    67
    78static char Py_alpha_norm_doc[] = "compute alpha normalisation factor";
     
    126127      || (PyType_Ready (&Py_fftType) < 0)
    127128      || (PyType_Ready (&Py_pvocType) < 0)
     129      // generated objects
     130      || (generated_types_ready() < 0 )
    128131  ) {
    129132    return;
     
    155158  Py_INCREF (&Py_pvocType);
    156159  PyModule_AddObject (m, "pvoc", (PyObject *) & Py_pvocType);
     160
     161  // generated objects
     162  add_generated_objects(m);
    157163}
Note: See TracChangeset for help on using the changeset viewer.