mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-21 15:56:58 +02:00
Update dr_mp3.
This commit is contained in:
+5
-2
@@ -1,5 +1,5 @@
|
||||
// MP3 audio decoder. Public domain. See "unlicense" statement at the end of this file.
|
||||
// dr_mp3 - v0.4.0 - 2018-12-16
|
||||
// dr_mp3 - v0.4.1 - 2018-12-30
|
||||
//
|
||||
// David Reid - mackron@gmail.com
|
||||
//
|
||||
@@ -3279,7 +3279,7 @@ drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCo
|
||||
} else {
|
||||
// The next seek point is not in the current MP3 frame, so continue on to the next one. The first thing to do is cycle the cached
|
||||
// MP3 frame info.
|
||||
for (int i = 0; i < drmp3_countof(mp3FrameInfo)-1; ++i) {
|
||||
for (size_t i = 0; i < drmp3_countof(mp3FrameInfo)-1; ++i) {
|
||||
mp3FrameInfo[i] = mp3FrameInfo[i+1];
|
||||
}
|
||||
|
||||
@@ -3450,6 +3450,9 @@ void drmp3_free(void* p)
|
||||
// REVISION HISTORY
|
||||
// ================
|
||||
//
|
||||
// v0.4.1 - 2018-12-30
|
||||
// - Fix a warning.
|
||||
//
|
||||
// v0.4.0 - 2018-12-16
|
||||
// - API CHANGE: Rename some APIs:
|
||||
// - drmp3_read_f32 -> to drmp3_read_pcm_frames_f32
|
||||
|
||||
Reference in New Issue
Block a user