aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-07-10decoder/audiofile: make variables more localMax Kellermann1-28/+24
2014-07-10decoder/audiofile: implement scan_stream() instead of scan_file()Max Kellermann1-23/+23
2014-07-10decoder/audiofile: use audiofile_get_duration() in _stream_decode()Max Kellermann1-5/+2
2014-07-10decoder/audiofile: split audiofile_get_duration()Max Kellermann1-4/+11
2014-07-09decoder/audiofile: remove unused Error variableMax Kellermann1-1/+0
2014-07-09playlist/plugins/DespotifyPlaylistPlugin: fix build failure due to missing ↵Gustavo Zacarias1-0/+1
stdio.h include Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09output/plugins/httpd/HttpdClient: fix build failure due to missing stdio.h ↵Gustavo Zacarias1-0/+1
include Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09decoder/plugins/FlacIOHandle: fix build failure due to missing stdio.h includeGustavo Zacarias1-0/+1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09decoder/dsdlib: use decoder_skip()Max Kellermann1-26/+6
Reduce duplicate code.
2014-07-09decoder/dsdlib: pass unsigned offsets to dsdlib_skip*()Max Kellermann2-11/+9
2014-07-09decoder/dsd: use decoder_read_full() where appropriateJoff4-31/+19
Addresses Mantis ticket 0004015. [mk: use decoder_read_full() only when needed, and a few formal changes]
2014-07-09decoder/audiofile: use decoder_read_full()Max Kellermann1-1/+6
Works around WAV stream playback bug, because libaudiofile does not like partial reads (Mantis 0004028).
2014-07-09DecoderAPI: add function decoder_read_full()Max Kellermann3-12/+31
Move code from the "mad" plugin.
2014-07-09DecoderAPI: add function decoder_skip()Max Kellermann3-14/+25
Move code from the "mad" plugin.
2014-07-09decoder/audiofile: use decoder_read()Max Kellermann1-15/+24
.. instead of InputStream::LockRead(). The former is cancellable.
2014-07-09playlist/PlsPlaylistPlugin: fix build failure due to missing stdio.h includeGustavo Zacarias1-0/+1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09output/HttpdClient: fix build failure due to missing stdio.h includeGustavo Zacarias1-0/+1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09decoder/OpusDecoderPlugin: fix build failure due to missing stdio.h includeGustavo Zacarias1-0/+1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-09decoder/AudiofileDecoderPlugin: fix build failure due to missing stdio.h includeGustavo Zacarias1-0/+1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
2014-07-02thread/{Mutex,Cond}: relicense to BSD-2Max Kellermann6-38/+58
2014-07-02thread/GLib{Mutex,Cond}: remove obsolete classesMax Kellermann2-178/+0
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.