1. 01 Jan, 2021 1 commit
  2. 18 Jan, 2020 1 commit
  3. 17 Jun, 2019 1 commit
  4. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  5. 31 Oct, 2018 1 commit
  6. 03 Jan, 2017 1 commit
  7. 10 Nov, 2016 1 commit
  8. 29 Oct, 2016 1 commit
  9. 26 Feb, 2016 1 commit
  10. 01 Jan, 2015 1 commit
  11. 30 Jul, 2014 1 commit
  12. 13 Jan, 2014 1 commit
  13. 04 Sep, 2013 1 commit
  14. 30 Jan, 2013 1 commit
  15. 03 Jan, 2013 2 commits
  16. 02 Jan, 2013 1 commit
  17. 12 Feb, 2012 1 commit
  18. 29 Jan, 2011 1 commit
  19. 21 Jul, 2010 1 commit
  20. 01 Jan, 2010 1 commit
  21. 07 Nov, 2009 1 commit
  22. 01 Nov, 2009 1 commit
    • Max Kellermann's avatar
      text_file: allocate line buffers dynamically · 9bcfd3a4
      Max Kellermann authored
      Use a single GString buffer object in all functions loading the
      database.  Enlarge it automatically for long lines.  This eliminates
      the maximum line length for tag values.  There is still an upper limit
      of 512 kB to prevent denial of service, but that's reasonable I guess.
      9bcfd3a4
  23. 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
  24. 02 Mar, 2009 1 commit
  25. 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
  26. 09 Oct, 2008 1 commit
  27. 08 Oct, 2008 1 commit
  28. 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
  29. 26 Aug, 2008 6 commits
  30. 02 Jun, 2008 1 commit
  31. 13 Apr, 2008 3 commits