- Timestamp:
- Nov 29, 2013, 12:55:04 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:
- 74bdc4a
- Parents:
- 767990e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.c
r767990e r83d2948 135 135 } 136 136 #if HAVE_MEMCPY_HACKS 137 memcpy(t->data, s->data, t->height * t->length * sizeof(smpl_t)); 137 uint_t i; 138 for (i=0; i< s->height; i++) { 139 memcpy(t->data[i], s->data[i], t->length * sizeof(smpl_t)); 140 } 138 141 #else 139 142 uint_t i,j;
Note: See TracChangeset
for help on using the changeset viewer.