1. 08 Jul, 2022 4 commits
    • Wolle's avatar
      fix some compiler warnings · 0ec4988a
      Wolle authored
      0ec4988a
    • Wolle's avatar
      fix some compiler warnings · ba425b61
      Wolle authored
      ba425b61
    • Wolle's avatar
      fix some compiler warnings · 9d035529
      Wolle authored
      /Audio.cpp:2254:14: warning: unused variable 'pos' [-Wunused-variable]
      Audio.cpp:2538:25: warning: unused variable 'size' [-Wunused-variable]
      Audio.cpp:2496:29: warning: unused variable 'seqNr' [-Wunused-variable]
      Audio.cpp:2433:10: warning: unused variable 'f_entry' [-Wunused-variable]
      Audio.cpp:2434:10: warning: variable 'f_ExtInf' set but not used [-Wunused-but-set-variable]
      Audio.cpp:2435:9: warning: unused variable 'pos' [-Wunused-variable]
      Audio.cpp:2436:11: warning: unused variable 'host' [-Wunused-variable]
      Audio.cpp:2438:10: warning: variable 'f_StreamInf' set but not used [-Wunused-but-set-variable]
      Audio.cpp:3440:38: warning: format '%s' expects a matching 'char*' argument [-Wformat=]
      Audio.cpp:2496:29: warning: 'seqNr' defined but not used [-Wunused-variable]
      Audio.cpp:3100:33: warning: '%s' directive writing up to 511 bytes into a region of size 492 [-Wformat-overflow=]
      9d035529
    • Wolle's avatar
      better routines for asx, pls and m3u playlists · 6b1512e7
      Wolle authored
      no new features, but the code is more structured
      6b1512e7
  2. 22 Jun, 2022 1 commit
  3. 20 Jun, 2022 2 commits
  4. 18 Jun, 2022 1 commit
  5. 02 Jun, 2022 3 commits
  6. 27 May, 2022 2 commits
  7. 26 May, 2022 1 commit
  8. 25 May, 2022 1 commit
  9. 20 May, 2022 1 commit
    • Wolle's avatar
      Add files via upload · a8d3c039
      Wolle authored
      terminate VORBIS COMMENT
      
      add debug function in processwebstream()
      a8d3c039
  10. 19 May, 2022 2 commits
  11. 18 May, 2022 1 commit
  12. 03 May, 2022 1 commit
  13. 12 Apr, 2022 1 commit
  14. 06 Apr, 2022 1 commit
  15. 04 Apr, 2022 1 commit
  16. 21 Mar, 2022 1 commit
  17. 18 Mar, 2022 1 commit
  18. 17 Mar, 2022 1 commit
  19. 20 Feb, 2022 1 commit
  20. 19 Feb, 2022 1 commit
    • Wolle's avatar
      resume local file after stopSong() · ed773f15
      Wolle authored
      uint32_t stopSong(); //returns the real fileposition at current time
      bool connecttoFS(fs::FS &fs, const char* path, uint32_t resumeFilePos = 0); // jumps to resumeFilePos after reading fileheader
      ed773f15
  21. 14 Feb, 2022 2 commits
  22. 13 Feb, 2022 3 commits
    • Wolle's avatar
      Merge pull request #280 from seife/devel · cda882a9
      Wolle authored
      fix stuttering AAC SBR playback when PSRAM is available
      cda882a9
    • Stefan Seyfried's avatar
      AACDecoder_FreeBuffers: fix free of *m_pce · d7055b61
      Stefan Seyfried authored
      It was allocated in one 16x chunk, so only freeing one chunk is enough
      d7055b61
    • Stefan Seyfried's avatar
      aac_decoder: make sure data ends up in internal RAM · 6bf4cd37
      Stefan Seyfried authored
      The ESP-IDF core code actually uses PSRAM also for standard "malloc" &
      friends if it is available and the allocation id bigger than a certain
      threshold (4kB by default). To make sure that the AAC decoder buffers,
      especially the m_PSInfoSBR end up in RAM, use low level allocator calls
      to specify where to alloc stuff. This also gets rid of the "try malloc
      RAM first, if this fails fall back to ps_malloc" code, which probably
      did not do what was wanted anyway.
      This fixes stuttering SBR playback for me, which was caused by
      m_PSInfoSBR ending up in PSRAM unexpectedly.
      6bf4cd37
  23. 05 Feb, 2022 5 commits
  24. 04 Feb, 2022 2 commits