1. 01 Jan, 2021 1 commit
  2. 18 Jan, 2020 1 commit
  3. 17 Jun, 2019 1 commit
  4. 31 Oct, 2018 1 commit
  5. 03 Jan, 2017 1 commit
  6. 26 Feb, 2016 1 commit
  7. 28 Dec, 2015 1 commit
  8. 24 Mar, 2015 2 commits
  9. 01 Jan, 2015 1 commit
  10. 10 May, 2014 1 commit
  11. 20 Jan, 2014 1 commit
  12. 13 Jan, 2014 1 commit
  13. 09 Jan, 2014 1 commit
    • Max Kellermann's avatar
      DetachedSong: fork of struct Song · 322b0616
      Max Kellermann authored
      From now on, struct Song will be used by the database only, and
      DetachedSong will be used by everybody else.  DetachedSong is easier
      to use, but Song has lower overhead.
      322b0616
  14. 30 Oct, 2013 1 commit
  15. 28 Oct, 2013 1 commit
  16. 20 Oct, 2013 1 commit
  17. 19 Oct, 2013 1 commit
  18. 04 Sep, 2013 1 commit
  19. 10 Aug, 2013 1 commit
  20. 28 Jul, 2013 1 commit
  21. 02 Jan, 2013 1 commit
  22. 27 Sep, 2012 1 commit
  23. 09 Feb, 2012 1 commit
  24. 11 Sep, 2011 2 commits
  25. 29 Jan, 2011 1 commit
  26. 10 Jan, 2011 1 commit
  27. 01 Jan, 2010 1 commit
  28. 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
  29. 04 Feb, 2009 2 commits
  30. 25 Jan, 2009 1 commit
  31. 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
  32. 14 Oct, 2008 1 commit
  33. 08 Oct, 2008 1 commit
  34. 26 Aug, 2008 4 commits
    • Max Kellermann's avatar
      added flag "decoder.seeking" · 1c196478
      Max Kellermann authored
      This flag is used internally; it is set by decoder_seek_where(), and
      indicates that the decoder plugin has begun the seek process.  It is
      used for the case that the decoder plugin has to read data during the
      seek process.  Before this patch, that was impossible, because
      decoder_read() would refuse to read data unless dc->command is NONE.
      This patch is kind of a dirty workaround, and needs to be redesigned
      later.
      1c196478
    • Max Kellermann's avatar
      renamed InputPlugin to struct decoder_plugin · e41be362
      Max Kellermann authored
      "decoder plugin" is a better name than "input plugin", since the
      plugin does not actually do the input - InputStream does.  Also don't
      use typedef, so we can forward-declare it if required.
      e41be362
    • Max Kellermann's avatar
      moved convState to struct decoder · 2e9169de
      Max Kellermann authored
      Since we moved all PCM conversions to decoder_data(), the attribute
      convState isn't being used anymore by the OutputBuffer code.  Move it
      to struct decoder.
      2e9169de
    • Max Kellermann's avatar
      added struct decoder · 154aa496
      Max Kellermann authored
      The decoder struct should later be made opaque to the decoder plugin,
      because maintaining a stable struct ABI is quite difficult.  The ABI
      should only consist of a small number of stable functions.
      154aa496