aboutsummaryrefslogtreecommitdiffstats
path: root/src/output (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-25ao: no CamelCaseMax Kellermann1-48/+41
Renamed functions and variables.
2009-02-25ao: removed AoData.device!=NULL checksMax Kellermann1-12/+1
The MPD core guarantees that the audio_output object is always in a consistent state: either open or closed. When open, it will not call the open() method again, and when closed, it will not call play(). Removed several checks and the NULL initialization.
2009-02-25ao: removed implementation of method cancel()Max Kellermann1-6/+0
The method is empty, and we can simply set the method pointer to NULL instead.
2009-02-25output_plugin: don't pass audio_output object to method init()Max Kellermann10-28/+16
audio_output_get_name() has been removed, which was the only function left in output_api.h. The output plugin doesn't need the audio_output object at all, remove the parameter from the init() method.
2009-02-25output_api: removed audio_output_get_name()Max Kellermann3-23/+14
Use config_get_block_string("name") instead of audio_output_get_name().
2009-02-24jack: initialize local variable "space"Max Kellermann1-1/+1
Fix a gcc warning, initialize the "space" variable at the beginning of mpd_jack_play().
2009-02-23output: pass the music chunk pointer as void*, not char*Max Kellermann10-17/+17
The meaning of the chunk depends on the audio format; don't suggest a specific format by declaring the pointer as "char*", pass "void*" instead.
2009-02-23output_api: play() returns a lengthMax Kellermann10-112/+82
The old API required an output plugin to not return until all data passed to the play() method is consumed. Some output plugins have to loop to fulfill that requirement, and may block during that. Simplify these, by letting them consume only part of the buffer: make play() return the length of the consumed data.
2009-02-22shout: removed shout_plugin.hMax Kellermann2-53/+28
There are no plugins left which require shout_plugin.h. Moved the struct declaration to shout_plugin.c.
2009-02-22shout: removed shout_encoder_pluginsMax Kellermann1-11/+0
This array is empty, and is not used anymore.
2009-02-22shout: use the new encoder APIMax Kellermann4-551/+102
Removed shout's encoder plugin API in favor of the new generic encoder plugin API.
2009-02-22shout: merged open_shout_conn() into my_shout_open_device()Max Kellermann1-10/+2
The method implementation my_shout_open_device() consists of only one line, the call to open_shout_conn(). Merge both functions into one.
2009-02-22shout: bool return values instead of intMax Kellermann1-27/+28
Return true/false instead of 0/-1.
2009-02-19utils: use g_usleep() instead of my_usleep()Max Kellermann2-4/+2
Now that I've found this nice function in the GLib docs, we can finally remove our custom sleep function. Still all those callers of g_usleep() have to be migrated one day to use events, instead of regular polling.
2009-02-16output_api: don't include config.hMax Kellermann1-0/+1
If an output plugin requires config.h, it should include it directly.
2009-02-16output_plugin: replaced method "control()" with "mixer()"Max Kellermann2-16/+18
The output plugin shouldn't know any specifics of the mixer API. Make it return the mixer object, and let the caller deal with it.
2009-02-10shout_mp3: use audio_format_frame_size()Max Kellermann1-2/+1
Use audio_format_frame_size() instead of channels*audio_format_sample_size().
2009-02-10shout: pass void pointer to the encoderMax Kellermann3-5/+6
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.
2009-02-10shout_ogg: moved PCM conversion to a separate functionMax Kellermann1-12/+13
For simplification, moved the PCM conversion code to pcm16_to_ogg_buffer(). Work with a int16_t pointer instead of a char pointer.
2009-02-10ao: declare AoData.writeSize as size_tMax Kellermann1-3/+3
writeSize is a memory size and its type should thus be size_t. This allows us to remove two explicit casts.
2009-02-10osx: removed disabled debug messagesMax Kellermann1-43/+2
Nobody needs these debug messages anymore.
2009-02-09shout: clear buffer before calling the encoderMax Kellermann3-18/+14
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.
2009-02-09shout: don't postpone metadataMax Kellermann3-34/+14
Don't duplicate the tag received by the send_metadata() method - send it to the shout server directly.
2009-02-09shout: use libshout's synchronizationMax Kellermann2-24/+4
Removed the manual timer synchronization from the shout plugin. libshout's shout_sync() function does it for us.
2009-02-09shout: switch to blocking modeMax Kellermann2-77/+7
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.
2009-02-09shout: removed shout_data.tag_to_sendMax Kellermann2-9/+6
When shout_data.tag!=NULL, there is a "tag to send". The tag_to_send flag is redundant.
2009-02-09shout: removed shout_data.shout_errorMax Kellermann2-4/+0
That variable is set in handle_shout_error(), but is never read.
2009-02-02shout_mp3: call lame_close() in clear_encoder() methodMax Kellermann1-2/+6
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.
2009-02-02shout_mp3: free the lame_data struct on exitMax Kellermann1-0/+2
Make valgrind a little bit happier: free the global lame_data struct in the finish() method.
2009-01-30output_api: moved the command check out of method pause()Max Kellermann1-10/+3
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().
2009-01-30output_api: removed audio_output_closed()Max Kellermann1-1/+0
The function is only used by the MVP output plugin, and this one call is wrong.
2009-01-30jack: don't override output_ports in connect()Max Kellermann1-10/+22
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.
2009-01-30jack: removed sample_rate callbackMax Kellermann1-20/+7
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.
2009-01-30configure.ac: detect jack_set_info_function()Max Kellermann1-0/+5
jack_set_info_function() is not provided by older libjack versions. Attempt to detect if it is available.
2009-01-30jack: print info messagesMax Kellermann1-0/+7
Use jack_set_info_function() to install an info callback. Don't let libjack print them to stderr.
2009-01-29jack: don't manually close on shutdownMax Kellermann1-3/+1
Return false from mpd_jack_play(), let the MPD core close the device.
2009-01-29jack: initialize output_ports if not configuredMax Kellermann1-0/+3
Don't leave uninitialized bytes in the jack_data struct.
2009-01-29jack: close JACK client on stopMax Kellermann1-4/+4
When MPD stops playback, close the JACK client connection.
2009-01-29jack: removed "bps" attributeMax Kellermann1-5/+1
The "bps" attribute is calculated, but never used.
2009-01-29jack: make mpd_jack_connect() return boolMax Kellermann1-10/+10
Return true/false instead of 1/-1.
2009-01-29jack: use loops for allocating/freeing ports/buffersMax Kellermann1-36/+32
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.
2009-01-29jack: fail if jack_get_ports() returns NULLMax Kellermann1-19/+23
When jack_get_ports() returns NULL, we cannot have any ports to connect to, and the device cannot play anything.
2009-01-29jack: use jack_port_name() instead of g_malloc()+sprintf()Max Kellermann1-12/+2
libjack's jack_port_name() function returns the effective port name, we don't need to do it manually.
2009-01-29jack: initialize libjack's error function in mpd_jack_init()Max Kellermann1-1/+2
Do the global libjack initialization in the global plugin initialization function.
2009-01-29jack: reduced sleep time to 1msMax Kellermann1-1/+1
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.
2009-01-29jack: clear "shutdown" flag on reconnectMax Kellermann1-0/+2
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).
2009-01-29jack: allocate ring buffers before connectingMax Kellermann1-5/+3
If the ring buffers are allocated after jack_activate(), mpd_jack_process() might segfault because it attempts to access them.
2009-01-29jack: register ports before activating clientsMax Kellermann1-5/+5
Call jack_port_register() before jack_activate().
2009-01-25use g_free() instead of free()Max Kellermann7-12/+11
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.
2009-01-25mixer: removed mixer_configure(), configure mixer in mixer_new()Max Kellermann2-11/+3
Allocate the mixer object when it is configured. Merged mixer_configure() into mixer_new(). mixer_new() was quite useless anyway.