- Timestamp:
- Dec 17, 2013, 5:30:13 PM (11 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:
- e84ab04
- Parents:
- 1ece4f8
- Location:
- tests/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/io/test-source_multi.c
r1ece4f8 r4ed0ed1 39 39 if ( n_channels == 0 ) n_channels = aubio_source_get_channels(s); 40 40 41 fmat_t *mat = new_fmat( hop_size, n_channels);41 fmat_t *mat = new_fmat(n_channels, hop_size); 42 42 43 43 do { -
tests/src/test-fmat.c
r1ece4f8 r4ed0ed1 9 9 uint_t height = 3, length = 9, i, j; 10 10 // create fmat_t object 11 fmat_t * mat = new_fmat ( length, height);11 fmat_t * mat = new_fmat (height, length); 12 12 for ( i = 0; i < mat->height; i++ ) { 13 13 for ( j = 0; j < mat->length; j++ ) {
Note: See TracChangeset
for help on using the changeset viewer.