Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-08-07 | event/DeferredMonitor: rename Run() to RunDeferred() | Max Kellermann | 3 | -6/+6 | |
2013-08-07 | event/DeferredMonitor: use EventLoop::AddIdle() | Max Kellermann | 5 | -7/+16 | |
2013-08-07 | event/DeferredMonitor: new class wrapping g_idle_add() | Max Kellermann | 3 | -12/+127 | |
2013-08-07 | mixer/alsa: use AllocatedArray for the pollfd buffer | Max Kellermann | 1 | -3/+5 | |
2013-08-07 | encoder/lame: use ReusableBuffer instead of AllocatedArray | Max Kellermann | 2 | -212/+13 | |
2013-08-07 | PcmBuffer: move code to new class ReusableBuffer | Max Kellermann | 6 | -44/+98 | |
ReusableBuffer is more generic. | |||||
2013-08-07 | add missing includes | Max Kellermann | 5 | -0/+8 | |
2013-08-07 | filter/Route: don't access PcmBuffer attributes directly | Max Kellermann | 1 | -5/+5 | |
Return the pointer given by PcmBuffer::Get() instead of reaching into the PcmBuffer object. | |||||
2013-08-07 | CommandLine.cxx: look for config file in XDG_CONFIG_HOME too | Alexander Gehrke | 1 | -1/+7 | |
Look for "$XDG_CONFIG_HOME/mpd/mpd.conf", similar to where mpd looks for the file under Windows. | |||||
2013-08-07 | FfmpegDecoderPlugin: Allocate the interleaved buffer as needed instead of ↵ | Alexis Ballier | 1 | -17/+29 | |
using an arbitrary big constant. Also, save a memcpy when FFmpeg outputs interleaved audio. Fixes build with FFmpeg 2.0. | |||||
2013-08-07 | event/EventFD: move to libsystem | Max Kellermann | 5 | -2/+2 | |
2013-08-07 | event/SignalMonitor: use signalfd() if available | Max Kellermann | 3 | -1/+192 | |
2013-08-07 | SignalHandlers: move code to new class SignalMonitor | Max Kellermann | 6 | -18/+233 | |
2013-08-07 | event/Event{Pipe,FD}: auto-create in constructor | Max Kellermann | 4 | -59/+23 | |
Errors are fatal now. This makes the class a lot easier to use. | |||||
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | 41 | -37/+37 | |
2013-08-07 | FatalError: new library to replace mpd_error.h | Max Kellermann | 14 | -76/+220 | |
2013-08-07 | daemon: convert to C++ | Max Kellermann | 3 | -19/+17 | |
2013-08-06 | configure.ac: add option --enable-eventfd | Max Kellermann | 7 | -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-06 | util/Manual: add missing include <utility> | Max Kellermann | 1 | -0/+1 | |
2013-08-06 | playlist/pls: use std::string instead of GString | Max Kellermann | 1 | -9/+8 | |
2013-08-06 | encoder/lame: dynamic output buffer | Max Kellermann | 2 | -4/+207 | |
2013-08-06 | encoder/lame: use delete instead of g_free() | Max Kellermann | 1 | -1/+1 | |
2013-08-06 | encoder/lame: use lame_encode_buffer_interleaved() | Max Kellermann | 1 | -14/+5 | |
Don't deinterleave manually, don't allocate memory. | |||||
2013-08-06 | encoder/lame: use offset variable instead of memmove() | Max Kellermann | 2 | -17/+36 | |
2013-08-06 | encoder/lame: rename "buffer" to "output_buffer" | Max Kellermann | 2 | -31/+33 | |
2013-08-05 | playlist/EmbbeddedCue: convert to class | Max Kellermann | 1 | -27/+41 | |
2013-08-05 | playlist/lastfm: convert to class | Max Kellermann | 1 | -11/+15 | |
2013-08-05 | playlist/lastfm: allocate the lastfm_playlist object at the end | Max Kellermann | 1 | -15/+14 | |
Simplify the error path, because the other allocations may fail. | |||||
2013-08-05 | playlist/m3u: allocate ExtM3uPlaylist with new/delete | Max Kellermann | 1 | -8/+9 | |
2013-08-05 | playlist/extm3u: allocate ExtM3uPlaylist with new/delete | Max Kellermann | 1 | -10/+11 | |
2013-08-05 | decoder/ffmpeg: convert struct mpd_ffmpeg_stream to a class | Max Kellermann | 1 | -47/+28 | |
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 79 | -240/+260 | |
2013-08-04 | DatabasePrint: print Last-Modified attribute for directories | Andrzej Rybczak | 1 | -2/+15 | |
2013-08-04 | Commands: new command "toggleoutput" | Max Kellermann | 5 | -0/+54 | |
2013-08-04 | FfmpegDecoderPlugin: add application/flv to mime types list | Justin Riley | 1 | -0/+1 | |
2013-08-04 | ConfigData: remove obsolete functions | Max Kellermann | 2 | -79/+0 | |
2013-08-04 | PlaylistPlugin: pass config_param reference | Max Kellermann | 4 | -13/+14 | |
2013-08-04 | DatabasePlugin: pass config_param reference | Max Kellermann | 7 | -16/+16 | |
2013-08-04 | InputPlugin: pass config_param reference | Max Kellermann | 4 | -16/+18 | |
2013-08-04 | MixerPlugin: pass config_param reference | Max Kellermann | 10 | -26/+27 | |
2013-08-04 | FilterPlugin: pass config_param reference | Max Kellermann | 13 | -32/+34 | |
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 11 | -47/+45 | |
2013-08-04 | OutputPlugin: pass config_param reference | Max Kellermann | 23 | -153/+157 | |
2013-08-04 | DecoderPlugin: pass config_param reference | Max Kellermann | 13 | -35/+34 | |
2013-08-04 | ConfigData: move code to block_param, config_param methods | Max Kellermann | 2 | -42/+113 | |
2013-08-03 | ConfigData: remove C++ checks | Max Kellermann | 1 | -20/+0 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 106 | -1187/+1173 | |
2013-08-03 | gcc.h: add macro gcc_unreachable() | Max Kellermann | 12 | -14/+18 | |
2013-08-01 | decoder/mikmod: use MikMod_free() to free the title on libmikmod-3.2 | Christoph Mende | 1 | -0/+4 | |
Player_LoadTitle() returns an aligned pointer in libmikmod-3.2 that cannot be freed with free(). The correct way to do this now is MikMod_free() which extracts the original pointer from the buffer and frees that. Signed-off-by: Christoph Mende <mende.christoph@gmail.com> | |||||
2013-08-01 | playlist_edit: fix "move" relative to current when there is no current song | Max Kellermann | 1 | -1/+6 | |
Fixes Mantis #3770. |