- 10 Feb, 2009 5 commits
-
-
Max Kellermann authored
Use audio_format_frame_size() instead of channels*audio_format_sample_size().
-
Max Kellermann authored
Pass the music chunk as a "const void *" to the encoder, instead of a "const char *". Actually, both encoders currently expect 16 bit samples, passing a 8-bit character is rather pointless.
-
Max Kellermann authored
For simplification, moved the PCM conversion code to pcm16_to_ogg_buffer(). Work with a int16_t pointer instead of a char pointer.
-
Max Kellermann authored
writeSize is a memory size and its type should thus be size_t. This allows us to remove two explicit casts.
-
Max Kellermann authored
Nobody needs these debug messages anymore.
-
- 09 Feb, 2009 6 commits
-
-
Max Kellermann authored
Always assume the buffer is empty before calling the encoder. Always flush the buffer immediately after there has been added something. This reduces the risk of buffer overruns, because there will never be a "rest" in the current buffer.
-
Max Kellermann authored
Don't duplicate the tag received by the send_metadata() method - send it to the shout server directly.
-
Max Kellermann authored
Removed the manual timer synchronization from the shout plugin. libshout's shout_sync() function does it for us.
-
Max Kellermann authored
The non-blocking mode of libshout is sparsely documented, and MPD's implementation had several bugs. Also removed connect throttling code, that is done by the MPD core since 0.14.
-
Max Kellermann authored
When shout_data.tag!=NULL, there is a "tag to send". The tag_to_send flag is redundant.
-
Max Kellermann authored
That variable is set in handle_shout_error(), but is never read.
-
- 02 Feb, 2009 2 commits
-
-
Max Kellermann authored
The shout_mp3 encoder had two bugs: when no song was ever played, MPD segfaulted during cleanup. Second bug: memory leak, each time the shout device was opened, lame_init() was called again, and lame_close() is only called once during shutdown. Fix this by shutting down LAME each time the clear_encoder() method is called.
-
Max Kellermann authored
Make valgrind a little bit happier: free the global lame_data struct in the finish() method.
-
- 30 Jan, 2009 6 commits
-
-
Max Kellermann authored
Move the "while" loop which checks for commands to the caller ao_pause(). This simplifies the pause() method, and lets us remove audio_output_is_pending().
-
Max Kellermann authored
The function is only used by the MVP output plugin, and this one call is wrong.
-
Max Kellermann authored
If no ports are configured, don't overwrite the (NULL) configuration with the port names of the first JACK server. If the server changes after a JACK reconnect, MPD won't attempt to auto-detect again.
-
Max Kellermann authored
Currently, the JACK plugin manipulates the audio_format struct which was passed to the open() method. This is very likely to break, because the plugin must not permanently store this pointer. After this patch, MPD ignores sample rate changes. It looks like other software is doing the same, and I guess this is a non-issue. This patch converts the audio_format pointer within jack_data into a static audio_format struct.
-
Max Kellermann authored
jack_set_info_function() is not provided by older libjack versions. Attempt to detect if it is available.
-
Max Kellermann authored
Use jack_set_info_function() to install an info callback. Don't let libjack print them to stderr.
-
- 29 Jan, 2009 13 commits
-
-
Max Kellermann authored
Return false from mpd_jack_play(), let the MPD core close the device.
-
Max Kellermann authored
Don't leave uninitialized bytes in the jack_data struct.
-
Max Kellermann authored
When MPD stops playback, close the JACK client connection.
-
Max Kellermann authored
The "bps" attribute is calculated, but never used.
-
Max Kellermann authored
Return true/false instead of 1/-1.
-
Max Kellermann authored
Preparation for supporting other channel numbers than stereo: use loops instead of duplicating code for the second channel. Most likely, gcc will unroll these loops, so the binary won't be any different.
-
Max Kellermann authored
When jack_get_ports() returns NULL, we cannot have any ports to connect to, and the device cannot play anything.
-
Max Kellermann authored
libjack's jack_port_name() function returns the effective port name, we don't need to do it manually.
-
Max Kellermann authored
Do the global libjack initialization in the global plugin initialization function.
-
Max Kellermann authored
When waiting for free space in the ring buffer, the JACK plugin sleeped 10ms until there is enough space. This delay was too large for low-latency setups (<10ms), and created a lot of xruns. Work around that by reducing the sleep time to 1ms. A proper solution for this would be to use an event based approach, and we will do it, just not now.
-
Max Kellermann authored
When the connection failed once, you had to restart MPD, because it never cleared the jack_data.shutdown flag. Instead, it refused to play anything "because there is no client thread" (which is wrong at that point).
-
Max Kellermann authored
If the ring buffers are allocated after jack_activate(), mpd_jack_process() might segfault because it attempts to access them.
-
Max Kellermann authored
Call jack_port_register() before jack_activate().
-
- 25 Jan, 2009 8 commits
-
-
Max Kellermann authored
On some platforms, g_free() must be used for memory allocated by GLib. This patch intends to correct a lot of occurrences, but is probably not complete.
-
Max Kellermann authored
Allocate the mixer object when it is configured. Merged mixer_configure() into mixer_new(). mixer_new() was quite useless anyway.
-
Max Kellermann authored
Don't use statically allocated mixer objects.
-
Max Kellermann authored
Return the default value in the conf_get_block_*() functions when param==NULL was passed. This simplifies a lot of code, because all initialization can be done in one code path, regardless whether configuration is present.
-
Max Kellermann authored
All config_get_block_*() functions should accept constant config_param pointers.
-
Max Kellermann authored
Document alsa_data members.
-
Max Kellermann authored
frame_size is a memory size and should be a size_t, not a signed integer.
-
Max Kellermann authored
Renamed types, functions, variables.
-