Changeset a6222fc


Ignore:
Timestamp:
Feb 27, 2017, 1:24:46 AM (7 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, sampler
Children:
2882b3f
Parents:
23f1c49
Message:

python/ext/py-source.c: statement after definitions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/ext/py-source.c

    r23f1c49 ra6222fc  
    290290
    291291static PyObject* Pyaubio_source_iter_next(Py_source *self) {
    292   PyObject *done;
     292  PyObject *done, *size;
    293293  if (self->channels == 1) {
    294294    done = Py_source_do(self, NULL);
     
    301301    return NULL;
    302302  }
    303   PyObject *size = PyTuple_GetItem(done, 1);
     303  size = PyTuple_GetItem(done, 1);
    304304  if (size != NULL && PyLong_Check(size)) {
    305305    if (PyLong_AsLong(size) == (long)self->hop_size) {
Note: See TracChangeset for help on using the changeset viewer.