Commit 567abd22 authored by schreibfaul1's avatar schreibfaul1

typing short -> int16_t, long int32_t

parent f96506ba
......@@ -3,7 +3,7 @@
*
* Created on: Oct 26.2018
*
* Version 3.0.9l
* Version 3.0.10
* Updated on: May 22.2024
* Author: Wolle (schreibfaul1)
*
......@@ -4448,7 +4448,7 @@ int Audio::sendBytes(uint8_t* data, size_t len) {
case CODEC_M4A: m_decodeError = AACDecode(data, &bytesLeft, m_outBuff); break;
case CODEC_FLAC: m_decodeError = FLACDecode(data, &bytesLeft, m_outBuff); break;
case CODEC_OPUS: m_decodeError = OPUSDecode(data, &bytesLeft, m_outBuff); break;
case CODEC_VORBIS: m_decodeError = VORBISDecode(data, (int*)&bytesLeft, m_outBuff); break;
case CODEC_VORBIS: m_decodeError = VORBISDecode(data, &bytesLeft, m_outBuff); break;
default: {
log_e("no valid codec found codec = %d", m_codec);
stopSong();
......
......@@ -3,7 +3,7 @@
*
* Created on: Oct 28,2018
*
* Version 3.0.9l
* Version 3.0.10
* Updated on: May 18.2024
* Author: Wolle (schreibfaul1)
*/
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment