aboutsummaryrefslogtreecommitdiff
path: root/src/output
Commit message (Collapse)AuthorAge
* configure.ac: require GLib 2.12Max Kellermann2009-11-10
| | | | | | Drop the required GLib version from 2.16 to 2.12, because many current systems still don't have GLib 2.16. This requires several new compatibility functions in glib_compat.h.
* fd_util: removed creat_cloexec()Max Kellermann2009-11-10
| | | | Add a "mode" argument to open_cloexec() instead.
* output/alsa: fill period buffer with silence before drainingMax Kellermann2009-11-09
| | | | | | | | | ALSA passes full period buffers to the hardware. If an application doesn't finish writing a period, libasound will nonetheless send the partial buffer (with undefined trailing data). This causes noise at the end of playback. This patch attempts to track the current position within the period buffer, and generates silence at the end, before calling snd_pcm_drain().
* fd_util: added O_NONBLOCK functionsMax Kellermann2009-11-08
| | | | | Changed the wrappers for pipe(), socket(), accept(). On WIN32, this does not work for pipe().
* set the close-on-exec flag on all file descriptorsMax Kellermann2009-11-07
| | | | | | | | | | | Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
* output/jack: added option "server_name"Max Kellermann2009-11-07
|
* output/httpd: moved code to httpd_output_bind()Max Kellermann2009-11-07
|
* output/jack: free source port names on exitMax Kellermann2009-11-07
| | | | Make valgrind happy.
* output/jack: dynamic source port listMax Kellermann2009-11-06
| | | | | | Same as the previous patch: create up to 16 configured source ports. The plugin tries to do its best at guessing the right combination for the given input file, the number of source and destination ports.
* output/jack: dynamic destination port listMax Kellermann2009-11-06
| | | | | Support up to 16 configured destination ports, that should really be enough for everybody.
* output/jack: renamed option "ports" to "destination_ports"Max Kellermann2009-11-06
| | | | Be more clear which kind of port should be configured here.
* output/jack: renamed "output ports" to "destination ports"Max Kellermann2009-11-06
| | | | Use the same name as in the libjack API documentation.
* output/httpd: bind port when output is enabledMax Kellermann2009-11-05
| | | | | | Implement the methods enable() and disable(). Bind the HTTP port in the enable() method, but reject all incoming connections until the output is opened.
* output/jack: support mono inputMax Kellermann2009-11-05
| | | | | When MPD plays a mono song (audio_format.channel==1), connect only one source port to both destination ports.
* output/jack: clear ring buffers before activatingMax Kellermann2009-11-05
| | | | | | After playback has stopped, the ring buffers may still contain samples. These will be played when playback is started the next time. We should clear the buffers each time.
* output/jack: use jack_client_open() instead of jack_client_new()Max Kellermann2009-11-05
| | | | | | | | jack_client_new() is deprecated. This requires libjack 0.100 (released nearly 5 years ago). We havn't been testing older libjack versions anyway. As a side effect, there is the new option "autostart".
* output/jack: added option "client_name"Max Kellermann2009-11-05
| | | | | | Instead of using MPD's audio output name (setting "name"), use a separate configuration option. Change the default to "Music Player Daemon".
* alsa_plugin.c: workaround snd_pcm_drain bugJeffrey Middleton2009-11-02
| | | | | | | Reintroduce a fix from commit 52a0653 (Warren Dukes): "don't call snd_pcm_drain unless we're already in the RUNNING state". This prevents ALSA with dmix from sometimes hanging when snd_pcm_drain is called, e.g. when moving from one song to the next (as in mantis issue 2634).
* httpd: add config option to limit number of clientsViliam Mateicka2009-10-29
|
* output_plugin: added method "drain"Max Kellermann2009-10-29
| | | | | | | drain() is the opposite of cancel(): it waits until all data in the buffer has finished playing. Instead of implicitly draining in the close() method like the ALSA plugin has been doing it forever, let the output thread decide whether to drain or to cancel.
* output/alsa: don't recover on CANCELMax Kellermann2009-10-29
| | | | | | The recovery is for nothing if we get CLOSE afterwards. Let's not recover in the cancel() method, and let the next play() call sort it out.
* output/pulse: initialize pulse_output.mixerMax Kellermann2009-10-29
| | | | This variable was uninitialized and led to crashes.
* include pulse/version.h for PA_CHECK_VERSIONAlam Arias2009-10-27
|
* output/jack: implement methods enable()/disable()Max Kellermann2009-10-23
| | | | Don't connect to JACK before MPD has daemonized.
* output/pulse: implement methods enable()/disable()Max Kellermann2009-10-23
| | | | Don't connect to PulseAudio before MPD has daemonized.
* output_plugin: added methods enable() and disable()Max Kellermann2009-10-23
| | | | | | | With these methods, an output plugin can allocate some global resources only if it is actually enabled. The method enable() is called after daemonization, which allows for more sophisticated resource allocation during that method.
* output/pulse: call mixer on state changesMax Kellermann2009-10-23
| | | | | | Don't let the mixer plugin "override" the libpulse callbacks. Instead, add a "mixer" attribute to the pulse_output struct, and call the mixer on all interesting events.
* output/fifo: renamed source to fifo_output_plugin.cMax Kellermann2009-10-22
|
* audio_format: wildcards allowed in audio_format configurationMax Kellermann2009-10-21
| | | | | | An asterisk means that this attribute should not be enforced, and stays whatever it used to be. This way, some configuration values work like masks.
* output/jack: make ringbuffer_size a size_tMax Kellermann2009-10-21
|
* output/jack: connect to server on MPD startupMax Kellermann2009-10-21
| | | | | .. and keep up the JACK connection while MPD runs. Allocate the ring buffers on the first open, and free them at MPD exit.
* output/jack: removed the empty "cancel" methodMax Kellermann2009-10-21
| | | | | JACK doesn't need cancel() because it won't do much anyway. Buffers are small.
* output/jack: renamed parameter "error" to "error_r"Max Kellermann2009-10-21
| | | | It's a double pointer.
* output/jack: implement the "pause" methodMax Kellermann2009-10-21
| | | | Don't disconnect from JACK during pause.
* output/jack: renamed source to jack_output_plugin.cMax Kellermann2009-10-21
|
* pulse: code rewrite using the asynchronous libpulse APIMax Kellermann2009-10-21
| | | | | | | | This is a complete rewrite of the PulseAudio output plugin. It uses the asynchronous API, which gives us more control over everything. Additionally, it connects to the PulseAudio server on startup, and keeps this connection up while MPD runs. During pause, instead of closing the stream, it enables "cork".
* mixer/{oss,alsa}: renamed the mixer source filesMax Kellermann2009-10-20
|
* output/pulse: renamed context to "Music Player Daemon"Max Kellermann2009-10-20
| | | | This looks nicer in the PulseAudio manager than just "mpd".
* pulse: renamed source filesMax Kellermann2009-10-20
|
* pulse: announce "media.role=music"Max Kellermann2009-10-20
| | | | This allows PulseAudio to do some advanced tweaks.
* tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann2009-10-13
|
* configure.ac: require GLib 2.16Max Kellermann2009-10-13
| | | | | | | Accidently, MPD has been using several GLib 2.16 functions for a while, and nobody noticed yet. To simplify the code base, let's bump the minimum GLib version for MPD to 2.16. That version is old enough, and it's reasonable to expect users to have it.
* output/osx: fix the OS X 10.6 buildPatrik Weiskircher2009-09-20
| | | | Include CoreServices/CoreServices.h.
* output/openal: support OpenAL plugin on Mac OS XSerge Ziryukin2009-09-07
|
* output/openal: fix default device nameSerge Ziryukin2009-09-06
|
* openal output pluginSerge Ziryukin2009-09-06
|
* output/recorder: new output plugin for recording radio streamsMax Kellermann2009-08-24
| | | | | | | | | The recorder plugin writes audio played by MPD to a file. This may be useful for recording radio streams. This implementation is incomplete, because support for tags is missing, and MPD should be able to record each track to a different file.
* Merged release 0.15.2 from branch 'v0.15.x'Max Kellermann2009-08-15
|\ | | | | | | | | | | | | Conflicts: NEWS configure.ac
| * output/shout: minimize the unpause latencyMax Kellermann2009-08-14
| | | | | | | | | | During the pause loop, manually sleep for 500ms if shout_delay() returns a value greater than that. Don't exhaust libshout's buffer.
* | Support wrong-endian ALSA outputDavid Woodhouse2009-07-19
|/