Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-04-24 | DatabasePrint: use unsigned counts | Max Kellermann | 1 | -3/+3 | |
2014-04-24 | DatabaseCommands: "list" allows grouping | Max Kellermann | 13 | -43/+186 | |
2014-04-24 | TagBuilder: add method AddEmptyItem() | Max Kellermann | 2 | -0/+17 | |
2014-04-24 | DatabaseCommands: simplify the handle_list() argument parser | Max Kellermann | 1 | -9/+12 | |
2014-04-24 | db/Helpers: "list" on album artist falls back to the artist tag | Max Kellermann | 1 | -1/+4 | |
2014-04-24 | db/Helpers: move code to CheckUniqueTag() | Max Kellermann | 1 | -6/+12 | |
2014-04-24 | db/Helpers: use reference instead of pointer | Max Kellermann | 1 | -4/+6 | |
2014-04-24 | SongFilter: convert argv to ConstBuffer | Max Kellermann | 4 | -13/+27 | |
2014-04-24 | util/{Const,Writable}Buffer: add front(), back(), pop_{front,back}(), shift() | Max Kellermann | 2 | -0/+118 | |
2014-04-24 | util/{Const,Writable}Buffer: add typedef reference_type | Max Kellermann | 2 | -4/+8 | |
2014-04-24 | DatabaseCommands: fix crash on "list base" | Max Kellermann | 2 | -7/+4 | |
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 | 2 | -2/+2 | |
2014-04-24 | DatabaseCommands: clarify compatibility comment | Max Kellermann | 1 | -1/+1 | |
2014-04-23 | input/nfs: add missing string.h include | Max Kellermann | 1 | -0/+1 | |
For strrchr(). Fixes build failure. | |||||
2014-04-09 | decoder/sndfile: work around libsndfile bug on partial read | Marcello Desantis | 1 | -6/+20 | |
2014-04-09 | PlaylistEdit: don't interrupt playback when current song gets deleted | Weng Xuetian | 1 | -10/+8 | |
2014-04-09 | icu/Collate: fix memory leak in IcuCaseFold() | Max Kellermann | 1 | -0/+1 | |
2014-04-05 | IOThread: make io_thread_get() "const" | Max Kellermann | 1 | -1/+1 | |
2014-03-19 | pcm/Neon: explicit rounding | Max Kellermann | 1 | -3/+5 | |
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 | 1 | -0/+8 | |
Provide the full API. | |||||
2014-03-18 | decoder/ffmpeg: handle unknown stream start time | Max Kellermann | 1 | -2/+25 | |
2014-03-18 | decoder/ffmpeg: pass AVSEEK_FLAG_ANY to av_seek_frame() | Max Kellermann | 1 | -1/+1 | |
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 | 1 | -60/+50 | |
2014-03-16 | input/BufferedInputStream: new wrapper for moving plugin to thread | Max Kellermann | 2 | -0/+385 | |
2014-03-16 | thread/Thread: make the destructor non-virtual | Max Kellermann | 1 | -1/+1 | |
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 | 1 | -2/+0 | |
These are the default values already. | |||||
2014-03-16 | pcm/Neon: make neon_x4_b() variadic | Max Kellermann | 1 | -6/+5 | |
2014-03-16 | pcm/Neon: apply bit shift during float->int conversion | Max Kellermann | 1 | -7/+2 | |
Avoid multiplication. This is a speedup of 20%. | |||||
2014-03-16 | input/curl: use CircularBuffer | Max Kellermann | 1 | -133/+75 | |
Replaces its own weird buffering code. | |||||
2014-03-16 | util/CircularBuffer: add method GetSpace() | Max Kellermann | 1 | -0/+12 | |
2014-03-16 | util/CircularBuffer: add method GetSize() | Max Kellermann | 1 | -0/+9 | |
2014-03-15 | util/CircularBuffer: rename GetSize() to GetCapacity() | Max Kellermann | 1 | -22/+22 | |
2014-03-15 | input/curl: add method CurlInputStream::Open() | Max Kellermann | 1 | -12/+17 | |
2014-03-15 | input/curl: move _seek() into the CurlInputStream class | Max Kellermann | 1 | -38/+44 | |
2014-03-15 | input/curl: move _easy_init() into the CurlInputStream class | Max Kellermann | 1 | -30/+30 | |
2014-03-15 | input/curl: pass std::string&& to HeaderReceived() | Max Kellermann | 1 | -25/+8 | |
Code simplification. | |||||
2014-03-15 | input/curl: move code to CurlInputStream methods | Max Kellermann | 1 | -178/+231 | |
2014-03-15 | input/curl: rename "error" to "error_buffer" | Max Kellermann | 1 | -3/+3 | |
2014-03-15 | input/curl: rename struct input_curl to CurlInputStream | Max Kellermann | 1 | -32/+32 | |
2014-03-15 | system/fd_util: export fd_set_cloexec() | Max Kellermann | 2 | -1/+4 | |
2014-03-15 | util/CircularBuffer: new buffer class | Max Kellermann | 1 | -0/+165 | |
2014-03-15 | configure.ac: always define _GNU_SOURCE on Linux | Max Kellermann | 3 | -13/+0 | |
Make sure glibc gives us all features. | |||||
2014-03-15 | pcm/PcmFormat: ARM NEON optimizations for float->s16 | Max Kellermann | 2 | -1/+135 | |
This is nearly 4 times faster than the "portable" algorithm. | |||||
2014-03-14 | pcm/PcmFormat: don't use WritableBuffer | Max Kellermann | 1 | -28/+20 | |
The previous commit eliminated the need for that. | |||||
2014-03-14 | pcm/PcmFormat: instantiate FloatToInteger<S32> | Max Kellermann | 1 | -6/+1 | |
.. instead of reusing FloatToInteger<S24> and converting from S24 to S32 in-place. | |||||
2014-03-14 | pcm/PcmFormat: eliminate more duplicate code with templates | Max Kellermann | 3 | -122/+233 | |
Refactor the conversion functions to classes and pass an instance to the new function AllocateConvert(). | |||||
2014-03-14 | pcm/PcmFormat: eliminate local variable "bits" | Max Kellermann | 1 | -3/+1 | |
2014-03-14 | pcm/PcmFormat: remove obsolete AllocateFromFloat() overload | Max Kellermann | 1 | -15/+0 | |
2014-03-14 | MultipleOutputs: ensure input_audio_format is zero-initialised | Pete Beardmore | 1 | -0/+1 | |
-fixes SIGABRT when mpd is started from a previously paused state -regression introduced by commit: f5a923b9d16e4c63942a033d1bdb2ab150aae342: 'OutputAll: convert to class, move instance to class Partition' -input_audio_format was previously declared using the static modifier ensuring it was zero-initialised by default -the current default-initialised input_audio_format contains garbage at runtime which allows the AudioFormat.IsDefined() 'fail fast' test in MultipleOutputs::Update to pass and the SIGABRT follows in AudioOutput::Open when passed the invalid input_audio_format struct -switching AudioFormat.IsDefined() for AudioFormat.IsValid() is an alternative workaround | |||||
2014-03-14 | command/{storage,file}: suppress bogus format warnings on WIN32 | Max Kellermann | 2 | -0/+22 | |