Changeset 0d222ee for python


Ignore:
Timestamp:
Mar 5, 2013, 4:50:50 AM (11 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:
a4cc8e5
Parents:
118f47f
Message:

ext/ufuncs.c: add first ufunc, unwrap2pi

Location:
python/ext
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • python/ext/aubiomodule.c

    r118f47f r0d222ee  
    222222
    223223static PyMethodDef aubio_methods[] = {
    224   {"unwrap2pi", Py_unwrap2pi, METH_VARARGS, Py_unwrap2pi_doc},
     224  //{"unwrap2pi", Py_unwrap2pi, METH_VARARGS, Py_unwrap2pi_doc},
    225225  {"bintomidi", Py_bintomidi, METH_VARARGS, Py_bintomidi_doc},
    226226  {"miditobin", Py_miditobin, METH_VARARGS, Py_miditobin_doc},
     
    281281  // add generated objects
    282282  add_generated_objects(m);
    283 }
     283
     284  // add ufunc
     285  add_ufuncs(m);
     286}
Note: See TracChangeset for help on using the changeset viewer.