Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-11 | input/plugins: make InputStream the base class | Max Kellermann | |
Prepare for adding virtual methods. | |||
2014-05-11 | input/rewind: convert to class | Max Kellermann | |
2014-05-11 | InputStream: convert to class | Max Kellermann | |
2014-05-10 | PlaylistCommands: remove redundant playlist_load_spl() call | Max Kellermann | |
This case is handled already by playlist_open_in_playlist_dir() (via playlist_mapper_open()). And the call didn't work anyway. | |||
2014-05-10 | PlaylistMapper: use map_spl_utf8_to_fs() | Max Kellermann | |
Eliminates some overhead and some duplicate code, and fixes a serious bug: the old code did not append the ".m3u" suffix, and thus the "load" command was completely broken for stored playlists. D'oh! | |||
2014-04-27 | db/Count: implement grouping | Max Kellermann | |
2014-04-27 | db/Count: add constructor | Max Kellermann | |
2014-04-26 | DatabasePrint: move PrintSongCount() to Count.cxx | Max Kellermann | |
2014-04-25 | db/Helpers: split library | Max Kellermann | |
2014-04-25 | DatabasePrint: refactor variable/function names | Max Kellermann | |
2014-04-25 | LogInit: fix file descriptor leak in SIGHUP handler | Max Kellermann | |
2014-04-25 | DatabaseCommands: disallow "grouping" by the selected tag | Max Kellermann | |
Fixes assertion failure. | |||
2014-04-24 | db/Helpers: move code to tag/Set.cxx | Max Kellermann | |
2014-04-24 | db/Helpers: move TagSet to dedicated header | Max Kellermann | |
2014-04-24 | db/Helpers: use set::emplace() | Max Kellermann | |
2014-04-24 | DatabasePrint: eliminate printAllIn(), printInfoForAllIn() | Max Kellermann | |
2014-04-24 | DatabasePrint: merge adjacent client_printf() calls | Max Kellermann | |
2014-04-24 | DatabasePrint: pass const SearchStats reference | Max Kellermann | |
2014-04-24 | DatabasePrint: use unsigned counts | Max Kellermann | |
2014-04-24 | DatabaseCommands: "list" allows grouping | Max Kellermann | |
2014-04-24 | TagBuilder: add method AddEmptyItem() | Max Kellermann | |
2014-04-24 | DatabaseCommands: simplify the handle_list() argument parser | Max Kellermann | |
2014-04-24 | db/Helpers: "list" on album artist falls back to the artist tag | Max Kellermann | |
2014-04-24 | db/Helpers: move code to CheckUniqueTag() | Max Kellermann | |
2014-04-24 | db/Helpers: use reference instead of pointer | Max Kellermann | |
2014-04-24 | SongFilter: convert argv to ConstBuffer | Max Kellermann | |
2014-04-24 | util/{Const,Writable}Buffer: add front(), back(), pop_{front,back}(), shift() | Max Kellermann | |
2014-04-24 | util/{Const,Writable}Buffer: add typedef reference_type | Max Kellermann | |
2014-04-24 | DatabaseCommands: fix crash on "list base" | Max Kellermann | |
The string "base" is understood by locate_parse_type(), but not by listAllUniqueTags(). The special tag type LOCATE_TAG_BASE_TYPE causes a crash in PrintUniqueTag(). | |||
2014-04-24 | DatabasePrint: convert "type" to unsigned | Max Kellermann | |
2014-04-24 | DatabaseCommands: clarify compatibility comment | Max Kellermann | |
2014-04-23 | input/nfs: add missing string.h include | Max Kellermann | |
For strrchr(). Fixes build failure. | |||
2014-04-10 | Merge tag 'release-0.18.10' | Max Kellermann | |
2014-04-09 | decoder/sndfile: work around libsndfile bug on partial read | Marcello Desantis | |
2014-04-09 | PlaylistEdit: don't interrupt playback when current song gets deleted | Weng Xuetian | |
2014-04-09 | icu/Collate: fix memory leak in IcuCaseFold() | Max Kellermann | |
2014-04-05 | IOThread: make io_thread_get() "const" | Max Kellermann | |
2014-03-19 | pcm/Neon: explicit rounding | Max Kellermann | |
Convert to 31 bit first, then right-shift with rounding to 16 bit. | |||
2014-03-18 | util/ConstBuffer: add FromVoid(), ToVoid() to "void" specialization | Max Kellermann | |
Provide the full API. | |||
2014-03-18 | decoder/ffmpeg: handle unknown stream start time | Max Kellermann | |
2014-03-18 | decoder/ffmpeg: pass AVSEEK_FLAG_ANY to av_seek_frame() | Max Kellermann | |
This corrects a major mistake from commit 724a59aa - there was one small thing that commit was supposed to do, and it failed. AV_TIME_BASE is not a seek flag. | |||
2014-03-16 | input/mms: move blocking I/O to thread | Max Kellermann | |
2014-03-16 | input/BufferedInputStream: new wrapper for moving plugin to thread | Max Kellermann | |
2014-03-16 | thread/Thread: make the destructor non-virtual | Max Kellermann | |
The class does not have any virtual methods, and thus the (debug-only) destructor does not need to be virtual. | |||
2014-03-16 | input/alsa: don't initialize "seekable=false", "size=-1" | Max Kellermann | |
These are the default values already. | |||
2014-03-16 | pcm/Neon: make neon_x4_b() variadic | Max Kellermann | |
2014-03-16 | pcm/Neon: apply bit shift during float->int conversion | Max Kellermann | |
Avoid multiplication. This is a speedup of 20%. | |||
2014-03-16 | input/curl: use CircularBuffer | Max Kellermann | |
Replaces its own weird buffering code. | |||
2014-03-16 | util/CircularBuffer: add method GetSpace() | Max Kellermann | |
2014-03-16 | util/CircularBuffer: add method GetSize() | Max Kellermann | |