Merge pull request #1926 from C47D/fix_wav_samplerate

[shared-module/audioio/WaveFile.h] Change sample_rate from uint16_t t…
This commit is contained in:
Scott Shawcroft 2019-06-05 10:07:08 -07:00 committed by GitHub
commit 8f57841593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;