1. 23 Apr, 2023 1 commit
  2. 19 Apr, 2023 2 commits
    • Wolle's avatar
      better error recognition · b1a3ffbe
      Wolle authored
      Introduction of a variable for the error code of the decoder,
      Avoiding an overflow of the InBuffer by corrupted audio files
      b1a3ffbe
    • Wolle's avatar
      force end of packet · cb576f29
      Wolle authored
      cb576f29
  3. 11 Apr, 2023 2 commits
  4. 10 Apr, 2023 5 commits
  5. 08 Apr, 2023 8 commits
  6. 07 Apr, 2023 6 commits
  7. 05 Apr, 2023 2 commits
  8. 30 Mar, 2023 1 commit
  9. 29 Mar, 2023 5 commits
  10. 28 Mar, 2023 1 commit
    • Wolle's avatar
      lyrics · 335858b0
      Wolle authored
      335858b0
  11. 27 Mar, 2023 1 commit
  12. 26 Mar, 2023 1 commit
  13. 24 Mar, 2023 1 commit
  14. 16 Mar, 2023 3 commits
    • Wolle's avatar
      Update Audio.cpp · 50b80e27
      Wolle authored
      50b80e27
    • Wolle's avatar
      replace strlwr() by own function · 2c6a8ed2
      Wolle authored
      strlwr() is not standard C function
      avoid indexer error
      2c6a8ed2
    • Wolle's avatar
      send eof if audio file is corrupt · 3592f692
      Wolle authored
      ````c++
      if(InBuff.bufferFilled()){
          if(!readID3V1Tag()){
              int bytesDecoded = sendBytes(InBuff.getReadPtr(), InBuff.bufferFilled());
              if(m_f_playing){
                  if(bytesDecoded > 2){InBuff.bytesWasRead(bytesDecoded); return;}
              }
              AUDIO_INFO("audio file is corrupt --> send EOF"); // no return, fall through
          }
      }
      ````
      3592f692
  15. 07 Mar, 2023 1 commit