1. 03 Jan, 2018 1 commit
    • Max Kellermann's avatar
      player/Thread: don't send silence if decoder is slow · 98a7c62d
      Max Kellermann authored
      The output plugin shall decide whether to insert silence or do nothing
      at all.  The ALSA output plugin has already implemented this.
      Inserting silence is not necessary or helpful for some plugins, and
      may even hurt them (e.g. "recorder").
      98a7c62d
  2. 30 Dec, 2017 3 commits
  3. 20 Dec, 2017 1 commit
  4. 03 Dec, 2017 2 commits
  5. 08 May, 2017 1 commit
  6. 03 Jan, 2017 1 commit
  7. 23 Nov, 2016 2 commits
  8. 26 Feb, 2016 1 commit
  9. 17 Mar, 2015 1 commit
  10. 01 Jan, 2015 1 commit
  11. 29 Aug, 2014 1 commit
  12. 12 Aug, 2014 2 commits
  13. 13 Jan, 2014 1 commit
  14. 28 Oct, 2013 2 commits
  15. 25 Oct, 2013 1 commit
  16. 19 Oct, 2013 1 commit
  17. 02 Oct, 2013 1 commit
  18. 26 Sep, 2013 3 commits
  19. 03 Aug, 2013 1 commit
  20. 30 Jul, 2013 1 commit
  21. 04 Jan, 2013 2 commits
  22. 29 Jan, 2011 1 commit
  23. 02 May, 2010 2 commits
  24. 17 Feb, 2010 1 commit
    • Max Kellermann's avatar
      replay_gain: reimplement as a filter plugin · 752dfb3d
      Max Kellermann authored
      Apply the replay gain in the output thread.  This means a new setting
      will be active instantly, without going through the whole music pipe.
      And we might have different replay gain settings for each audio output
      device.
      752dfb3d
  25. 01 Jan, 2010 1 commit
  26. 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
  27. 10 Mar, 2009 1 commit
    • Max Kellermann's avatar
      music_chunk: increased chunk size to 4 kB · 3ef8cba2
      Max Kellermann authored
      A larger chunk size means less overhead for managing them.  4 kB seems
      to be a reasonable choice: it contains 23 ms of 44.1 kHz 16 bit stereo
      data, or 3 ms of 192 kHz 24 bit stereo data.  The original value of
      1020 seemed to be too small, there were quite a lot of system calls
      and context switches.
      3ef8cba2
  28. 08 Mar, 2009 1 commit
    • Max Kellermann's avatar
      music_chunk: added assertions on the audio format · 94d1a87d
      Max Kellermann authored
      In !NDEBUG, remember which audio_format is stored in every chunk and
      every pipe.  Check the audio_format of every new data block appended
      to the music_chunk, and the format of every new chunk appended to the
      music_pipe.
      94d1a87d
  29. 07 Mar, 2009 1 commit
  30. 05 Mar, 2009 1 commit
    • Max Kellermann's avatar
      pipe: added music_buffer, rewrite music_pipe · 01cf7fea
      Max Kellermann authored
      Turn the music_pipe into a simple music_chunk queue.  The music_chunk
      allocation code is moved to music_buffer, and is now managed with a
      linked list instead of a ring buffer.  Two separate music_pipe objects
      are used by the decoder for the "current" and the "next" song, which
      greatly simplifies the cross-fading code.
      01cf7fea