- 23 Mar, 2011 1 commit
-
-
Simon Kagstrom authored
Otherwise OGGs can't be played.
-
- 16 Mar, 2011 1 commit
-
-
Max Kellermann authored
Without the ogg_stream_reset() call, the "e_o_s" flag never gets reset, and libogg writes EOS packets over and over.
-
- 14 Mar, 2011 2 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
- 27 Feb, 2011 1 commit
-
-
Max Kellermann authored
With mono sound, jack_sample_size is smaller than frame_size (4 vs 2 bytes), and "space/jack_sample_size==0". That means mpd_jack_play() will return 0, although no error has occurred.
-
- 25 Feb, 2011 1 commit
-
-
Max Kellermann authored
-
- 15 Feb, 2011 1 commit
-
-
Christopher Brannon authored
Version 1.0.0 of the libao library added a new field to the ao_sample_format struct. It is a char * named matrix. When an ao_sample_format is allocated on the stack, this field contains garbage. The proper course is to insure that is initialized to NULL. NULL indicates that we do not want any mapping. The struct is now initialized using a static initializer, and this technique is compatible with all known versions of libao.
-
- 31 Jan, 2011 1 commit
-
-
Max Kellermann authored
-
- 14 Jan, 2011 1 commit
-
-
Andreas Wiese authored
<stdbool.h> needs to be included unconditionally from definition of NDEBUG, since »bool« doesn't get defined otherwise. Signed-off-by: Andreas Wiese <aw-devel@meterriblecrew.net>
-
- 07 Jan, 2011 4 commits
-
-
Max Kellermann authored
When you don't explicitly set an output sample rate, liblame tries to guess an output sample rate from the input sample rate. You would think that this "guessing" consists of just setting both equal, but that is not the case. For 44.1kHz at 96kbit/s, liblame chooses 32kHz. This patch explicitly configures the output sample rate, to stop the bad guessing.
-
Max Kellermann authored
-
Max Kellermann authored
Fixes autotools warnings.
-
Max Kellermann authored
-
- 21 Dec, 2010 3 commits
-
-
Max Kellermann authored
Cast the constant to dev_t, not to unsigned.
-
Max Kellermann authored
Fixes the gcc warning "implicit declaration of function 'htons'".
-
Max Kellermann authored
-
- 08 Nov, 2010 3 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
After popular demand, I've switched the order of "artist" and "title" in the stream title. There is no standard, and there is no reliable way to parse those from the stream title.
-
Max Kellermann authored
The assertion added in MPD 0.15.14 was too much, it failed when the MIME type of a stream was NULL.
-
- 06 Nov, 2010 2 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
- 05 Nov, 2010 8 commits
-
-
Max Kellermann authored
When one song is played twice, and the decoder is working on the second "instance", but the first should be seeked, the check in player_seek_decoder() may assume that it can reuse the decoder without exchanging pipes. The last thing was the mistake: the pipe pointer was different, which led to an assertion failure. This patch adds another check which exchanges the player pipe.
-
Max Kellermann authored
More abstraction for decoder_control.pipe.
-
Max Kellermann authored
Some abstraction for decoder_control.pipe access.
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
Duplicate the "mime" attribute of the inner input_stream object, instead of copying the pointer.
-
Max Kellermann authored
Same as ".m4a".
-
- 04 Nov, 2010 4 commits
-
-
Max Kellermann authored
Change the assertion on "fail_timer==NULL" in OPEN to a runtime check. This assertion crashed when the output thread failed while the player thread was calling audio_output_open().
-
Max Kellermann authored
-
Max Kellermann authored
Protect the attributes "open" and "fail_timer".
-
Max Kellermann authored
Protect the attributes "open" and "fail_timer".
-
- 10 Oct, 2010 2 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
- 03 Oct, 2010 1 commit
-
-
Max Kellermann authored
RFC 5334 10.3 defines the MIME type "audio/ogg". We could use "application/ogg" as well, but we know for sure that we only emit audio data.
-
- 28 Sep, 2010 1 commit
-
-
Thomas Jansen authored
-
- 23 Sep, 2010 1 commit
-
-
Thomas Jansen authored
The assumption that MIME type is set only once is not valid with CURL, as URL redirections may update the MIME type. This fixes bug #3044.
-
- 08 Sep, 2010 1 commit
-
-
Qball Cow authored
This caused random data to be send via icy-server if the played song had no tags.
-
- 07 Sep, 2010 1 commit
-
-
Max Kellermann authored
According to the CURL web site, curl_multi_timeout() was added in version 7.15.4: http://curl.haxx.se/libcurl/c/curl_multi_timeout.html
-