- Timestamp:
- Nov 28, 2016, 5:31:45 PM (8 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, sampler, yinfft+
- Children:
- 9ad0dcc
- Parents:
- 7e78ad8
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.c
r7e78ad8 re141b23 111 111 uint_t i,j; 112 112 for (i=0; i< s->height; i++) { 113 for (j=0; j< FLOOR( s->length/2); j++) {113 for (j=0; j< FLOOR((smpl_t)s->length/2); j++) { 114 114 ELEM_SWAP(s->data[i][j], s->data[i][s->length-1-j]); 115 115 } -
src/fvec.c
r7e78ad8 re141b23 91 91 void fvec_rev(fvec_t *s) { 92 92 uint_t j; 93 for (j=0; j< FLOOR( s->length/2); j++) {93 for (j=0; j< FLOOR((smpl_t)s->length/2); j++) { 94 94 ELEM_SWAP(s->data[j], s->data[s->length-1-j]); 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.