1. 08 May, 2017 1 commit
  2. 03 Jan, 2017 1 commit
  3. 26 Feb, 2016 1 commit
  4. 01 Jan, 2015 1 commit
  5. 13 Jan, 2014 1 commit
  6. 06 Jan, 2014 1 commit
  7. 22 Dec, 2013 1 commit
  8. 02 Dec, 2013 2 commits
  9. 22 Nov, 2013 1 commit
  10. 30 Oct, 2013 1 commit
  11. 15 Oct, 2013 1 commit
  12. 08 Apr, 2013 1 commit
  13. 01 Feb, 2013 4 commits
  14. 31 Jan, 2013 1 commit
  15. 30 Jan, 2013 1 commit
  16. 20 Oct, 2011 1 commit
  17. 19 Oct, 2011 1 commit
  18. 29 Jan, 2011 1 commit
  19. 01 Jan, 2010 1 commit
  20. 19 Nov, 2009 1 commit
  21. 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
  22. 07 Jan, 2009 4 commits
  23. 11 Nov, 2008 2 commits
  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. 23 Oct, 2008 2 commits
  26. 21 Oct, 2008 3 commits
  27. 29 Sep, 2008 3 commits
    • 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
    • Max Kellermann's avatar
      assume stdint.h and stddef.h are available · a7651b9d
      Max Kellermann authored
      Since we use a C99 compiler now, we can assert that the C99 standard
      headers are available, no need for complicated compile time checks.
      Kill mpd_types.h.
      a7651b9d
    • 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