Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-05-12 | release v0.18.11 | Max Kellermann | 1 | -1/+1 | |
2014-04-29 | decoder/OggUtil: allow skipping up to 32 kB after seek | Max Kellermann | 1 | -0/+2 | |
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. | |||||
2014-04-26 | DeferredMonitor: fix race condition when using GLib event loop | Max Kellermann | 1 | -0/+1 | |
Turns out the lock-free code using atomics was not thread-safe. The given callback could be invoked by GLib before the source_id attribute was assigned. This commit changes the DeferredMonitor class to use a Mutex to block the event loop until source_id is assigned. This bug does not exist in the 0.19 branch because it does not use the GLib main loop anymore. | |||||
2014-04-26 | configure.ac: prepare for 0.18.11 | Max Kellermann | 1 | -0/+2 | |
2014-04-10 | release v0.18.10 | Max Kellermann | 1 | -1/+1 | |
2014-04-09 | decoder/sndfile: work around libsndfile bug on partial read | Marcello Desantis | 1 | -0/+1 | |
2014-04-09 | PlaylistEdit: don't interrupt playback when current song gets deleted | Weng Xuetian | 1 | -0/+1 | |
2014-03-18 | decoder/ffmpeg: handle unknown stream start time | Max Kellermann | 1 | -0/+1 | |
2014-03-18 | decoder/ffmpeg: pass AVSEEK_FLAG_ANY to av_seek_frame() | Max Kellermann | 1 | -0/+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. | |||||
2014-03-06 | decoder/gme: fix memory leak in container_scan() | Max Kellermann | 1 | -0/+2 | |
2014-03-06 | configure.ac: prepare for 0.18.10 | Max Kellermann | 1 | -0/+2 | |
2014-03-02 | release v0.18.9 | Max Kellermann | 1 | -1/+1 | |
2014-03-02 | output/alsa: call snd_pcm_prepare() after snd_pcm_drop() | Max Kellermann | 1 | -0/+2 | |
Don't wait for an optimistic write to fail. This is an improved workaround for the infamous Raspberry Pi bug (see commit af991765). It works much better and comes without the negative side effects. The old workaround is now obsolete. | |||||
2014-03-02 | event/SignalMonitor: fix build failure due to missing signal.h include | Max Kellermann | 1 | -0/+1 | |
2014-02-27 | AllCommands: "findadd" requires the "add" permission | Max Kellermann | 1 | -0/+2 | |
2014-02-18 | event/SignalMonitor: unblock signals after fork | Max Kellermann | 1 | -0/+2 | |
Fixes hanging child process in the "pipe" output plugin. | |||||
2014-02-18 | configure.ac: fix linker failure when libvorbis/libogg are static | Max Kellermann | 1 | -0/+2 | |
Link libvorbisfile first, followed to libvorbis and finally libogg. This order is necessary because libvorbisfile depends on libvorbis. | |||||
2014-02-17 | configure.ac: link the Vorbis encoder with libogg | Max Kellermann | 1 | -0/+2 | |
Fixes another linker failure. Similar to commit ea406875 | |||||
2014-02-09 | configure.ac: prepare for 0.18.9 | Max Kellermann | 1 | -0/+2 | |
2014-02-07 | release v0.18.8 | Max Kellermann | 1 | -1/+1 | |
2014-02-07 | NEWS: fix 0.18.7 release year | Max Kellermann | 1 | -1/+1 | |
2014-02-06 | doc/user: document the RoarAudio output plugin | Max Kellermann | 1 | -0/+2 | |
2014-02-06 | configure.ac: link the Vorbis encoder with libvorbis | Max Kellermann | 1 | -0/+2 | |
Since the encoder plugin uses a libvorbis function (and not only libvorbisenc functions), we need to link with libvorbis explicitly. | |||||
2014-01-27 | IcyMetadataParser: more robust tag parser | Max Kellermann | 1 | -0/+1 | |
Allow semicolons and single quotes in the stream title. This is not part of any specification, but found in real life. | |||||
2014-01-20 | Queue: rename struct queue to Queue | Max Kellermann | 1 | -0/+1 | |
Works around a build failure on Solaris because annoyingly, Solaris reserves the name "queue". This rename was pending anyway. | |||||
2014-01-15 | decoder/ffmpeg: support libav v10_alpha1 | Max Kellermann | 1 | -0/+2 | |
2014-01-15 | configure.ac: prepare for 0.18.8 | Max Kellermann | 1 | -0/+2 | |
2014-01-13 | release v0.18.7 | Max Kellermann | 1 | -1/+1 | |
2014-01-11 | configure.ac: reject libmpcdec SV7 in configure script | Max Kellermann | 1 | -0/+1 | |
Look for symbol "mpc_demux_init" which does not exist in SV7. This avoids build failures when SV7 was found by configure.ac. | |||||
2014-01-08 | decoder/faad: fix memory leak | Max Kellermann | 1 | -0/+2 | |
2014-01-08 | playlist/pls: don't free stack buffer | Max Kellermann | 1 | -0/+1 | |
2013-12-29 | configure.ac: improved check for libyajl 1.0 | Max Kellermann | 1 | -0/+2 | |
If we have libyajl 2.0.1 (without a pkg-config file), our configure.ac would assume this is the libyajl 1.0 API, because the function yajl_alloc() exists in both. This commit changes the library check to the function yajl_parse_complete() which was removed in the 2.0 API. This fixes build failure with libyajl 2.0.1. | |||||
2013-12-29 | daemon: no initgroups() when already running as the configured user | Max Kellermann | 1 | -0/+2 | |
We can assume that initgroups() would be a no-op in that case, however initgroups() is not allowed for unprivileged users anyway. | |||||
2013-12-29 | configure.ac: prepare for 0.18.7 | Max Kellermann | 1 | -0/+2 | |
2013-12-24 | release v0.18.6 | Max Kellermann | 1 | -1/+1 | |
2013-12-24 | OutputControl: update both ReplayGainFilters | Max Kellermann | 1 | -0/+1 | |
The "mode" of the second ReplayGainFilter was never set, and thus replay gain was never applied to the new song during cross-fade. | |||||
2013-12-20 | fix FfmpegDecoderPlugin to use relative timestamps | Steven O'Brien | 1 | -0/+2 | |
2013-12-19 | riff: recognize upper-case "ID3" chunk name | Michal Smucr | 1 | -0/+2 | |
Some tagging libraries (eg. TagLib) produce that variant. | |||||
2013-12-13 | mixer/alsa: use BlockingCall() instead of EventLoop::AddCall() | Max Kellermann | 1 | -0/+2 | |
This is safer, and works without epoll(). Fixes a build failure with uClibc, which does not support epoll(). | |||||
2013-12-10 | SongUpdate: accept files without metadata | mobidyc | 1 | -0/+1 | |
If the file was recognized by a decoder plugin, accept it - don't require metadata. | |||||
2013-12-10 | output/osx: fix build failure | Lukas Stabe | 1 | -0/+1 | |
2013-12-10 | NEWS: add openal line | Max Kellermann | 1 | -0/+2 | |
2013-11-27 | input/cdio_paranoia: support libcdio-paranoia 0.90 | Gaetan Bisson | 1 | -0/+2 | |
2013-11-27 | configure.ac: prepare for 0.18.6 | Max Kellermann | 1 | -0/+2 | |
2013-11-23 | release v0.18.5 | Max Kellermann | 1 | -1/+1 | |
2013-11-23 | input/curl: work around stream resume bug (fixed in libcurl 7.32.0) | Max Kellermann | 1 | -0/+2 | |
2013-11-22 | PcmResampleLibsamplerate: clip 24 bit data | Max Kellermann | 1 | -0/+1 | |
Using pcm_resample_lsr_32() for 24 bit samples works, but may cause 24 bit overflows. This commit makes 24 bit a special case with explicit clipping. | |||||
2013-11-22 | db/proxy: implement method GetUpdateStamp() | Max Kellermann | 1 | -0/+1 | |
2013-11-22 | Stats: print db statistics only if db is available | Max Kellermann | 1 | -0/+1 | |
Fixes crash on "stats" in certain configurations. | |||||
2013-11-22 | Stats: auto-reload statistics with proxy plugin | Max Kellermann | 1 | -0/+2 | |