aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-02-23fs/Charset: use "UTF-8" instead of "utf-8" as the default valueMax Kellermann1-2/+2
The upper-case name seems to be the canonical one.
2014-02-23Directory: use PathTraitsUTF8::Build() instead of g_strconcat()Max Kellermann1-13/+4
2014-02-23Directory: pass std::string&& to constructorMax Kellermann2-4/+4
2014-02-22encoder/opus: use xalloc() instead of g_malloc()Max Kellermann1-6/+5
2014-02-22decoder/opus: use new[] instead of g_malloc()Max Kellermann1-6/+2
2014-02-22first Android releaseMax Kellermann1-0/+19
Finally, MPD runs on Android. For some small value of "runs". Very much work left, too much to describe.
2014-02-22output/sles: new output plugin for AndroidMax Kellermann7-0/+817
2014-02-22Main: disable command-line parser and signal handlers on AndroidMax Kellermann1-0/+19
2014-02-22LogBackend: use __android_log_print() on AndroidMax Kellermann2-1/+65
2014-02-22input/curl: include cleanupMax Kellermann2-3/+0
2014-02-21db/Directory: use "unsigned" for inode and deviceMax Kellermann1-6/+3
This is what we get from the storage plugin via FileInfo. Fixes a compiler warning on Mac OS X where dev_t appears to be signed.
2014-02-21PlayerListener: new interface to replace GlobalEvents accessMax Kellermann6-11/+70
2014-02-20ConfigGlobal: eliminate function config_get_next_param()Max Kellermann6-31/+16
2014-02-20Main: initialize Partition before ListenerMax Kellermann1-1/+2
Fixes nullptr dereference (regression by commit df5f9f4a).
2014-02-19Listen: eliminate local variableMax Kellermann1-3/+1
2014-02-19Listen: reduce overhead for builds without systemdMax Kellermann1-5/+6
2014-02-19db/upnp: move plugin source to upnp directoryMax Kellermann3-3/+3
2014-02-19Listen: add Partition referenceMax Kellermann3-8/+11
2014-02-19DatabasePlugin: add FLAG_REQUIRE_STORAGEMax Kellermann6-11/+43
Ignore the storage configuration if FLAG_REQUIRE_STORAGE is not set in the DatabasePlugin.
2014-02-19DatabasePlugin: add attribute "flags"Max Kellermann4-0/+5
2014-02-19db/Interface: add attribute "plugin"Max Kellermann12-16/+34
The new method IsPlugin() replaces the "is_simple" flag.
2014-02-19DatabasePlugin: split headerMax Kellermann20-126/+189
2014-02-19Mixer: add class MixerListenerMax Kellermann21-61/+139
Use a listener interface instead of GlobalEvents.
2014-02-19output/Init: pass AudioOutput referencesMax Kellermann1-29/+29
2014-02-19util/Tokenizer: relicense to BSD-2Max Kellermann2-28/+48
2014-02-19StickerCommands: include cleanupMax Kellermann1-1/+0
2014-02-19output/httpd: move to dedicated directoryMax Kellermann10-4/+4
2014-02-19Timer: move to output/Max Kellermann5-3/+3
2014-02-19cue/CueParser: move to playlist/Max Kellermann4-2/+2
2014-02-18system/FatalError: remove GError supportMax Kellermann3-42/+0
2014-02-18Main: disable inotify check without databaseMax Kellermann1-5/+6
Fix build failure.
2014-02-18event/SignalMonitor: unblock signals after forkMax Kellermann1-1/+22
Fixes hanging child process in the "pipe" output plugin.
2014-02-18Thread/Util: use __NR_ioprio_set instead of SYS_ioprio_setMax Kellermann1-1/+1
Bionic doesn't have the SYS_* macros.
2014-02-18Thread/Util: make SCHED_RESET_ON_FORK optionalMax Kellermann1-1/+7
Use it if it exists, but don't insist if the C library is poor (e.g. Bionic/Android).
2014-02-18thread/Posix{Mutex,Cond}: disable "constexpr" on AndroidMax Kellermann3-3/+9
Bionic's pthread declarations are non-literal.
2014-02-18system/EPollFD: add epoll_create1() fallback for AndroidMax Kellermann1-0/+15
2014-02-18PlaylistRegistry: disable the "pls" plugin without GLibMax Kellermann1-0/+3
2014-02-18LogInit: disable SetLogCharset() without GLibMax Kellermann2-0/+7
2014-02-18util/StringUtil: add StringEndsWith()Max Kellermann3-3/+17
Replaces g_str_has_suffix().
2014-02-18SongFilter: disable g_utf8_casefold() without GLibMax Kellermann1-0/+14
Temporary hack for the experimental no-GLib build.
2014-02-17fs/TextFile: use custom allocation instead of GStringMax Kellermann2-24/+29
2014-02-17fs/Charset: disable if GLib is disabledMax Kellermann3-2/+31
2014-02-17TagId3: use xstrdup() instead of g_strdup()Max Kellermann1-3/+4
2014-02-17util/StringUtil: add function Strip()Max Kellermann5-6/+27
Replaces g_strstrip().
2014-02-17TagString: disable UTF-8 validation if GLib is disabledMax Kellermann1-3/+13
2014-02-17Main: initialize Database before StorageMax Kellermann3-19/+14
2014-02-17Main: move code to InitDatabaseAndStorage()Max Kellermann1-6/+12
2014-02-17db/Configured: disallow both "db_file" and "database"Max Kellermann1-3/+7
This is misconfiguration, and MPD should abort.
2014-02-17Main: move code to db/Configured.cxxMax Kellermann3-39/+117
2014-02-17Main: check if database exists before attempting to close itMax Kellermann1-2/+5
Fixes nullptr dereference.