1. 13 Oct, 2009 1 commit
  2. 03 Aug, 2009 5 commits
  3. 09 Jul, 2009 1 commit
  4. 07 Jul, 2009 2 commits
    • Max Kellermann's avatar
      tag_id3: revised "performer" tag support · adb2f66c
      Max Kellermann authored
      According to the ID3 2.4 documentation, "TOPE" is "Original
      artist/performer", not "performer".  Removed "TOPE" support.  Instead,
      map TPE3 ("Conductor/performer refinement") and TPE4 ("Interpreted,
      remixed, or otherwise modified by") to "performer".
      adb2f66c
    • 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
  5. 06 May, 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. 02 Mar, 2009 2 commits
  8. 24 Jan, 2009 2 commits
  9. 17 Jan, 2009 1 commit
  10. 14 Jan, 2009 1 commit
  11. 04 Jan, 2009 1 commit
  12. 03 Jan, 2009 1 commit
  13. 29 Dec, 2008 2 commits
  14. 02 Dec, 2008 1 commit
  15. 17 Oct, 2008 1 commit
  16. 15 Oct, 2008 2 commits
    • Max Kellermann's avatar
      path, tag_id3: use g_convert() instead of charConv.c · 8746a58a
      Max Kellermann authored
      GLib provides an easier API for character set conversion than iconv().
      Use g_convert() / g_convert_with_fallback() for all character
      conversions.  We should optimize the path.h API later to return a
      newly allocated buffer, so we can just pass GLib's return value.
      8746a58a
    • Max Kellermann's avatar
      tag_id3: fix indentation · 2a47e90c
      Max Kellermann authored
      Indentation was broken in tag_id3.c: it used 4 spaces instead of tabs.
      2a47e90c
  17. 29 Aug, 2008 4 commits
  18. 28 Aug, 2008 2 commits
    • Max Kellermann's avatar
      const pointers · bc1c8835
      Max Kellermann authored
      The usual bunch of pointer arguments which should be const.
      bc1c8835
    • Max Kellermann's avatar
      unsigned integers and size_t · 801c71ed
      Max Kellermann authored
      Use "unsigned int" whenever negative values are not meaningful.  Use
      size_t whenever we are going to describe buffer sizes.
      801c71ed
  19. 26 Aug, 2008 1 commit
  20. 12 Apr, 2008 3 commits
  21. 26 Mar, 2008 2 commits
    • Max Kellermann's avatar
      use size_t · 27f12c17
      Max Kellermann authored
      When dealing with in-memory lengths, the standard type "size_t" should
      be used.  Missing one can be quite dangerous, because an attacker
      could provoke an integer under-/overflow, which may provide an attack
      vector.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7205 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      27f12c17
    • Max Kellermann's avatar
      eliminated duplicate initialization · c5b524e3
      Max Kellermann authored
      Local variables which are never read before the first assignment don't
      need initialization.  Saves a few bytes of text.  Also don't reset
      variables which are never read until function return.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7199 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      c5b524e3
  22. 05 Feb, 2008 1 commit
  23. 26 Jan, 2008 1 commit
  24. 03 Jan, 2008 1 commit
    • Eric Wong's avatar
      Cleanup #includes of standard system headers and put them in one place · cb8f1af3
      Eric Wong authored
      This will make refactoring features easier, especially now that
      pthreads support and larger refactorings are on the horizon.
      
      Hopefully, this will make porting to other platforms (even
      non-UNIX-like ones for masochists) easier, too.
      
      os_compat.h will house all the #includes for system headers
      considered to be the "core" of MPD.  Headers for optional
      features will be left to individual source files.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7130 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      cb8f1af3