- 04 Oct, 2011 6 commits
-
-
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 1 commit
-
-
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.
-
- 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
-
- 20 Sep, 2011 14 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
Same as _timeout_add_seconds(), but this one has millisecond resolution.
-
Max Kellermann authored
The numeric ID isn't so useful.
-
Max Kellermann authored
Allow port specification in "bind_to_address" settings.
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
Wrap close(), use closesocket() on WIN32/WinSock.
-
Max Kellermann authored
Don't provide the prototype if inotify_init() was not detected.
-
Max Kellermann authored
-
Max Kellermann authored
The server_socket library (used by the httpd output plugin) didn't check for WIN32, that's fixed now.
-
- 19 Sep, 2011 5 commits
-
-
Dan McGee authored
If a connected host disappears without our knowledge, as can happen over wireless or a hibernating machine, we continue to hold the port open waiting for messages. Because we never try to send anything down this now-broken pipe, the connection will sit idle taking up a slot in our allowed incoming connections list. If enough of these happen, an unintended Denial of Service takes place, where all connection slots are filled with now-broken, never ending connections. Setting the TCP keepalive option at least allows these to time out after the default two hours, which is sufficient in the non-malicious case. Signed-off-by: Dan McGee <dan@archlinux.org>
-
Max Kellermann authored
Pass audio_output objects around instead of void pointers. This will give some more control to the plugin, and prepares for non-blocking audio outputs.
-
Max Kellermann authored
Allow enabling the plugin explicitly without running Solaris, to test the build.
-
Max Kellermann authored
Wrong variable name.
-
Max Kellermann authored
Work around automake warning.
-
- 18 Sep, 2011 3 commits
-
-
Max Kellermann authored
Fixes gcc warnings.
-
Max Kellermann authored
-
Max Kellermann authored
Wrap the locking code.
-
- 17 Sep, 2011 2 commits
-
-
Max Kellermann authored
GLib has a built-in OOM handler.
-
Max Kellermann authored
-