Changeset 51284ab
- Timestamp:
- Nov 21, 2018, 12:22:39 AM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- 3636600
- Parents:
- 15c3466
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-filterbank.c
r15c3466 r51284ab 124 124 PyObject *input; 125 125 smpl_t samplerate; 126 if (!PyArg_ParseTuple (args, "O f", &input, &samplerate)) {126 if (!PyArg_ParseTuple (args, "O" AUBIO_NPY_SMPL_CHR, &input, &samplerate)) { 127 127 return NULL; 128 128 } … … 271 271 smpl_t power; 272 272 273 if (!PyArg_ParseTuple (args, "f", &power)) {273 if (!PyArg_ParseTuple (args, AUBIO_NPY_SMPL_CHR, &power)) { 274 274 return NULL; 275 275 } … … 294 294 smpl_t norm; 295 295 296 if (!PyArg_ParseTuple (args, "f", &norm)) {296 if (!PyArg_ParseTuple (args, AUBIO_NPY_SMPL_CHR, &norm)) { 297 297 return NULL; 298 298 }
Note: See TracChangeset
for help on using the changeset viewer.