aboutsummaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAge
...
* | db_print: print extra "playlist" object for embedded CUE sheetsMax Kellermann2012-02-12
| | | | | | | | | | | | This finally enables the new embedded CUE sheet code: when a song file contains a playlist, it is printed in the "lsinfo" output, so clients get to know about this.
* | cue_parser: new line based CUE sheet parserMax Kellermann2012-02-10
| | | | | | | | To replace libcue, the unmaintained and crashy library.
* | command: add optional range parameter to "load"Max Kellermann2012-02-09
| |
* | Merge commit 'release-0.16.7'Max Kellermann2012-02-05
|\| | | | | | | | | | | Conflicts: NEWS configure.ac
| * mpd version 0.16.7Avuton Olrich2012-02-04
| |
* | Merge branch 'v0.16.x'Max Kellermann2012-02-04
|\| | | | | | | | | | | | | Conflicts: src/decoder/ffmpeg_decoder_plugin.c test/read_tags.c test/run_decoder.c
| * decoder/ffmpeg: use AV_SAMPLE_FMT_* if availableMax Kellermann2012-02-03
| | | | | | | | | | Implements support for libavcodec 0.9, which removes the compatibility macros SAMPLE_FMT_*
| * decoder/ffmpeg: support all MPD tagsMax Kellermann2012-02-03
| | | | | | | | | | Use the tag_item_names table to look up the names of all MPD tags, and remove the duplicate entries from ffmpeg_tag_maps.
* | mixer/alsa: listen for external volume changesMax Kellermann2012-01-05
| | | | | | | | | | | | Use libasound's polling functions, implement a bridge to GSource / GPollFD and send idle events to clients when an external program changes the ALSA mixer volume.
* | Merge branch 'v0.16.x'Max Kellermann2012-01-05
|\| | | | | | | | | | | Conflicts: src/decoder/ffmpeg_decoder_plugin.c src/input/ffmpeg_input_plugin.c
| * decoder/ffmpeg: support libavformat 0.8Max Kellermann2012-01-05
| |
| * decoder/ffmpeg: use avcodec_decode_audio4(), support libavcodec 0.8Max Kellermann2012-01-04
| |
| * decoder/ffmpeg: use AVIOContext instead of ByteIOContextMax Kellermann2012-01-04
| |
| * input/ffmpeg: use the new AVIOContext APIMax Kellermann2012-01-04
| | | | | | | | URLContext is deprecated.
* | output/osx: implement 32 bit playbackMax Kellermann2011-12-24
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-12-24
|\|
| * output/osx: clear render buffer when there's not enough dataMax Kellermann2011-12-24
| | | | | | | | | | | | When we don't have enough data, generate some silence, hoping the input buffer will fill soon. Reducing the render buffer size is not legal.
| * output/osx: remove sleep call from render callbackMax Kellermann2011-12-24
| | | | | | | | | | Blocking inside the render callback is forbidden, and this sleep call didn't make any sense.
| * Playlist: fix bug in moving after current songMaarten Sebregts2011-12-21
| | | | | | | | | | | | | | | | | | Moving songs using either 'move' or 'moveid' to position -1 (after the current song) would fail for a song which is just before the current song. This patch corrects the check to see if the current song is in the range to be moved. Since the range is from `start` up to `end` (exclusive) the check was incorrect, but is now fixed.
* | command: new command "seekcur"Max Kellermann2011-12-24
| | | | | | | | For simpler seeking within current song.
* | output/openal: use alGetSourcei(AL_BUFFER) to force-unqueue buffersMax Kellermann2011-12-13
| | | | | | | | | | | | | | | | The implementation of cancel() did not work well: you cannot use alSourceUnqueueBuffers() to unqueue queued buffers, and our function openal_unqueue_buffers() left the OpenAL library in a rather undefined state; nothing was supposed to be queued, but the "filled" variable was not reset.
* | Merge branch 'v0.16.x'Max Kellermann2011-12-13
|\| | | | | | | | | | | Conflicts: NEWS configure.ac
| * output/openal: force 16 bit playback, as 8 bit doesn't workMax Kellermann2011-12-13
| | | | | | | | | | | | The OpenAL specification says that AL_FORMAT_MONO8 and AL_FORMAT_STEREO8 expect unsigned 8 bit samples, but MPD uses unsigned samples.
| * timer: fix time unit mixup in timer_delay()Max Kellermann2011-12-13
| | | | | | | | | | | | | | The local variable was already divided by 1000, and the return value was being divided by 1000 again - doh! This caused delays in the httpd output plugin that were too small by three orders of magnitude, and the buffer was filled too quickly.
| * Modify version string to post-release version 0.16.7~gitAvuton Olrich2011-12-01
| |
| * mpd version 0.16.6Avuton Olrich2011-12-01
| |
* | winmm_output_plugin: fail if wrong device specified instead of using fallback.Denis Krjuchkov2011-12-13
| | | | | | | | | | Silently choosing default is misleading and can cause hours of investigation. It's better to fail immediately telling user what is wrong with config.
* | Merge branch 'v0.16.x'Max Kellermann2011-11-28
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/encoder/flac_encoder.c src/log.c src/pcm_buffer.c
| * decoder/ffmpeg: work around bogus channel countMax Kellermann2011-11-28
| | | | | | | | | | Initialize the audio_format before calling avcodec_open(), because avcodec_open() will fill bogus values.
| * mapper: check "r" permission on music directoryMax Kellermann2011-11-28
| | | | | | | | Yet another common support case.
| * mapper: check "x" permission on music directoryMax Kellermann2011-11-28
| | | | | | | | | | This is a common support case, and hopefully, the new error message will allow the user to understand the error without requiring support.
| * mapper: fix the bogus "not a directory" error messageMax Kellermann2011-11-28
| | | | | | | | | | Use stat() instead of g_file_test() to detect other types of errors, such as "permission denied".
| * log: print reason for failureMax Kellermann2011-11-28
| |
| * encoder/wave: support packed 24 bit samplesMax Kellermann2011-11-28
| | | | | | | | Convert to padded 24 bit samples, instead of falling back to 16 bit.
| * encoder/null: use fifo_buffer instead of pcm_bufferMax Kellermann2011-11-28
| | | | | | | | | | | | This fixes a buffer corruption bug; pcm_buffer is not designed to be a persistent buffers, and will discard anything between two consecutive calls.
| * encoder/wave: use fifo_buffer instead of pcm_bufferMax Kellermann2011-11-28
| | | | | | | | | | | | This fixes a buffer corruption bug; pcm_buffer is not designed to be a persistent buffers, and will discard anything between two consecutive calls.
| * encoder/flac: use fifo_buffer instead of pcm_bufferMax Kellermann2011-11-28
| | | | | | | | | | | | This fixes a buffer corruption bug; pcm_buffer is not designed to be a persistent buffers, and will discard anything between two consecutive calls.
| * decoder_api: cancel initial seek when song is not seekableMax Kellermann2011-11-27
| | | | | | | | Fixes assertion failure.
| * path: autodetect filesystem encoding on Win32Denis Krjuchkov2011-10-23
| | | | | | | | | | | | | | WinAPI explicitly declares filesystem encoding. It can be determined by GetACP(). Use that instead of Glib routine that always "detects" UTF-8 on Win32, which is incorrect for MPD case.
| * configure.ac: define WINVERMax Kellermann2011-10-13
| | | | | | | | | | | | Ensure that WINVER is defined early enough, so other system headers won't fall back to their default value. Specifically, this solves a build failure (-Werror) with mingw-w64 ("WINVER redefined").
| * event_pipe: fix WIN32 regressionMax Kellermann2011-10-13
| | | | | | | | | | The event pipe is not a socket, and the patch that introduced g_io_channel_new_socket() to the event pipe library was wrong.
| * Modify version string to post-release version 0.16.6~gitAvuton Olrich2011-10-09
| |
* | audio_format: basic support for floating point samplesMax Kellermann2011-10-20
| | | | | | | | | | Support for conversion from float to 16, 24 and 32 bit integer samples.
* | Merge commit 'release-0.16.5'Max Kellermann2011-10-09
|\| | | | | | | | | | | Conflicts: NEWS configure.ac
| * mpd version 0.16.5Avuton Olrich2011-10-09
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-10-08
|\|
| * output/openal: auto-fallback to mono if channel count is unsupportedMax Kellermann2011-10-08
| | | | | | | | .. instead of failing playback completely.
* | playlist_song: allow references to songs outside the musicdirMax Kellermann2011-10-06
| | | | | | | | | | | | When we have an absolute path that's not inside the music directory, allow loading it anyway, if we're in "secure" mode (i.e. the client is connected via UNIX socket).
* | Merge branch 'v0.16.x'Max Kellermann2011-10-06
|\| | | | | | | | | | | | | | | Conflicts: configure.ac src/player_control.c src/player_thread.c src/playlist_song.c
| * playlist_song: fix absolute path support in playlistsJesús Bravo Álvarez2011-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | Right now, a playlist with absolute pathnames can only add songs that are in the same the directory of the playlist or under it. If uri is an absolute pathname and base_uri is set, playlist_check_translate_song() will check that base_uri is a prefix of uri, excluding every other song in the music directory outside base_uri. I think in this case base_uri should be completely ignored (and made NULL) and uri should just be checked against music root directory.