Changes in / [5b194f0:873646d]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-cvec.c
r5b194f0 r873646d 143 143 npy_intp length; 144 144 if (!PyAubio_IsValidVector(input)) { 145 return -1;145 return 1; 146 146 } 147 147 length = PyArray_SIZE ((PyArrayObject *)input); … … 150 150 "input array has length %" NPY_INTP_FMT ", but cvec has length %d", length, 151 151 vec->length); 152 return -1;152 return 1; 153 153 } 154 154 … … 164 164 npy_intp length; 165 165 if (!PyAubio_IsValidVector(input)) { 166 return -1;166 return 1; 167 167 } 168 168 length = PyArray_SIZE ((PyArrayObject *)input); … … 171 171 "input array has length %" NPY_INTP_FMT ", but cvec has length %d", length, 172 172 vec->length); 173 return -1;173 return 1; 174 174 } 175 175 -
tests/src/io/test-sink-multi.c
r5b194f0 r873646d 1 #define AUBIO_UNSTABLE 1 1 2 #include <aubio.h> 2 3 #include "utils_tests.h" 3 4 4 // same as test-sink.c, but uses aubio_source_do_multi to read multiple5 // channels5 // this file uses the unstable aubio api, please use aubio_sink instead 6 // see src/io/sink.h and tests/src/sink/test-sink.c 6 7 7 8 int main (int argc, char **argv) -
tests/src/io/test-sink_apple_audio-multi.c
r5b194f0 r873646d 3 3 #include "utils_tests.h" 4 4 5 // this file uses the unstable aubio api to test aubio_sink_apple_audio, please6 // use aubio_sink insteadsee src/io/sink.h and tests/src/sink/test-sink.c5 // this file uses the unstable aubio api, please use aubio_sink instead 6 // see src/io/sink.h and tests/src/sink/test-sink.c 7 7 8 8 int main (int argc, char **argv) -
tests/src/io/test-sink_sndfile-multi.c
r5b194f0 r873646d 3 3 #include "utils_tests.h" 4 4 5 // this file uses the unstable aubio api to test aubio_sink_sndfile, please6 // use aubio_sink insteadsee src/io/sink.h and tests/src/sink/test-sink.c5 // this file uses the unstable aubio api, please use aubio_sink instead 6 // see src/io/sink.h and tests/src/sink/test-sink.c 7 7 8 8 int main (int argc, char **argv) -
tests/src/io/test-sink_wavwrite-multi.c
r5b194f0 r873646d 3 3 #include "utils_tests.h" 4 4 5 // this file uses the unstable aubio api to test aubio_sink_wavwrite, please6 // use aubio_sink insteadsee src/io/sink.h and tests/src/sink/test-sink.c5 // this file uses the unstable aubio api, please use aubio_sink instead 6 // see src/io/sink.h and tests/src/sink/test-sink.c 7 7 8 8 int main (int argc, char **argv)
Note: See TracChangeset
for help on using the changeset viewer.