Changeset 80d0083
- Timestamp:
- Sep 28, 2016, 3:18:30 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- 7f6f880, f91737d
- Parents:
- afa21cdc
- Location:
- src/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink_wavwrite.c
rafa21cdc r80d0083 69 69 }; 70 70 71 unsigned char *write_little_endian (unsigned int s, unsigned char *str, unsigned int length); 72 unsigned char *write_little_endian (unsigned int s, unsigned char *str, unsigned int length) { 71 static unsigned char *write_little_endian (unsigned int s, unsigned char *str, 72 unsigned int length); 73 74 static unsigned char *write_little_endian (unsigned int s, unsigned char *str, 75 unsigned int length) 76 { 73 77 uint_t i; 74 78 for (i = 0; i < length; i++) { -
src/io/source_wavread.c
rafa21cdc r80d0083 61 61 }; 62 62 63 unsigned int read_little_endian (unsigned char *buf, unsigned int length); 64 unsigned int read_little_endian (unsigned char *buf, unsigned int length) { 63 static unsigned int read_little_endian (unsigned char *buf, 64 unsigned int length); 65 66 static unsigned int read_little_endian (unsigned char *buf, 67 unsigned int length) 68 { 65 69 uint_t i, ret = 0; 66 70 for (i = 0; i < length; i++) {
Note: See TracChangeset
for help on using the changeset viewer.