Changeset f1100a4


Ignore:
Timestamp:
Jan 24, 2014, 2:17:18 AM (10 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:
7b56229
Parents:
9e58e78
Message:

ext/py-sink.c: do not generate

Location:
python
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • python/ext/aubio-types.h

    r9e58e78 rf1100a4  
    7171extern PyTypeObject Py_sourceType;
    7272
     73extern PyTypeObject Py_sinkType;
  • python/ext/aubiomodule.c

    r9e58e78 rf1100a4  
    200200      || (PyType_Ready (&Py_pvocType) < 0)
    201201      || (PyType_Ready (&Py_sourceType) < 0)
     202      || (PyType_Ready (&Py_sinkType) < 0)
    202203      // generated objects
    203204      || (generated_types_ready() < 0 )
     
    230231  Py_INCREF (&Py_sourceType);
    231232  PyModule_AddObject (m, "source", (PyObject *) & Py_sourceType);
     233  Py_INCREF (&Py_sinkType);
     234  PyModule_AddObject (m, "sink", (PyObject *) & Py_sinkType);
    232235
    233236  // add generated objects
  • python/lib/generator.py

    r9e58e78 rf1100a4  
    5555      'pitchyin',
    5656      'pitchyinfft',
     57      'sink',
    5758      'sink_apple_audio',
    5859      'sink_sndfile',
  • python/setup.py

    r9e58e78 rf1100a4  
    5555    "ext/py-phasevoc.c",
    5656    "ext/py-source.c",
     57    "ext/py-sink.c",
    5758    # generated files
    5859    ] + generated_object_files,
Note: See TracChangeset for help on using the changeset viewer.