1. 13 Oct, 2009 1 commit
  2. 09 Jul, 2009 1 commit
  3. 07 Jul, 2009 1 commit
    • Max Kellermann's avatar
      tag: added tag "AlbumArtistSort" · 7246d672
      Max Kellermann authored
      The tag_id3.c library supports both the documented "TSO2" tag, and the
      inofficial TXXX/ALBUMARTISTSORT.
      
      The Vorbis/FLAC decoder automatically supports the new tag, without
      further change.
      7246d672
  4. 28 Apr, 2009 2 commits
  5. 15 Mar, 2009 1 commit
  6. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  7. 28 Feb, 2009 3 commits
  8. 27 Feb, 2009 4 commits
  9. 17 Feb, 2009 1 commit
  10. 25 Jan, 2009 4 commits
  11. 24 Jan, 2009 1 commit
  12. 17 Jan, 2009 1 commit
  13. 14 Jan, 2009 1 commit
  14. 13 Jan, 2009 1 commit
  15. 04 Jan, 2009 2 commits
  16. 03 Jan, 2009 3 commits
  17. 28 Dec, 2008 1 commit
  18. 03 Nov, 2008 1 commit
  19. 01 Nov, 2008 3 commits
  20. 31 Oct, 2008 1 commit
  21. 08 Oct, 2008 1 commit
  22. 06 Oct, 2008 1 commit
  23. 29 Sep, 2008 1 commit
    • Eric Wong's avatar
      Switch to C99 types (retaining compat with old compilers) · 0352766d
      Eric Wong authored
      Seeing the "mpd_" prefix _everywhere_ is mind-numbing as the
      mind needs to retrain itself to skip over the first 4 tokens of
      a type to get to its meaning.  So avoid having extra characters
      on my terminal to make it easier to follow code at 2:30 am in
      the morning.
      
      Please report any new issues you may come across on Free
      toolchains.  I realize how difficult it can be to build/maintain
      cross-compiling toolchains and I have no intention of forcing
      people to upgrade their toolchains to build mpd.
      
      Tested with gcc 2.95.4 and and gcc 4.3.1 on x86-32.
      0352766d
  24. 08 Sep, 2008 1 commit
    • Max Kellermann's avatar
      use strset.h instead of tagTracker.h · f0e64ceb
      Max Kellermann authored
      With a large music database, the linear string collection in
      tagTracker.c becomes very slow.  We implemented that in a
      quick'n'dirty fashion when we removed tree.c, and now we rewrite it
      using the fast hashed string set.
      f0e64ceb
  25. 07 Sep, 2008 2 commits
    • Eric Wong's avatar
      tag: oops, of course items is now ** and not * · a5f68b3c
      Eric Wong authored
      Gah, it seems like doing sizeof here either way is error
      prone.  Too easy to leave out a '*' character we can
      forget.
      a5f68b3c
    • Eric Wong's avatar
      tag: lock all accesses to tag_pool · 3c4de5b5
      Eric Wong authored
      The tag pool is a shared global resource that is infrequently
      modified.  However, it can occasionally be modified by several
      threads, especially by the metadata_pipe for streaming metadata
      (both reading/writing).
      
      The bulk tag_item pool is NOT locked as currently only the
      update thread uses it.
      3c4de5b5