summaryrefslogtreecommitdiff
path: root/test/run_output.cxx
AgeCommit message (Collapse)Author
2019-02-05test/ConfigGlue: merge duplicate code from various debug programsMax Kellermann
2018-11-19check.h: remove obsolete headerMax Kellermann
Since we switched from autotools to Meson in commit 94592c14062d5afc9482d11baa401648082022c0, we don't need to include `config.h` early to properly enable large file support. Meson passes the required macros on the compiler command line instead of defining them in `config.h`. This means we can include `config.h` at any time, whenever we want to check its macros, and there are no ordering constraints.
2018-10-31*: copyright year 2018Max Kellermann
2018-07-18config/Migrate: library to migrate deprecated settingsMax Kellermann
2018-07-17test/run_output: use struct ConfigDataMax Kellermann
2018-07-17test/*: catch and print all exceptionsMax Kellermann
2018-07-16config/Config*: rename files, drop "Config" prefixMax Kellermann
2017-08-10output/Interface: convert to abstract classMax Kellermann
Yet another C-style vtable replaced with C++.
2017-08-08output/Interface: define a new struct AudioOutputMax Kellermann
Hide struct FilteredAudioOutput from the plugins, preparing for hiding MPD's core internals.
2017-08-07output/Internal: rename source to Filtered.cxxMax Kellermann
2017-08-07filter/Internal: rename struct AudioOutput to FilteredAudioOutputMax Kellermann
Prepare to add an abstract class AudioOutput, to be implemented by plugins, to get rid of the C-style vtable.
2017-08-07test/run_output: use AudioOutput::{Begin,Finish}Destroy()Max Kellermann
2017-05-23output/Internal: move "client" to struct AudioOutputControlMax Kellermann
2017-05-15Merge tag 'v0.20.7'Max Kellermann
release v0.20.7
2017-05-08*: add "noexcept" to many, many function prototypesMax Kellermann
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing.
2017-04-28output/Internal: move thread-specific stuff to AudioOutputControlMax Kellermann
The AudioOutput struct (which is exposed to all plugins) should not be aware that it's being controlled by another thread.
2017-02-10thread/Thread: use BoundMethodMax Kellermann
2017-02-10test/*: use class EventThread instead of ScopeIOThreadMax Kellermann
2017-01-25output/Plugin: convert pointers to referencesMax Kellermann
2017-01-17AudioFormat: replace struct audio_format_string with class StringBuffer, ↵Max Kellermann
return it
2017-01-03update copyright yearMax Kellermann
2016-12-14output/Client: new interface to replace direct access to class PlayerControlMax Kellermann
2016-12-03decoder/Control: add attribute configured_audio_formatMax Kellermann
Obsoletes the same variable from AudioConfig.cxx.
2016-12-03player/Control: make ReplayGainConfig constMax Kellermann
2016-12-03filter/ReplayGain: add ReplayGainConfig copyMax Kellermann
Remove dependency on ReplayGain global variables.
2016-11-23filter/Plugin: rename with CamelCaseMax Kellermann
2016-11-09output/Plugin: remove 'Error&' parameters, use C++ exceptions onlyMax Kellermann
2016-10-28AudioParser: throw exception on errorMax Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-12-18fs/io/Reader: use C++ exceptions instead of class ErrorMax Kellermann
2015-12-16config/ConfigFile: use std::exception on syntax errorMax Kellermann
2015-08-15test/stdbin.h: remove obsolete headerMax Kellermann
2015-08-15PlayerThread, ...: move to src/player/Max Kellermann
2015-01-21config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann
The old struct config_param remains only for top-level string options.
2015-01-21config/Option: convert to strictly-typed enumMax Kellermann
2015-01-21ConfigData: move struct config_param to Param.hxxMax Kellermann
2015-01-01Copyright year 2015Max Kellermann
2014-12-05configure.ac: require GLib 2.32 (if enabled)Max Kellermann
Since version 2.32, g_thread_init() is deprecated and a no-op. Let's upgrade that (optional) dependency so we can remove all those g_thread_init() calls.
2014-10-07test/run_input, ...: add struct ScopeIOThreadMax Kellermann
Auto-stop the IO thread in all error handlers.
2014-08-30PlayerControl: make settings "const"Max Kellermann
2014-02-21PlayerListener: new interface to replace GlobalEvents accessMax Kellermann
2014-02-20test/run_{filter,output}: use config_find_block()Max Kellermann
2014-02-19Mixer: add class MixerListenerMax Kellermann
Use a listener interface instead of GlobalEvents.
2014-02-18test: various fixups for building without GLibMax Kellermann
2014-02-05MixerPlugin: add EventLoop& init() parameterMax Kellermann
2014-02-05event/Loop: remove the dummy constructor argumentMax Kellermann
2014-01-29output: move functions into the AudioOutput structMax Kellermann
2014-01-28output: rename source filesMax Kellermann
2014-01-28output: rename struct audio_output to AudioOutputMax Kellermann
2014-01-28OutputAll: convert to class, move instance to class PartitionMax Kellermann
Another big chunk of code for multi-player support.