[shared-module/audioio/WaveFile.h] Change sample_rate from uint16_t to uint32_t so it matches the sample rate type parsed from the WAV header format, fix #1922

This commit is contained in:
Carlos 2019-06-04 21:30:55 -05:00
parent c5a4e19d6f
commit 671178c8c4

View File

@ -44,7 +44,7 @@ typedef struct {
uint32_t bytes_remaining;
uint8_t channel_count;
uint16_t sample_rate;
uint32_t sample_rate;
uint32_t len;
pyb_file_obj_t* file;