1. 27 May, 2022 1 commit
  2. 26 May, 2022 1 commit
  3. 25 May, 2022 1 commit
  4. 20 May, 2022 1 commit
    • Wolle's avatar
      Add files via upload · a8d3c039
      Wolle authored
      terminate VORBIS COMMENT
      
      add debug function in processwebstream()
      a8d3c039
  5. 19 May, 2022 2 commits
  6. 18 May, 2022 1 commit
  7. 03 May, 2022 1 commit
  8. 12 Apr, 2022 1 commit
  9. 06 Apr, 2022 1 commit
  10. 04 Apr, 2022 1 commit
  11. 21 Mar, 2022 1 commit
  12. 18 Mar, 2022 1 commit
  13. 17 Mar, 2022 1 commit
  14. 20 Feb, 2022 1 commit
  15. 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
  16. 14 Feb, 2022 2 commits
  17. 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
  18. 05 Feb, 2022 5 commits
  19. 04 Feb, 2022 9 commits
  20. 28 Jan, 2022 2 commits
  21. 24 Jan, 2022 1 commit
  22. 23 Jan, 2022 2 commits
    • Stefan Seyfried's avatar
      add getCodec() and getCodecname() functions · 2f94eaed
      Stefan Seyfried authored
      getCodecname() allows for simple display of the used codec,
      getCodec() together with the exported enum of codec values allows for
      user defined codec names like this stupid example:
        switch (audio.getCodec()) {
          case Audio::CODEC_M4A:
          case Audio::CODEC_AAC:
            Serial.println("AAC codec!");
            break;
          case Audio::CODEC_FLAC:
          case AUDIO::CODEC_OGG_FLAC:
            Serial.println("FLAC!");
            break;
        }
      2f94eaed
    • Wolle's avatar
      Add files via upload · f3de9c0c
      Wolle authored
      f3de9c0c