- 16 Mar, 2009 2 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
[mk: don't run pkg-config when shout is disabled]
-
- 15 Mar, 2009 19 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Max Kellermann authored
Due to a race condition, httpd_client_out_event() could be called even when its GLib event source was already removed. Check that case.
-
Max Kellermann authored
When the httpd output is cancelled, it freed all pages, but didn't remove them from the queue. Call g_queue_clear() and remove the write source id.
-
Avuton Olrich authored
-
Max Kellermann authored
Copy all tags know to MPD to the vorbis_comment.
-
Max Kellermann authored
Allocate the vorbis_comment object when it's used. It is not used anymore in vorbis_encoder_tag().
-
Max Kellermann authored
Don't reinitialize the encoder with every tag.
-
Max Kellermann authored
Prepare the removal of vorbis_encoder.vc.
-
Max Kellermann authored
Use GLib the logging functions g_debug(), g_error() instead.
-
Max Kellermann authored
The function is unused.
-
Max Kellermann authored
-
Max Kellermann authored
This "upload" target uploads generated documentation to http://www.musicpd.org/doc/, and works only for my user account.
-
Max Kellermann authored
Let's get rid of the "shout" plugin, and the awfully complicated icecast daemon setup! MPD can do better if it's doing the HTTP server stuff on its own. This new plugin has several advantages: - easier to set up - only one daemon, no password settings, no mount settings - MPD controls the encoder and thus already knows the packet boundaries - icecast has to parse them - MPD doesn't bother to encode data while nobody is listening This implementation is very experimental (no header parsing, ignores request URI, no icy-metadata, ...). It should be able to suport several encoders in parallel in the future (with different bit rates, different codec, ...), to make MPD the perfect streaming server. Once MPD gets multi-player support, we can even mount several different radio stations on one server.
-
Max Kellermann authored
-
Max Kellermann authored
Converted the ogg_page attribute from the vorbis_encoder struct to a local function of vorbis_encoder_read(). This simplifies some code, because we don't need to check the page anymore before using it.
-
Max Kellermann authored
Add the "flush" flag, and defer the ogg_stream_flush() call. Call ogg_stream_pageout() or ogg_stream_flush() (depending on the "flush" flag) in vorbis_encoder_read(). This prevents the ogg_page from getting overwritten by consecutive ogg_stream_pageout() calls.
-
- 14 Mar, 2009 19 commits
-
-
Max Kellermann authored
Moved code from listen_add_address() (listen.c) to socket_util.c.
-
Max Kellermann authored
-
Max Kellermann authored
It is a library which I have written years ago for other projects. This library is licensed under BSD 2-clause, because it is very generic.
-
Max Kellermann authored
-
Max Kellermann authored
Even if libsamplerate support is enabled, compile the fallback resampler. When the user specifies the option "samplerate_converter=internal", it is chosen in favor of libsamplerate. This may help users with a weak FPU who don't want to compile a custom MPD from source, because the fallback resampler does not use floating point operations.
-
Max Kellermann authored
Added diversion functions to pcm_resample.c. These check which resampler is enabled at compile time (libsamplerate or fallback). This prepares the following patch.
-
Max Kellermann authored
In NDEBUG, clear_tail_chunk() does not use its "chunk" parameter.
-
Max Kellermann authored
The source output_all.c accesses music_chunk struct members, but did not include chunk.h directly.
-
Max Kellermann authored
-
Max Kellermann authored
The variable is private.
-
Max Kellermann authored
Changed "0" to "NULL".
-
Max Kellermann authored
Changed "0" to "NULL".
-
Max Kellermann authored
At the last line of handle_addid(), the playlist_result value has already been evaluated. Don't return this variable, it's the wrong type.
-
Max Kellermann authored
addToPlaylist() has a "enum playlist_result" return value. Convert that to "enum command_return" properly.
-
Max Kellermann authored
On failure, the function should return NULL, not a boolean.
-
Max Kellermann authored
sparse cannot deal with C++.
-
Max Kellermann authored
sparse complains that a lot of limit.h macros are missing. Define them to keep sparse quiet.
-
Max Kellermann authored
Turn the "return false" error handlers into "return NULL".
-
Max Kellermann authored
Moved the hash table initialization from sticker_list_values() to the new function sticker_new(). This fixes a memory leak in sticker_list_values().
-