aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2014-05-21input/rewind: move code to class ProxyInputStreamMax Kellermann3-59/+175
2014-05-21input/InputStream: move Open() to Open.cxxMax Kellermann2-50/+72
Allow compiling test programs with only selected plugins.
2014-05-21input/rewind: include cleanupMax Kellermann1-4/+2
2014-05-21input/rewind: work around assertion failureMax Kellermann1-1/+1
Caused by commit 0b4fa41a
2014-05-12ThreadInputStream: include cleanupMax Kellermann1-1/+0
2014-05-12InputStream: "protect" attributesMax Kellermann14-37/+53
2014-05-12input/cdio: convert to classMax Kellermann1-1/+2
2014-05-12input/cdio: move initialization code to constructorMax Kellermann1-51/+50
Make attributes const, don't allow partial initialization. Instantiate the CdioParanoiaInputStream object at the end of input_cdio_open().
2014-05-12input/cdio: handle cdio_open() failureMax Kellermann1-0/+5
2014-05-12input/cdio: initialize lsn_relofs in constructorMax Kellermann1-2/+1
2014-05-12input/cdio: initialize attribute "buffer_lsn"Max Kellermann1-1/+2
2014-05-12input/cdio: remove unused attribute "trackno"Max Kellermann1-11/+6
2014-05-12icu/Collate: use u_strFoldCase() instead of ucol_getSortKey()Max Kellermann1-10/+41
Turns out ucol_getSortKey() does not what I thought it does.
2014-05-12icu/Collate: UCharFromUTF8() returns WritableBuffer<UChar>Max Kellermann1-19/+20
2014-05-12icu/Collate: initialize error_codeMax Kellermann1-1/+1
Fixes the broken "search" command.
2014-05-12mixer/software: keep attribute "volume" in the 0..100 rangeMax Kellermann1-7/+19
The attribute must be 0..100 and not 0..1024. Previously, the code was inconsistent.
2014-05-11InputStream: remove attribute "plugin"Max Kellermann16-63/+21
2014-05-11InputStream: make various methods abstractMax Kellermann19-643/+252
Replace InputPlugin attributes.
2014-05-11InputStream: add virtual destructorMax Kellermann26-173/+42
Replaces the method Close().
2014-05-11input/plugins: make InputStream the base classMax Kellermann15-320/+236
Prepare for adding virtual methods.
2014-05-11input/rewind: convert to classMax Kellermann1-46/+89