Changeset 8fa71eb
- Timestamp:
- Nov 28, 2016, 4:23:23 PM (8 years ago)
- Branches:
- sampler
- Children:
- 024584d
- Parents:
- d5745af
- git-author:
- Paul Brossier <piem@piem.org> (10/03/16 11:47:25)
- git-committer:
- Paul Brossier <piem@piem.org> (11/28/16 16:23:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_avcodec.c
rd5745af r8fa71eb 352 352 } 353 353 if (total_wrote < s->hop_size) { 354 for (i = end; i < s->hop_size; i++) {354 for (i = total_wrote; i < s->hop_size; i++) { 355 355 read_data->data[i] = 0.; 356 356 } … … 387 387 if (total_wrote < s->hop_size) { 388 388 for (j = 0; j < read_data->height; j++) { 389 for (i = end; i < s->hop_size; i++) {389 for (i = total_wrote; i < s->hop_size; i++) { 390 390 read_data->data[j][i] = 0.; 391 391 }
Note: See TracChangeset
for help on using the changeset viewer.