Changeset 1ad9dc3 for python/ext


Ignore:
Timestamp:
May 11, 2016, 5:24:13 AM (8 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:
0df6e9e
Parents:
34d0c25
Message:

python/ext/py-cvec.c: remove unused function

Location:
python/ext
Files:
2 edited

Legend:

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

    r34d0c25 r1ad9dc3  
    6464extern int PyAubio_ArrayToCFvec (PyObject * self, fvec_t *out);
    6565
    66 extern PyObject * PyAubio_CCvecToPyCvec (cvec_t * self);
    6766extern int PyAubio_PyCvecToCCvec (PyObject *input, cvec_t *i);
    6867
  • python/ext/py-cvec.c

    r34d0c25 r1ad9dc3  
    3131  vec->length = length / 2 + 1;
    3232  return (PyObject*)vec;
    33 }
    34 
    35 PyObject *
    36 PyAubio_CCvecToPyCvec (cvec_t * input) {
    37   if (input == NULL) {
    38       PyErr_SetString (PyExc_ValueError, "PyAubio_CCvecToPyCvec got a null cvec!");
    39       return NULL;
    40   }
    41   Py_cvec* vec = (Py_cvec*) PyObject_New (Py_cvec, &Py_cvecType);
    42   npy_intp dims[] = { input->length, 1 };
    43   vec->norm = PyArray_SimpleNewFromData (1, dims, AUBIO_NPY_SMPL, input->norm);
    44   vec->phas = PyArray_SimpleNewFromData (1, dims, AUBIO_NPY_SMPL, input->phas);
    45   vec->length = input->length;
    46   return (PyObject *)vec;
    4733}
    4834
Note: See TracChangeset for help on using the changeset viewer.