Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-11-22 | configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIB | Max Kellermann | 1 | -4/+4 | |
2014-08-29 | TagHandler: pass SongTime to duration() | Max Kellermann | 1 | -3/+3 | |
2014-08-29 | DecoderAPI: pass SignedSongTime to decoder_initialized() | Max Kellermann | 1 | -2/+2 | |
2014-08-26 | decoder/dsf: use integer seek times | Max Kellermann | 1 | -4/+4 | |
2014-08-23 | decoder/dsf: implement seeking | Max Kellermann | 1 | -1/+25 | |
2014-08-23 | decoder/dsf: refactor the main decoder loop | Max Kellermann | 1 | -19/+7 | |
Check for STOP before decoding the first chunk. This reduces the command latency. | |||||
2014-08-23 | decoder/dsf: make the buffer more local | Max Kellermann | 1 | -3/+2 | |
This allows the compiler to discard buffer contents between two iterations. | |||||
2014-08-23 | decoder/dsf: eliminate pointless return statement | Max Kellermann | 1 | -5/+4 | |
2014-08-23 | decoder/dsf: use the block count internally | Max Kellermann | 1 | -10/+10 | |
2014-08-23 | decoder/dsf: don't skip remaining bytes | Max Kellermann | 1 | -1/+1 | |
Nobody cares. | |||||
2014-08-23 | decoder/dsf: count the blocks, not the remaining bytes | Max Kellermann | 1 | -2/+3 | |
Prepare refactoring the whole plugin to use blocks instead of bytes. A block is the smallest addressable unit, and it will simplify the seeking code. | |||||
2014-08-23 | decoder/dsf: allow channel setups other than stereo | Max Kellermann | 1 | -2/+1 | |
This finishes the multi-channel support. Development of the feature was started with commit 02cc77cd8 | |||||
2014-08-23 | decoder/dsf: eliminate another hard-coded stereo mode assumption | Max Kellermann | 1 | -1/+1 | |
When calculating the upper bound using the "sample count" format header, don't assume it's stereo. | |||||
2014-08-23 | decoder/dsf: fix big-endian bugs | Max Kellermann | 1 | -6/+8 | |
2014-08-23 | decoder/dsf: compare with InputStream::GetRest() instead of ..GetSize() | Max Kellermann | 1 | -5/+2 | |
2014-08-22 | decoder/dsf: fix multi-channel files | Max Kellermann | 1 | -10/+46 | |
The plugin was horribly bugged for files that were not stereo. | |||||
2014-08-22 | decoder/dsf: simplify dsf_to_pcm_order() | Max Kellermann | 1 | -10/+5 | |
Don't pass the buffer size to the function, as it's known at compile time. Use "restrict" on the pointer arguments, and merge the two loops, which allows the compiler to optimize this loop with a few SSE2 instructions. | |||||
2014-08-21 | decoder/dsf: fix noise at end of malformed file | Max Kellermann | 1 | -15/+7 | |
Read one block at a time. This discards the last partial block, which cannot be interleaved anyway. Previously, uninitialised memory was used to interleave the last block, which generated some noise. | |||||
2014-08-21 | decoder/dsf: eliminate temporary buffer | Max Kellermann | 1 | -12/+7 | |
Convert into a second buffer that gets passed to decoder_data() without copying back to the first buffer. | |||||
2014-08-21 | decoder/dsf: add constant DSF_BLOCK_SIZE | Max Kellermann | 1 | -4/+6 | |
2014-08-21 | decoder/dsf: use size_t loop variables when the limit is a size_t | Max Kellermann | 1 | -2/+2 | |
2014-08-21 | decoder/dsf: use memcpy() | Max Kellermann | 1 | -4/+3 | |
2014-08-21 | decoder/dsf: make the "scratch" buffer local | Max Kellermann | 1 | -6/+5 | |
This allows the compiler to discard buffer contents between two function calls. | |||||
2014-08-20 | decoder/dsf: remove unused attribute "id3_size" | Max Kellermann | 1 | -1/+0 | |
2014-08-19 | decoder/DsdLib: use offset_type instead of uint64_t | Max Kellermann | 1 | -12/+11 | |
2014-08-19 | InputStream: move typedef offset_type to Offset.hxx | Max Kellermann | 1 | -2/+2 | |
Reduce header dependencies. | |||||
2014-08-19 | decoder/dsf: check InputStream::KnownSize() | Max Kellermann | 1 | -3/+5 | |
2014-08-19 | decoder/dsf: remove unnecessary ID3 offset check | Max Kellermann | 1 | -5/+1 | |
If the offset is out of range, the seek will simply fail. Not a problem. | |||||
2014-08-16 | decoder/dsf: Allow up to DSD512. Enable DSD rates based on Fs=48kHz | Jurgen Kramer | 1 | -1/+1 | |
2014-08-16 | Report bitrate for DSF and DSDIFF DSD decoders | Jurgen Kramer | 1 | -2/+4 | |
2014-08-16 | decoder/dsf: fix indent | Max Kellermann | 1 | -3/+3 | |
2014-01-24 | Input*: move to input/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -3/+0 | |
2013-11-23 | decoder/{dsf,dsdiff}: eliminate useless assignments | Max Kellermann | 1 | -2/+2 | |
2013-11-05 | decoder/dsf: enable DSD128 | Jurgen Kramer | 1 | -2/+2 | |
2013-10-28 | *: use nullptr instead of NULL | Max Kellermann | 1 | -3/+3 | |
2013-10-28 | decoder/dsf: don't play junk at the end of the "data" chunk | Max Kellermann | 1 | -1/+9 | |
2013-10-28 | decoder/dsf: add range check | Max Kellermann | 1 | -0/+3 | |
2013-10-28 | decoder/dsdlib: add class DsdUint64 | Max Kellermann | 1 | -20/+10 | |
Merge lots of duplicate code. | |||||
2013-10-28 | decoder/dsdlib: convert struct dsdlib_id to a class | Max Kellermann | 1 | -6/+6 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -7/+7 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 1 | -6/+6 | |
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 1 | -1/+1 | |
2013-10-17 | InputStream: use int64_t instead of goffset | Max Kellermann | 1 | -2/+2 | |
Decouple some more from GLib. | |||||
2013-10-16 | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 1 | -10/+11 | |
Replacing GLib macros. | |||||
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -4/+2 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderCommand: convert to strictly-typed enum | Max Kellermann | 1 | -6/+5 | |