1. 18 Nov, 2009 1 commit
  2. 15 Nov, 2009 2 commits
    • Max Kellermann's avatar
      id3: allow 4 MB RIFF/AIFF tags · f51ba646
      Max Kellermann authored
      Allow RIFF/AIFF ID3 tags up to 4 MB (old limit was 256 kB).  This
      might still be too small for some users, and when somebody complains,
      we might do something more clever (like streaming the data into
      libid3tag?).
      f51ba646
    • Max Kellermann's avatar
      decoder/ffmpeg: align the output buffer · 77b95d08
      Max Kellermann authored
      On some platforms, libavcodec wants the output buffer aligned to 16
      bytes (because it uses SSE/Altivec internally).  It will segfault when
      you don't obey this rule.
      77b95d08
  3. 11 Nov, 2009 2 commits
  4. 10 Nov, 2009 4 commits
  5. 01 Nov, 2009 1 commit
    • Max Kellermann's avatar
      song_save: increased maximum line length to 32 kB · b242175e
      Max Kellermann authored
      The line buffer had a fixed size of 5 kB, and was allocated on the
      stack.  This was too small for some users.  As a hotfix, we're
      increasing the buffer size to 32 kB now, allocated on the heap.  In
      MPD 0.16, we'll switch to dynamic allocation.
      b242175e
  6. 31 Oct, 2009 1 commit
  7. 28 Oct, 2009 1 commit
    • Max Kellermann's avatar
      decoder/ffmpeg: convert metadata · 04816a63
      Max Kellermann authored
      Convert the metadata with the libavformat function av_metadata_conv().
      This ensures that canonical tag names are provided by libavformat, and
      we can remove the "artist" vs "author" workaround.
      04816a63
  8. 27 Oct, 2009 1 commit
  9. 21 Oct, 2009 1 commit
  10. 18 Oct, 2009 2 commits
  11. 16 Oct, 2009 4 commits
  12. 13 Oct, 2009 1 commit
    • Max Kellermann's avatar
      input/curl: fixed endless loop during buffering · 6037beab
      Max Kellermann authored
      When the connection is lost while buffering, the CURL input plugin may
      enter an endless loop, because it does not check the EOF condition.
      This patch makes fill_buffer() return success only if there's at least
      one buffer, which is enough of a check.x
      6037beab
  13. 11 Oct, 2009 4 commits
  14. 03 Oct, 2009 2 commits
  15. 30 Sep, 2009 3 commits
  16. 20 Sep, 2009 2 commits
  17. 10 Sep, 2009 3 commits
  18. 30 Aug, 2009 2 commits
  19. 24 Aug, 2009 2 commits
    • Anton Khirnov's avatar
      Document nextsong and nextsongid. · edb2fce6
      Anton Khirnov authored
      edb2fce6
    • Rasmus Steinke's avatar
      decoder/vorbis: faster tag scanning with ov_test_callback() · 408f7237
      Rasmus Steinke authored
      using ov_test_callback with function CALLBACKS_STREAMONLY will cause
      scanning to stop after the comment field.  ov_open (and ov_test)
      default to CALLBACKS_DEFAULT which scans the file structure causing a
      huge slowdown.  The speed improvement is huge: It scanned my files
      around 10x faster This procedure has been recommended by monthy (main
      vorbis developer) and was said to be safe for scanning files.
      408f7237
  20. 19 Aug, 2009 1 commit
    • Igor Kuzmin's avatar
      update: don't re-read unchanged container files · 9d42f4e0
      Igor Kuzmin authored
      MPD checks if every flac (possibly other types as well) file contains
      cuesheet on every update, which produces unneeded I/O. My music
      collection is on NFS share, so it's quite noticeable. IMHO, it
      shouldn't re-read unchanged files, so I wrote simple patch to fix it.
      9d42f4e0