aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-06-30lib/nfs/Connection: include poll.hMax Kellermann1-0/+2
2014-06-27Added Comment/Description to decoder/plugins/XiphTags.cxxChristoph Tieben1-0/+4
2014-06-27decoder: vorbis, flac, opus: honor DESCRIPTION= tag in Xiph-based files as a ↵Christoph Tieben1-0/+1
comment to the song (see https://www.xiph.org/vorbis/doc/v-comment.html for Details)
2014-06-26util/ConstBuffer: add method skip_front()Max Kellermann1-0/+9
2014-06-26util/ConstBuffer: wrap assert() in NDEBUG checkMax Kellermann1-0/+4
Fixes build failure because assert.h was not included.
2014-06-23util/ConstBuffer: add method Contains()Max Kellermann1-0/+10
2014-06-23db/proxy: fall back to recursive walk on old libmpdclient/MPDMax Kellermann5-1/+63
Error message was 'too few arguments for "find"' because the "base" constraint was not supported, and no other constraints remained.
2014-06-23db/proxy: use mpd_song_get_{start,end}() only with libmpdclient >= 2.3Max Kellermann1-0/+5
2014-06-23db/proxy: use mpd_song_get_{start,end}() only with libmpdclient >= 2.3Max Kellermann1-0/+5
2014-06-21input/async: use IsEOF() instead of !open for "ready" checkMax Kellermann1-2/+3
Checking "!open" did not work with the NFS plugin because that plugin does not close the file automatically, unlike CURL.
2014-06-21Revert "AsyncInputStream: fix assertion failure in AppendToBuffer()"Max Kellermann1-6/+4
This reverts commit 966c4244cbe0de174df1e72e917078269ec9dbb9. The commit was bad, because the bug was really in NfsInputStream::DoRead(); see previous commit.
2014-06-21input/nfs: never read more than space available in bufferMax Kellermann1-2/+4
Avoids off-by-one bug and obsoletes the bug fix in commit 966c4244
2014-06-21db/proxy: initialize LightSong::real_uriMax Kellermann1-0/+1
Fixes potential crash.
2014-06-17lib/nfs/Manager: gcc 4.7 compatibility hackMax Kellermann3-0/+32
std::map::emplace() is only available from gcc 4.8 on.
2014-06-17input/nfs: use the asynchronous libnfs APIMax Kellermann12-84/+1536
More robust and cancellable.
2014-06-17AsyncInputStream: fix assertion failure in AppendToBuffer()Max Kellermann1-4/+6
2014-06-17AsyncInputStream: reset "paused" when seekingMax Kellermann1-0/+1
May cause assertion failure.
2014-06-17input/curl: hold mutex while writing to postponed_errorMax Kellermann3-3/+16
2014-06-17input/AsyncInputStream: add method IsBufferFull()Max Kellermann1-0/+4
2014-06-16command: make argc unsignedMax Kellermann25-206/+205
2014-06-16Directory: eliminate attribute "have_stat"Max Kellermann3-4/+3
Check for 0 in "device" and "inode" instead.
2014-06-16TagPool: move code to tag_value_slot_p()Max Kellermann1-9/+18
2014-06-16TagPool: convert macro to constexprMax Kellermann1-1/+1
2014-06-16db/simple: use class boost::intrusive::listMax Kellermann11-946/+151
Remove the C list_head library and use type-safe C++ instead.
2014-06-11ClientList: use class boost::intrusive::listMax Kellermann4-29/+25
Eliminate extra allocations for the std::list node instances.
2014-06-10ClientList: add typedef ListMax Kellermann1-3/+5
2014-06-10zeroconf/Avahi: call dbus_shutdown() during shutdownMax Kellermann1-0/+4
Make valgrind happy.
2014-06-10Main: delete the Storage instance on shutdownMax Kellermann1-0/+2
2014-06-10lib/icu/Init: call u_init() and u_cleanup()Max Kellermann1-0/+14
Make valgrind happy.
2014-06-10lib/icu: add IcuInit(), IcuFinish()Max Kellermann4-11/+81
2014-05-31thread/Util: relicense to BSD-2Max Kellermann1-15/+25
2014-05-24input/async: add offset/size comparison to IsEOF()Max Kellermann1-1/+2
2014-05-24input/curl: move code to AsyncInputStreamMax Kellermann3-211/+409
New base class for other InputStream implementations that run in the I/O thread.
2014-05-24input/curl: call SetReady() only if not yet readyMax Kellermann1-1/+2
Fixes assertion failure.
2014-05-24input/curl: include cleanupMax Kellermann1-7/+0
2014-05-22InputStream: make Seek() always absoluteMax Kellermann27-124/+181
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations.
2014-05-22decoder/vorbis: make VorbisInputStream::input_stream a referenceMax Kellermann1-6/+6
2014-05-22decoder/vorbis: add VorbisInputStream constructorMax Kellermann1-14/+13
2014-05-22decoder/vorbis: rename struct vorbis_input_stream to VorbisInputStreamMax Kellermann1-7/+7
2014-05-22decoder/vorbis: add "restrict" to pointers in vorbis_interleave()Max Kellermann1-2/+2
Allows more compiler optimizations.
2014-05-22decoder/vorbis: log libvorbis version on startupMax Kellermann1-1/+11
2014-05-22decoder/wavpack: move code to WavpackInput::ReadBytes()Max Kellermann1-6/+12
2014-05-22decoder/wavpack: convert WavpackInput attributes to referencesMax Kellermann1-12/+12
2014-05-22decoder/wavpack: move wavpack_input_init into struct WavpackInputMax Kellermann1-16/+7
2014-05-22decoder/wavpack: wavpack_open_wvc() returns WavpackInput*Max Kellermann1-14/+12
2014-05-22DecoderAPI: add function decoder_open_uri()Max Kellermann3-18/+43
Move and refactor code from the Wavpack decoder plugin.
2014-05-22decoder/wavpack: rename struct wavpack_input to WavpackInputMax Kellermann1-8/+8
2014-05-21input/curl: relock mutex in error pathsMax Kellermann1-2/+7
2014-05-21input/curl: pass remaining size to CircularBuffer::Append()Max Kellermann1-1/+1
2014-05-21input/curl: move code to IcyInputStreamMax Kellermann5-86/+218