aboutsummaryrefslogtreecommitdiffstats
path: root/src/output_list.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* move printAllOutputPluginTypes to output_list.cViliam Mateicka2009-03-211-0/+12
|
* solaris: new audio output plugin for Solaris /dev/audioMax Kellermann2009-03-161-0/+4
|
* httpd: new output plugin to replace "shout"Max Kellermann2009-03-151-0/+4
| | | | | | | | | | | | | | | | | | | 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.
* all: Update copyright header.Avuton Olrich2009-03-131-6/+7
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* pipe: new audio output plugin which runs a commandMichal Nazarewicz2009-02-281-0/+4
| | | | [mk: adapted to new output plugin API]
* oss: no CamelCaseMax Kellermann2009-02-261-2/+2
| | | | Renamed types, functions and variables.
* mvp: no CamelCaseMax Kellermann2009-02-251-2/+2
| | | | Renamed types, functions and variables.
* fifo: no CamelCaseMax Kellermann2009-02-251-2/+2
| | | | Renamed types, functions and variables.
* ao: no CamelCaseMax Kellermann2009-02-251-2/+2
| | | | Renamed functions and variables.
* null: no CamelCaseMax Kellermann2009-01-221-2/+2
| | | | Renamed functions and variables.
* added missing explicit config.h includesMax Kellermann2009-01-081-0/+1
|
* removed os_compat.hMax Kellermann2008-12-291-1/+0
| | | | | Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
* pulse: no CamelCaseMax Kellermann2008-10-291-2/+2
|
* output: don't compile plugins which are disabledMax Kellermann2008-10-261-0/+18
| | | | Don't compile the sources of disabled output plugins at all.
* output: static audio_output_plugin list as arrayMax Kellermann2008-09-081-0/+59
Instead of having to register each output plugin, store them statically in an array. This eliminates the need for the List library here, and saves some small allocations during startup.