You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just to let you know (and the others maybe) that the minimp3 code used here is "broken" for embedded use.
It will crash with a stack overflow (it requires more than 16KB of stack!)
You can update the copy with the one from the following repo: https://github.com/chmorgan/minimp3/blob/embedded/minimp3.h
Just donc put the mp3dec_t dec in the stack, but put it in global.
Bonus: the other minimp3 file also implement fixed point arithmetics, far better for the esp32.
Cheers!
The text was updated successfully, but these errors were encountered:
Hello,
Thank you for the demo!
Just to let you know (and the others maybe) that the minimp3 code used here is "broken" for embedded use.
It will crash with a stack overflow (it requires more than 16KB of stack!)
You can update the copy with the one from the following repo: https://github.com/chmorgan/minimp3/blob/embedded/minimp3.h
Just donc put the mp3dec_t dec in the stack, but put it in global.
Bonus: the other minimp3 file also implement fixed point arithmetics, far better for the esp32.
Cheers!
The text was updated successfully, but these errors were encountered: