Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 66 | -745/+773 | |
From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. | |||||
2014-01-08 | SongUpdate: move code to handle_lsinfo() | Max Kellermann | 5 | -20/+30 | |
Don't create a temporary Song object in handle_lsinfo(). Instead, print all tags while parsing the remote file. | |||||
2014-01-08 | SongSave: make variables more local | Max Kellermann | 1 | -5/+4 | |
2014-01-08 | decoder/faad: fix memory leak | Max Kellermann | 1 | -0/+2 | |
2014-01-08 | playlist/pls: don't free stack buffer | Max Kellermann | 1 | -1/+0 | |
2014-01-08 | playlist/pls: make variables more local | Max Kellermann | 1 | -17/+9 | |
2014-01-08 | playlist/pls: convert "while" loop to "for" loop | Max Kellermann | 1 | -2/+1 | |
2014-01-08 | playlist/pls: simplify error handler | Max Kellermann | 1 | -11/+4 | |
Don't pass a GError** to g_key_file_get_X(). We don't need to dispose something we didn't request in the first place. | |||||
2014-01-08 | DespotifyUtils: return Tag, not pointer | Max Kellermann | 4 | -12/+12 | |
2014-01-08 | DespotifyUtils: pass const ds_track reference | Max Kellermann | 4 | -17/+17 | |
2014-01-08 | tag/TagBuilder: overload Commit() returning a Tag object | Max Kellermann | 7 | -12/+24 | |
2014-01-08 | tag/TagBuilder: rename Commit() to CommitNew() | Max Kellermann | 20 | -23/+23 | |
2014-01-08 | input/AlsaInputPlugin: remove unnecessary alsa s/w param setting to fix high ↵ | Steven O'Brien | 1 | -9/+0 | |
CPU load issue | |||||
2014-01-08 | SongSticker: use Song references | Max Kellermann | 4 | -31/+26 | |
2014-01-08 | PlayerThread: use Song references | Max Kellermann | 1 | -15/+13 | |
2014-01-08 | DecoderThread: use Song references | Max Kellermann | 1 | -10/+10 | |
2014-01-07 | util/Alloc: new library replacing GLib's g_malloc() | Max Kellermann | 19 | -57/+208 | |
2014-01-07 | DecoderBuffer: use NewVarSize() | Max Kellermann | 1 | -13/+10 | |
2014-01-07 | tag/TagPool: use NewVarSize() to allocate TagPoolSlot | Max Kellermann | 1 | -21/+27 | |
2014-01-07 | tag/TagPool: rename struct slot to TagPoolSlot | Max Kellermann | 1 | -14/+13 | |
2014-01-07 | tag/TagPool: use gcc_packed instead of mpd_packed | Max Kellermann | 1 | -1/+1 | |
By accident, this declared a global variable instead of adding the "packed" attribute. | |||||
2014-01-07 | Directory: make some code generic, move to VarSize.hxx | Max Kellermann | 3 | -10/+93 | |
2014-01-07 | Directory: use g_malloc() instead of g_malloc0() | Max Kellermann | 1 | -3/+4 | |
Explicit attribute initialization. | |||||
2014-01-07 | playlist/soundcloud: parse URI without copying it | Max Kellermann | 1 | -19/+11 | |
2014-01-07 | playlist/soundcloud: change scheme check to assertion | Max Kellermann | 1 | -18/+2 | |
The MPD core takes care for checking the scheme. | |||||
2014-01-07 | playlist/soundcloud: eliminate nullptr checks before g_free() | Max Kellermann | 1 | -8/+4 | |
2014-01-07 | pcm/Utils: remove unused function pcm_end_pointer() | Max Kellermann | 1 | -12/+0 | |
2014-01-07 | pcm/Volume: use number of samples instead of end pointer | Max Kellermann | 1 | -25/+19 | |
2014-01-06 | pcm/Format: change parameters/return values to ConstBuffer | Max Kellermann | 3 | -259/+160 | |
2014-01-06 | pcm/Format: use number of samples instead of end pointer | Max Kellermann | 1 | -44/+34 | |
2014-01-06 | DecoderBuffer: _read() returns ConstBuffer object | Max Kellermann | 3 | -68/+55 | |
2014-01-06 | DecoderBuffer: add "pure" attributes | Max Kellermann | 1 | -0/+4 | |
2014-01-06 | DecoderBuffer: add method _clear() | Max Kellermann | 3 | -8/+12 | |
2014-01-06 | decoder/faad: make variables more local | Max Kellermann | 1 | -47/+31 | |
2014-01-06 | decoder/faad: eliminate local variable "ret" | Max Kellermann | 1 | -5/+2 | |
2014-01-06 | event/Loop: cancel the WakeFD monitor in destructor | Max Kellermann | 1 | -0/+4 | |
2014-01-06 | input/AlsaInputPlugin.cxx: use I/O thread to poll for available data | Steven O'Brien | 1 | -55/+289 | |
[mk: modified to use MultiSocketMonitor instead of SocketMonitor] | |||||
2014-01-06 | event/MultiSocketMonitor: add method ClearSocketList() | Max Kellermann | 3 | -1/+17 | |
2014-01-06 | event/SocketMonitor: don't close the socket automatically | Max Kellermann | 12 | -21/+20 | |
Users now have to call Close() explicitly. This simplifies using the class, as most users have automatic socket management already, and Steal() had to be used often. | |||||
2014-01-06 | util/Cast: new utility library | Max Kellermann | 3 | -2/+62 | |
2014-01-06 | event/IdleMonitor: cancel in destructor only if active | Max Kellermann | 1 | -1/+6 | |
Debug-mode workaround for bogus assertion failure. | |||||
2014-01-06 | event/MultiSocketMonitor: API documentation | Max Kellermann | 1 | -0/+10 | |
2014-01-05 | event/Loop: try to avoid the WakeFD when adding DeferredMonitor | Max Kellermann | 2 | -2/+24 | |
Add a flag that indicates whether the EventLoop is currently "busy". As long as that flag is set, it does not need to be woken up - we can simply add the DeferredMonitor to the list, and it will be caught by EventLoop very soon. This eliminates nearly all of the DeferredMonitor overhead when compared to IdleMonitor, rendering IdleMonitor mostly obsolete. | |||||
2014-01-05 | event/Loop: combine multiple WakeFD::Write() calls | Max Kellermann | 1 | -1/+6 | |
Reduce DeferredMonitor overhead. | |||||
2014-01-05 | event/Loop: add attribute "again" | Max Kellermann | 2 | -2/+10 | |
Improved support for added events. | |||||
2014-01-05 | event/Loop: add thread-safety assertions | Max Kellermann | 3 | -1/+30 | |
2014-01-05 | output/httpd: move the clients.clear() call to the IOThread | Max Kellermann | 1 | -1/+3 | |
This call is not thread-safe. | |||||
2014-01-05 | output/httpd: import GetEventLoop() | Max Kellermann | 2 | -3/+5 | |
2014-01-05 | ClientList: use "delete" instead of Client::Close() | Max Kellermann | 1 | -2/+8 | |
Client::Close() installs a TimeoutMonitor, which is not something we should do during shutdown. | |||||
2014-01-05 | event/Loop: remove obsolete assertion | Max Kellermann | 1 | -2/+0 | |