summaryrefslogtreecommitdiff
path: root/test/read_mixer.cxx
AgeCommit message (Collapse)Author
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-17test/*: catch and print all exceptionsMax Kellermann
2018-01-23test/read_mixer: another kludge to work around -Wnull-dereferenceMax Kellermann
2018-01-23test/NullMixerListener: new class to fix -Wnull-dereferenceMax Kellermann
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-01-03update copyright yearMax Kellermann
2016-11-23filter/Plugin: rename with CamelCaseMax Kellermann
2016-11-10util/Error: remove obsolete classMax Kellermann
2016-09-09mixer: migrate to C++ exceptionsMax Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-01-26Merge branch 'v0.19.x'Max Kellermann
2015-01-26test/read_mixer: add missing stdlib.h includeMax 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-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-24test/DumpDatabase, ...: no g_thread_init() calls when GLib is disabledMax Kellermann
2014-02-19Mixer: add class MixerListenerMax Kellermann
Use a listener interface instead of GlobalEvents.
2014-02-06mixer/Plugin: pass AudioOutput reference to init()Max Kellermann
Passing a void pointer is unsafe.
2014-02-05Mixer: use reference instead of pointer for MixerPluginMax Kellermann
2014-02-05MixerPlugin: add EventLoop& init() parameterMax Kellermann
2014-02-05event/Loop: remove the dummy constructor argumentMax Kellermann
2014-01-24Mixer*: move to mixer/Max Kellermann
2014-01-24Filter*: move to filter/Max Kellermann
2014-01-24Config*: move to config/Max Kellermann
2014-01-23output/*: move to output/plugins/Max Kellermann
2014-01-13copyright year 2014Max Kellermann
2013-12-24test/*: use fprintf(stderr,...) and Log() instead of g_printerr()Max Kellermann
Avoid GLib.
2013-12-23pcm/Volume: convert to classMax Kellermann
Prepare for adding state.
2013-12-23pcm/PcmVolume: rename to Volume.cxxMax Kellermann
2013-09-04util/Error: new error passing libraryMax Kellermann
Replaces GLib's GError.
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann
2013-08-04MixerPlugin: pass config_param referenceMax Kellermann
2013-08-03audio_format: convert to C++Max Kellermann
2013-04-17don't use g_thread_init() with GLib 2.32Max Kellermann
Deprecated.
2013-04-16MixerInternal: convert to classMax Kellermann
2013-04-16mixer/Pulse: convert to a classMax Kellermann
2013-04-16output/Pulse: convert to C++Max Kellermann
2013-04-09pcm_*: move to src/pcm/Max Kellermann
2013-02-22mixer_plugin: convert to C++Max Kellermann
2013-02-01filter: convert to C++Max Kellermann
2013-01-31pcm_*: convert to C++Max Kellermann
2013-01-16output/roar: convert to C++Max Kellermann
2013-01-15mixer/Alsa: use MultiSocketMonitorMax Kellermann
2013-01-09EventPipe: rename to GlobalEventsMax Kellermann
2013-01-09event_pipe.h: convert to C++Max Kellermann