- 08 Oct, 2011 7 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
The protocol mandates that playlist URIs are absolute (i.e. full URI relative to the music directory, not relative to the parent directory). This adds the parameter "directory" to the "playlist" visitor method.
-
Max Kellermann authored
-
Max Kellermann authored
.. instead of failing playback completely.
-
Max Kellermann authored
Allow gcc to warn when a new format isn't supported.
-
Max Kellermann authored
Let the libsamplerate code initialize itself.
-
Max Kellermann authored
Load the samplerate_converter on MPD startup. Fail if the converter name is invalid.
-
- 07 Oct, 2011 3 commits
-
-
Max Kellermann authored
Defaults to "no", which fixes the noise problems.
-
Max Kellermann authored
Defaulting to "with systemd" causes problems for users who install MPD as an unprivileged user, and it breaks "make distcheck". It looks like enabling it by default creates too many practical problems for unexperienced users. With --with-systemdsystemunitdir (without a parameter), configure.ac attempts to auto-detect systemd.
-
Max Kellermann authored
-
- 06 Oct, 2011 6 commits
-
-
Max Kellermann authored
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).
-
Max Kellermann authored
Conflicts: configure.ac src/player_control.c src/player_thread.c src/playlist_song.c
-
Jesús Bravo Álvarez authored
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.
-
Max Kellermann authored
Previously, the condition "defined(play_audio_format)" was used to see if an output device has been opened, but if the device had failed on startup, an assertion failure could occur. This patch adds a separate flag.
-
Max Kellermann authored
Common function that manages "player" attributes after audio_output_all_open() has returned.
-
Max Kellermann authored
-
- 05 Oct, 2011 6 commits
-
-
Max Kellermann authored
Now that the player thread can handle SEEK commands while not (yet) playing, we can remove the "pc.state" check from pc_seek().
-
Max Kellermann authored
-
Max Kellermann authored
This checks both conditions: pending and running. Fixes yet another assertion failure!
-
Max Kellermann authored
.. and add a few code comments.
-
Max Kellermann authored
Don't read song.start_ms and song.end_ms, let the player thread manage this logic instead.
-
Max Kellermann authored
Fixes one more assertion failure.
-
- 04 Oct, 2011 7 commits
-
-
Max Kellermann authored
Fixes possible assertion failure.
-
Max Kellermann authored
Doesn't seem to work yet, getting just noise from a test file. Seeking isn't implemented yet.
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
Fixes gcc warnings.
-
Sebastian Gesemann authored
[this is the code from dsd2pcm_src.zip, published on a forum by Sebastian Gesemann. Upon request, he has given permission to redistribute and modify his code, without referring to a specific license. - mk]
-
Max Kellermann authored
To be used in fixed-size arrays.
-
- 03 Oct, 2011 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
Needed for the I/O thread.
-
- 30 Sep, 2011 2 commits
-
-
Steven Blackburn authored
The Naim Uniti does not appear to support icecast-style streaming of FLAC music but does support the codec from a DLNA server. This change looks for "transferMode.dlna.org: Streaming" in the HTTP request header and responds with something the Uniti (and hopefully other DLNA clients) accepts. The only difference in the DLNA streaming mode is the reponse header and that icecast metadata is disabled. If a client request indicates both modes are supported, the DLNA mode is preferred (as the Uniti says it supports both but then rejects a FLAC ICY stream). Note: This change may be specific to Naim equipment (the only device it was tested on). E.g. the hardcoding of Content-Length which works but is not a logically correct value. The change should be backwards-compatible, so only those clients requesting a DLNA stream will see any difference.
-
Miklos Vajna authored
-
- 21 Sep, 2011 7 commits
-
-
Max Kellermann authored
Conflicts: src/player_thread.c
-
Max Kellermann authored
When playing a CUE track, the player thread waited for the decoder to become ready, and then sent a SEEK command to the beginning of the CUE track. If that is near the start of the song file, and the track is short enough, the decoder could have finished decoding already at that point, and seeking fails. This commit makes this initial seek more robust: instead of letting the player thread deal with the difficult timings, let the decoder API emulate a SEEK command, and return it to the decoder plugin, as soon as the plugin finishes its initialization.
-
Max Kellermann authored
-
Jonathan Neuschäfer authored
-
Jonathan Neuschäfer authored
-
Dan McGee authored
On Win32, the third setsockopt parameter has type (char *) while on POSIX systems it is (void *). However, given that it is a no-op cast to go from a char pointer to a void pointer, we can cast to a char pointer (with a possible const modifier) on all platforms and satisfy the compiler. Signed-off-by: Dan McGee <dan@archlinux.org>
-
Jonathan Neuschäfer authored
-