1. 24 Apr, 2014 1 commit
  2. 24 Jan, 2014 1 commit
  3. 22 Jan, 2014 1 commit
  4. 19 Jan, 2014 1 commit
  5. 13 Jan, 2014 1 commit
  6. 30 Oct, 2013 1 commit
  7. 04 Sep, 2013 1 commit
  8. 28 Jul, 2013 1 commit
  9. 03 Jan, 2013 1 commit
  10. 02 Jan, 2013 1 commit
  11. 15 Aug, 2012 1 commit
  12. 07 Aug, 2012 1 commit
  13. 02 Aug, 2012 1 commit
  14. 01 Aug, 2012 1 commit
  15. 10 Sep, 2011 1 commit
    • Max Kellermann's avatar
      db_plugin: introducing a plugin API for the song database · 7819aa6b
      Max Kellermann authored
      First draft, not really pluggable currently - hard-coded to use the
      "simple" plugin, and calls several of its internal functions.
      
      The API is very simple currently, all searches are still performed
      over the root "directory" object.  Future changes to the API will move
      those search implementations into the plugin, to allow more efficient
      implementations, or implementations that don't have the whole tree in
      memory all the time.
      7819aa6b
  16. 30 Aug, 2011 1 commit
  17. 29 Aug, 2011 1 commit
  18. 28 Aug, 2011 1 commit
  19. 29 Jan, 2011 1 commit
  20. 01 Jan, 2010 1 commit
  21. 16 Oct, 2009 1 commit
  22. 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
  23. 02 Mar, 2009 1 commit
  24. 31 Oct, 2008 1 commit
    • Max Kellermann's avatar
      added prefix to header macros · ea515494
      Max Kellermann authored
      "LOG_H" is a macro which is also used by ffmpeg/log.h.  This is
      ffmpeg's fault, because short macros should be reserved for
      applications, but since it's always a good idea to choose prefixed
      macro names, even for applications, we are going to do that in MPD.
      ea515494
  25. 09 Oct, 2008 1 commit
  26. 08 Oct, 2008 1 commit
  27. 07 Sep, 2008 2 commits
    • Max Kellermann's avatar
      tag: added buffered versions of the tag_print.c code · 59efed3e
      Max Kellermann authored
      Currently, when the tag cache is being serialized to hard disk, the
      stdio buffer is flushed before every song, because tag_print.c
      performs unbuffered writes on the raw file descriptor.  Unfortunately,
      the fdprintf() API allows buffered I/O only for a client connection by
      looking up the client pointer owning the file descriptor - for stdio,
      this is not possible.  To re-enable proper stdio buffering, we have to
      duplicate the tag_print.c code without fprintf() instead of our custom
      fdprintf() hack.  Add this duplicated code to tag_save.c.
      59efed3e
    • Max Kellermann's avatar
      tag: moved code to tag_print.c · 386c3031
      Max Kellermann authored
      Move everything which dumps a tag to a file descriptor to tag_print.c.
      This relaxes dependencies and splits the code into smaller parts.
      386c3031
  28. 26 Aug, 2008 6 commits
  29. 02 Jun, 2008 1 commit
  30. 13 Apr, 2008 4 commits
  31. 12 Apr, 2008 1 commit
    • Max Kellermann's avatar
      clean up CPP includes · c89b358c
      Max Kellermann authored
      Try to only include headers which are really needed.  We should
      particularly check all "headers including other headers".  The
      long-term goal is to have a manageable, small API for plugins
      (decoders, output) without so many mpd internals cluttering the
      namespace.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7319 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      c89b358c