# HG changeset patch # User luisf # Date 1363777644 0 # Node ID e5b575d69b0116faed5a353b1e43dfa866012ab3 # Parent 8306b7fdd2d01151585eaa6ce63d5d5b7688a9b3 changed a comment diff -r 8306b7fdd2d0 -r e5b575d69b01 vampyhost.cpp --- a/vampyhost.cpp Tue Mar 19 15:43:56 2013 +0000 +++ b/vampyhost.cpp Wed Mar 20 11:07:24 2013 +0000 @@ -546,6 +546,8 @@ float **inbuf = new float *[channels]; cout << "Created inbuf with #channels: " << channels << endl; + + for (int c = 0; c < channels; ++c) { // cout << "[Host] Converting channel #" << c << endl; @@ -555,7 +557,7 @@ inbuf[c] = pyArrayToFloatArray((PyObject*) pyBuffer); - cout << "Ok2..." << endl; + cout << "Converted " << endl; if (!inbuf[c]) { PyErr_SetString(PyExc_TypeError,"NumPy Array required for each channel in process input.");