Changeset c6388f4 for python/ext/py-cvec.c
- Timestamp:
- Apr 24, 2016, 11:45:45 PM (9 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- fbcee4f
- Parents:
- 81984a7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-cvec.c
r81984a7 rc6388f4 94 94 { 95 95 npy_intp dims[] = { self->o->length, 1 }; 96 return PyArray_SimpleNewFromData (1, dims, NPY_FLOAT, self->o->norm);96 return PyArray_SimpleNewFromData (1, dims, AUBIO_NPY_SMPL, self->o->norm); 97 97 } 98 98 … … 102 102 { 103 103 npy_intp dims[] = { self->o->length, 1 }; 104 return PyArray_SimpleNewFromData (1, dims, NPY_FLOAT, self->o->phas);104 return PyArray_SimpleNewFromData (1, dims, AUBIO_NPY_SMPL, self->o->phas); 105 105 } 106 106
Note: See TracChangeset
for help on using the changeset viewer.