1. 03 Jan, 2017 1 commit
  2. 26 Feb, 2016 1 commit
  3. 01 Jan, 2015 1 commit
  4. 26 Jan, 2014 1 commit
  5. 24 Jan, 2014 1 commit
  6. 18 Jan, 2014 1 commit
  7. 13 Jan, 2014 1 commit
  8. 06 Jan, 2014 1 commit
  9. 22 Dec, 2013 1 commit
  10. 02 Dec, 2013 2 commits
  11. 22 Nov, 2013 1 commit
  12. 30 Oct, 2013 1 commit
  13. 15 Oct, 2013 1 commit
  14. 08 Apr, 2013 1 commit
  15. 01 Feb, 2013 4 commits
  16. 31 Jan, 2013 1 commit
  17. 30 Jan, 2013 1 commit
  18. 20 Oct, 2011 1 commit
  19. 19 Oct, 2011 1 commit
  20. 29 Jan, 2011 1 commit
  21. 01 Jan, 2010 1 commit
  22. 19 Nov, 2009 1 commit
  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. 07 Jan, 2009 4 commits
  25. 11 Nov, 2008 2 commits
  26. 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
  27. 23 Oct, 2008 2 commits
  28. 21 Oct, 2008 3 commits
  29. 29 Sep, 2008 1 commit
    • Max Kellermann's avatar
      pcm_utils: pass only one buffer size to pcm_mix() · c85b570a
      Max Kellermann authored
      pcm_mix() might overflow the destination buffer if it is smaller than
      the second buffer.  This is ok because the physical buffer size passed
      by cross_fade_apply() is always big enough, but clutters pcm_mix()
      with complicated length checks and contains a dangerous buffer
      overflow pitfall.  Simplify pcm_mix()/pcm_add() and pass only the
      smaller buffer size; let cross_fade_apply() do the memcpy().
      c85b570a