Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | decoder/dsdiff: simplify dsdlib_skip() call | Max Kellermann | 2014-07-12 | 1 | -4/+3 |
| | |||||
* | decoder/dsdiff: simplify loop condition, merge branches | Max Kellermann | 2014-07-12 | 1 | -7/+2 |
| | |||||
* | decoder/dsdiff: ignore garbage null byte at end of file | Max Kellermann | 2014-07-12 | 1 | -1/+1 |
| | | | | | Failure to read another chunk header is not fatal. Continue to read metadata. | ||||
* | decoder/dsdiff: fix metadata parser bug (uninitialized variables) | Max Kellermann | 2014-07-12 | 1 | -1/+4 |
| | |||||
* | decoder/faad: estimate song duration for remote files | Max Kellermann | 2014-07-12 | 1 | -0/+22 |
| | | | | | | | | Previously, MPD tried to slurp the whole song file, count the number of frames and calculate the song duration from that. That however is extremely expensive for remote files, and will delay playback for a long time. Workaround: check only the first 128 frames and try to extrapolate from here. Fixes Mantis ticket 0004035. | ||||
* | decoder/faad: bail out early if sample rate is invalid | Max Kellermann | 2014-07-12 | 1 | -0/+2 |
| | |||||
* | decoder/faad: use adts_check_frame() in faad_song_duration() | Max Kellermann | 2014-07-12 | 1 | -2/+1 |
| | | | | Eliminate more duplicate code. | ||||
* | decoder/faad: test "seekable" after ADTS frame check | Max Kellermann | 2014-07-12 | 1 | -1/+5 |
| | | | | | Don't bother to check for ADIF just because the stream is not seekable. | ||||
* | decoder/faad: move code to faad_decoder_new() | Max Kellermann | 2014-07-12 | 1 | -14/+17 |
| | | | | Merge some duplicate code. | ||||
* | decoder/faad: remove unnecessary read | Max Kellermann | 2014-07-12 | 1 | -2/+0 |
| | | | | Eliminate some overhead when the caller doesn't need the buffer. | ||||
* | DecoderBuffer: add method _clear() | Max Kellermann | 2014-07-12 | 1 | -8/+3 |
| | |||||
* | decoder/faad: check sample_rate, not frames_per_second | Max Kellermann | 2014-07-11 | 1 | -2/+4 |
| | | | | Checking the integer is faster, easier and more reliable. | ||||
* | decoder/faad: make variables more local | Max Kellermann | 2014-07-11 | 1 | -71/+49 |
| | |||||
* | decoder/faad: use MAX_CHANNELS | Max Kellermann | 2014-07-11 | 1 | -4/+2 |
| | | | | .. instead of declaring a new constant. | ||||
* | decoder/sndfile: use decoder_read_full() | Max Kellermann | 2014-07-11 | 1 | -16/+6 |
| | | | | | Replaces the loop in sndfile_vio_read(), eliminating duplicate and fragile code. | ||||
* | decoder/sndfile: use decoder_read() | Max Kellermann | 2014-07-11 | 1 | -16/+22 |
| | | | | .. instead of InputStream::LockRead(). The former is cancellable. | ||||
* | decoder/sndfile: log seek errors | Max Kellermann | 2014-07-11 | 1 | -1/+4 |
| | |||||
* | decoder/audiofile: log seek errors | Max Kellermann | 2014-07-11 | 1 | -0/+1 |
| | |||||
* | decoder/audiofile: fix typo in comment | Max Kellermann | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | decoder/dsd: use decoder_read_full() where appropriate | Joff | 2014-07-09 | 4 | -31/+19 |
| | | | | | | | Addresses Mantis ticket 0004015. [mk: use decoder_read_full() only when needed, and a few formal changes] | ||||
* | decoder/audiofile: use decoder_read_full() | Max Kellermann | 2014-07-09 | 1 | -1/+6 |
| | | | | | Works around WAV stream playback bug, because libaudiofile does not like partial reads (Mantis 0004028). | ||||
* | DecoderAPI: add function decoder_read_full() | Max Kellermann | 2014-07-09 | 1 | -12/+2 |
| | | | | Move code from the "mad" plugin. | ||||
* | DecoderAPI: add function decoder_skip() | Max Kellermann | 2014-07-09 | 1 | -14/+1 |
| | | | | Move code from the "mad" plugin. | ||||
* | decoder/audiofile: use decoder_read() | Max Kellermann | 2014-07-09 | 1 | -15/+24 |
| | | | | | .. instead of InputStream::LockRead(). The former is cancellable. | ||||
* | decoder/OpusDecoderPlugin: fix build failure due to missing stdio.h include | Gustavo Zacarias | 2014-07-09 | 1 | -0/+1 |
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> | ||||
* | decoder/AudiofileDecoderPlugin: fix build failure due to missing stdio.h include | Gustavo Zacarias | 2014-07-09 | 1 | -0/+1 |
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> | ||||
* | decoder/OggUtil: allow skipping up to 32 kB after seek | Max Kellermann | 2014-04-29 | 1 | -1/+1 |
| | | | | | | | Fixes missing song length on high-latency Opus files. According to tests with 320 kbit/s opus files with 60ms packets, we need to skip up to 29 kB. | ||||
* | decoder/sndfile: work around libsndfile bug on partial read | Marcello Desantis | 2014-04-09 | 1 | -6/+20 |
| | |||||
* | decoder/ffmpeg: handle unknown stream start time | Max Kellermann | 2014-03-18 | 1 | -2/+25 |
| | |||||
* | decoder/ffmpeg: pass AVSEEK_FLAG_ANY to av_seek_frame() | Max Kellermann | 2014-03-18 | 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. | ||||
* | decoder/gme: fix memory leak in container_scan() | Max Kellermann | 2014-03-06 | 1 | -0/+1 |
| | |||||
* | decoder/ffmpeg: support libav v10_alpha1 | Max Kellermann | 2014-01-15 | 1 | -1/+11 |
| | |||||
* | decoder/ffmpeg: include cleanup | Max Kellermann | 2014-01-15 | 2 | -4/+1 |
| | |||||
* | decoder/ffmpeg: check for av_samples_get_buffer_size() errors | Max Kellermann | 2014-01-15 | 1 | -0/+3 |
| | | | | Fixes potential nullptr dereference. | ||||
* | decoder/faad: fix memory leak | Max Kellermann | 2014-01-08 | 1 | -0/+2 |
| | |||||
* | fix FfmpegDecoderPlugin to use relative timestamps | Steven O'Brien | 2013-12-20 | 1 | -4/+6 |
| | |||||
* | decoder/ffmpeg: use IgnoreError instead of local Error instance | Max Kellermann | 2013-11-28 | 1 | -5/+2 |
| | |||||
* | decoder/{dsf,dsdiff}: eliminate useless assignments | Max Kellermann | 2013-11-23 | 2 | -5/+4 |
| | |||||
* | decoder/OggFind.cxx: include stdio.h for SEEK_END definition | Denis Krjuchkov | 2013-11-18 | 1 | -0/+2 |
| | |||||
* | decoder/dsdiff: fix byte order bug | Jurgen Kramer | 2013-11-10 | 2 | -2/+13 |
| | |||||
* | decoder/dsf: enable DSD128 | Jurgen Kramer | 2013-11-05 | 1 | -2/+2 |
| | |||||
* | Log: add level "DEFAULT" | Max Kellermann | 2013-11-04 | 2 | -9/+9 |
| | | | | | | Map LogLevel::INFO to G_LOG_LEVEL_INFO, and LogLevel::DEFAULT to G_LOG_LEVEL_MESSAGE. Now client connect/disconnect message are only logged on log_level "secure". | ||||
* | *: update copyright year to 2013 | Max Kellermann | 2013-10-30 | 26 | -26/+26 |
| | |||||
* | *: use nullptr instead of NULL | Max Kellermann | 2013-10-28 | 5 | -23/+23 |
| | |||||
* | decoder/dsf: don't play junk at the end of the "data" chunk | Max Kellermann | 2013-10-28 | 1 | -1/+9 |
| | |||||
* | decoder/dsf: add range check | Max Kellermann | 2013-10-28 | 1 | -0/+3 |
| | |||||
* | decoder/dsdlib: add class DsdUint64 | Max Kellermann | 2013-10-28 | 3 | -25/+26 |
| | | | | Merge lots of duplicate code. | ||||
* | decoder/dsdlib: include cleanup | Max Kellermann | 2013-10-28 | 1 | -1/+1 |
| | |||||
* | decoder/dsdlib: move API documentation to header | Max Kellermann | 2013-10-28 | 2 | -5/+4 |
| | |||||
* | decoder/dsdlib: convert struct dsdlib_id to a class | Max Kellermann | 2013-10-28 | 4 | -34/+35 |
| |