Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PlayerThread, ...: move to src/player/ | Max Kellermann | 2015-08-15 | 1 | -1/+1 |
| | |||||
* | config/Param: split block-specific attributes to new struct ConfigBlock | Max Kellermann | 2015-01-21 | 1 | -7/+7 |
| | | | | The old struct config_param remains only for top-level string options. | ||||
* | config/Option: convert to strictly-typed enum | Max Kellermann | 2015-01-21 | 1 | -1/+1 |
| | |||||
* | ConfigData: move struct config_param to Param.hxx | Max Kellermann | 2015-01-21 | 1 | -1/+1 |
| | |||||
* | Copyright year 2015 | Max Kellermann | 2015-01-01 | 1 | -1/+1 |
| | |||||
* | MusicChunk: use SignedSongTime for the time stamp | Max Kellermann | 2014-08-29 | 1 | -2/+2 |
| | |||||
* | MultipleOutputs: use SignedSongTime for elapsed_time | Max Kellermann | 2014-08-29 | 1 | -6/+6 |
| | |||||
* | MusicChunk: rename struct to MusicChunk | Max Kellermann | 2014-08-12 | 1 | -6/+6 |
| | |||||
* | MultipleOutputs: ensure input_audio_format is zero-initialised | Pete Beardmore | 2014-03-14 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | -fixes SIGABRT when mpd is started from a previously paused state -regression introduced by commit: f5a923b9d16e4c63942a033d1bdb2ab150aae342: 'OutputAll: convert to class, move instance to class Partition' -input_audio_format was previously declared using the static modifier ensuring it was zero-initialised by default -the current default-initialised input_audio_format contains garbage at runtime which allows the AudioFormat.IsDefined() 'fail fast' test in MultipleOutputs::Update to pass and the SIGABRT follows in AudioOutput::Open when passed the invalid input_audio_format struct -switching AudioFormat.IsDefined() for AudioFormat.IsValid() is an alternative workaround | ||||
* | ConfigGlobal: eliminate function config_get_next_param() | Max Kellermann | 2014-02-20 | 1 | -3/+2 |
| | |||||
* | Mixer: add class MixerListener | Max Kellermann | 2014-02-19 | 1 | -6/+12 |
| | | | | Use a listener interface instead of GlobalEvents. | ||||
* | MixerPlugin: add EventLoop& init() parameter | Max Kellermann | 2014-02-05 | 1 | -5/+5 |
| | |||||
* | output: rename "chunk" to "current_chunk" | Max Kellermann | 2014-01-29 | 1 | -7/+8 |
| | |||||
* | output: move functions into the AudioOutput struct | Max Kellermann | 2014-01-29 | 1 | -16/+14 |
| | |||||
* | output: rename source files | Max Kellermann | 2014-01-28 | 1 | -2/+2 |
| | |||||
* | output: rename struct audio_output to AudioOutput | Max Kellermann | 2014-01-28 | 1 | -6/+6 |
| | |||||
* | OutputAll: convert to class, move instance to class Partition | Max Kellermann | 2014-01-28 | 1 | -0/+477 |
Another big chunk of code for multi-player support. |