Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-12-15 | configure.ac: add option "--disable-glib" | Max Kellermann | 1 | -1/+7 | |
Allows building without GLib. This fails to compile currently, because GLib is still used in the MPD core. | |||||
2013-12-08 | Main: use standard directory API | Denis Krjuchkov | 1 | -7/+4 | |
2013-11-29 | PcmConvert: add pcm_convert_global_init() | Max Kellermann | 1 | -2/+2 | |
Wrapper for pcm_resample_global_init(), just in case other PCM libraries need initialization, too. | |||||
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -3/+0 | |
2013-11-26 | Main.cxx: initialize winsock before creating IO thread | Denis Krjuchkov | 1 | -1/+1 | |
Otherwise sockets can't be created during IO thread initialization. | |||||
2013-11-25 | Volume, Output: use new class PeriodClock instead of GTimer | Max Kellermann | 1 | -1/+0 | |
2013-11-24 | Stats: use monotonic clock instead of GTimer | Max Kellermann | 1 | -1/+0 | |
Reduce GLib usage. | |||||
2013-11-04 | Log: add level "DEFAULT" | Max Kellermann | 1 | -8/+8 | |
Map LogLevel::INFO to G_LOG_LEVEL_INFO, and LogLevel::DEFAULT to G_LOG_LEVEL_MESSAGE. Now client connect/disconnect message are only logged on log_level "secure". | |||||
2013-10-30 | increase default buffer size to 4 MB | Max Kellermann | 1 | -1/+1 | |
2 MB was too small for cross-fading a 24 bit file. Increasing to 4 MB is still not too large for weak machines, but is enough for cross-fading. | |||||
2013-10-30 | Main: check the g_get_user_special_dir() result | Max Kellermann | 1 | -4/+7 | |
Fixes crash. | |||||
2013-10-20 | Main: convert anonymous enum to constexpr | Max Kellermann | 1 | -4/+2 | |
2013-10-20 | *Commands: move to src/command/ | Max Kellermann | 1 | -1/+1 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -1/+1 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -10/+13 | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||||
2013-10-17 | fs/Path: move configuration code to Config.cxx | Max Kellermann | 1 | -1/+2 | |
2013-10-17 | UpdateGlue: never pass null to update_enqueue() | Max Kellermann | 1 | -1/+1 | |
2013-10-17 | Main: use ThreadId instead of GThread* | Max Kellermann | 1 | -2/+3 | |
2013-10-15 | ConfigData: use std::string for config_param::value | Max Kellermann | 1 | -5/+6 | |
2013-10-02 | replay_gain_*.h: rename to *.hxx | Max Kellermann | 1 | -1/+1 | |
2013-10-02 | Stats: rename stats.h to Stats.hxx | Max Kellermann | 1 | -4/+1 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -20/+24 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-26 | PlayerThread: use {decoder,player}_control references | Max Kellermann | 1 | -1/+1 | |
2013-09-26 | Main: fix crash if no database was configured | Max Kellermann | 1 | -0/+3 | |
Add nullptr check, and return early from glue_db_init_and_load(). | |||||
2013-09-26 | Main: use nullptr instead of NULL | Max Kellermann | 1 | -11/+11 | |
2013-09-12 | Path: add FromUTF8() overload that returns an Error | Max Kellermann | 1 | -2/+6 | |
2013-09-05 | Tag: compile-time initialisation of ignore_tag_items | Max Kellermann | 1 | -2/+0 | |
Move to TagSettings.c and use C99 initializers. | |||||
2013-09-05 | Tag: move configuration code to TagConfig.cxx | Max Kellermann | 1 | -0/+2 | |
Allow using the Tag.cxx library without the Config library. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -1/+1 | |
2013-09-05 | conf.h: remove obsolete header | Max Kellermann | 1 | -1/+3 | |
Use only ConfigData.hxx in plugin sources to reduce header dependencies. | |||||
2013-09-05 | conf.h: move constants to ConfigDefaults.hxx | Max Kellermann | 1 | -0/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -70/+37 | |
Replaces GLib's GError. | |||||
2013-09-03 | IOThread: use FatalError() on g_thread_create() error | Max Kellermann | 1 | -5/+1 | |
New GLib versions don't fail. | |||||
2013-08-07 | ConfigPath: return a Path object | Max Kellermann | 1 | -30/+16 | |
Migrate all callers to use Path directly, instead of doing the conversion in each caller. | |||||
2013-08-07 | event/DeferredMonitor: use EventLoop::AddIdle() | Max Kellermann | 1 | -1/+1 | |
2013-08-07 | SignalHandlers: move code to new class SignalMonitor | Max Kellermann | 1 | -1/+8 | |
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | 1 | -1/+1 | |
2013-08-07 | FatalError: new library to replace mpd_error.h | Max Kellermann | 1 | -21/+19 | |
2013-08-07 | daemon: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-08-04 | DatabasePlugin: pass config_param reference | Max Kellermann | 1 | -1/+1 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-30 | Main: fix crash without state file | Max Kellermann | 1 | -1/+2 | |
If no state file is configured, don't chek for state changes. | |||||
2013-07-30 | pcm_resample: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-04-17 | Main: move global variables to struct Instance | Max Kellermann | 1 | -16/+19 | |
More preparations for multi-player support. | |||||
2013-04-17 | don't use g_thread_init() with GLib 2.32 | Max Kellermann | 1 | -0/+2 | |
Deprecated. | |||||
2013-04-09 | pcm_*: move to src/pcm/ | Max Kellermann | 1 | -1/+1 | |
2013-04-08 | StateFile: schedule timer only after a change | Max Kellermann | 1 | -0/+3 | |
Save the state file 2 minutes after the last change. This reduces the disruptions by an idle MPD, and MPD can be paged out permanently until it is used. | |||||
2013-02-02 | StateFile: use file system API, log in UTF-8 | Denis Krjuchkov | 1 | -3/+4 | |
2013-01-30 | ConfigData: move functions into the class | Max Kellermann | 1 | -2/+1 | |
2013-01-30 | ConfigData: add constructors/destructors | Max Kellermann | 1 | -3/+2 | |
2013-01-30 | audio_{parser,config}: convert to C++ | Max Kellermann | 1 | -1/+1 | |