aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-08-07ConfigPath: return a Path objectMax Kellermann19-173/+176
Migrate all callers to use Path directly, instead of doing the conversion in each caller.
2013-08-07*: remove remaining __cplusplus checksMax Kellermann8-77/+1
2013-08-07event/EPollFD: basic support for Linux epollMax Kellermann2-0/+112
2013-08-07event/DeferredMonitor: rename Run() to RunDeferred()Max Kellermann3-6/+6
2013-08-07event/DeferredMonitor: use EventLoop::AddIdle()Max Kellermann5-7/+16
2013-08-07event/DeferredMonitor: new class wrapping g_idle_add()Max Kellermann3-12/+127
2013-08-07mixer/alsa: use AllocatedArray for the pollfd bufferMax Kellermann1-3/+5
2013-08-07encoder/lame: use ReusableBuffer instead of AllocatedArrayMax Kellermann2-212/+13
2013-08-07PcmBuffer: move code to new class ReusableBufferMax Kellermann6-44/+98
ReusableBuffer is more generic.
2013-08-07add missing includesMax Kellermann5-0/+8
2013-08-07filter/Route: don't access PcmBuffer attributes directlyMax Kellermann1-5/+5
Return the pointer given by PcmBuffer::Get() instead of reaching into the PcmBuffer object.
2013-08-07CommandLine.cxx: look for config file in XDG_CONFIG_HOME tooAlexander Gehrke1-1/+7
Look for "$XDG_CONFIG_HOME/mpd/mpd.conf", similar to where mpd looks for the file under Windows.
2013-08-07FfmpegDecoderPlugin: Allocate the interleaved buffer as needed instead of ↵Alexis Ballier1-17/+29
using an arbitrary big constant. Also, save a memcpy when FFmpeg outputs interleaved audio. Fixes build with FFmpeg 2.0.
2013-08-07event/EventFD: move to libsystemMax Kellermann5-2/+2
2013-08-07event/SignalMonitor: use signalfd() if availableMax Kellermann3-1/+192
2013-08-07SignalHandlers: move code to new class SignalMonitorMax Kellermann6-18/+233
2013-08-07event/Event{Pipe,FD}: auto-create in constructorMax Kellermann4-59/+23
Errors are fatal now. This makes the class a lot easier to use.
2013-08-07Makefile.am: move sources to libsystem.aMax Kellermann41-37/+37
2013-08-07FatalError: new library to replace mpd_error.hMax Kellermann14-76/+220
2013-08-07daemon: convert to C++Max Kellermann3-19/+17
2013-08-06configure.ac: add option --enable-eventfdMax Kellermann7-105/+230
Remove the runtime check for eventfd(), hard-code the feature once it's been selected at compile time. The class WakeFD is splitted into EventFD and EventPipe, using WakeFD as a macro diversion.
2013-08-06util/Manual: add missing include <utility>Max Kellermann1-0/+1
2013-08-06playlist/pls: use std::string instead of GStringMax Kellermann1-9/+8
2013-08-06encoder/lame: dynamic output bufferMax Kellermann2-4/+207
2013-08-06encoder/lame: use delete instead of g_free()Max Kellermann1-1/+1
2013-08-06encoder/lame: use lame_encode_buffer_interleaved()Max Kellermann1-14/+5
Don't deinterleave manually, don't allocate memory.
2013-08-06encoder/lame: use offset variable instead of memmove()Max Kellermann2-17/+36
2013-08-06encoder/lame: rename "buffer" to "output_buffer"Max Kellermann2-31/+33
2013-08-05playlist/EmbbeddedCue: convert to classMax Kellermann1-27/+41
2013-08-05playlist/lastfm: convert to classMax Kellermann1-11/+15
2013-08-05playlist/lastfm: allocate the lastfm_playlist object at the endMax Kellermann1-15/+14
Simplify the error path, because the other allocations may fail.
2013-08-05playlist/m3u: allocate ExtM3uPlaylist with new/deleteMax Kellermann1-8/+9
2013-08-05playlist/extm3u: allocate ExtM3uPlaylist with new/deleteMax Kellermann1-10/+11
2013-08-05decoder/ffmpeg: convert struct mpd_ffmpeg_stream to a classMax Kellermann1-47/+28
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann79-240/+260
2013-08-04DatabasePrint: print Last-Modified attribute for directoriesAndrzej Rybczak1-2/+15
2013-08-04Commands: new command "toggleoutput"Max Kellermann5-0/+54
2013-08-04FfmpegDecoderPlugin: add application/flv to mime types listJustin Riley1-0/+1
2013-08-04ConfigData: remove obsolete functionsMax Kellermann2-79/+0
2013-08-04PlaylistPlugin: pass config_param referenceMax Kellermann4-13/+14
2013-08-04DatabasePlugin: pass config_param referenceMax Kellermann7-16/+16
2013-08-04InputPlugin: pass config_param referenceMax Kellermann4-16/+18
2013-08-04MixerPlugin: pass config_param referenceMax Kellermann10-26/+27
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann13-32/+34
2013-08-04EncoderPlugin: pass config_param referenceMax Kellermann11-47/+45
2013-08-04OutputPlugin: pass config_param referenceMax Kellermann23-153/+157
2013-08-04DecoderPlugin: pass config_param referenceMax Kellermann13-35/+34
2013-08-04ConfigData: move code to block_param, config_param methodsMax Kellermann2-42/+113
2013-08-03ConfigData: remove C++ checksMax Kellermann1-20/+0
2013-08-03audio_format: convert to C++Max Kellermann106-1187/+1173