aboutsummaryrefslogtreecommitdiffstats
path: root/src/output_list.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-13all: Update copyright header.Avuton Olrich1-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.
2009-02-28pipe: new audio output plugin which runs a commandMichal Nazarewicz1-0/+4
[mk: adapted to new output plugin API]
2009-02-26oss: no CamelCaseMax Kellermann1-2/+2
Renamed types, functions and variables.
2009-02-25mvp: no CamelCaseMax Kellermann1-2/+2
Renamed types, functions and variables.
2009-02-25fifo: no CamelCaseMax Kellermann1-2/+2
Renamed types, functions and variables.
2009-02-25ao: no CamelCaseMax Kellermann1-2/+2
Renamed functions and variables.
2009-01-22null: no CamelCaseMax Kellermann1-2/+2
Renamed functions and variables.
2009-01-08added missing explicit config.h includesMax Kellermann1-0/+1
2008-12-29removed os_compat.hMax Kellermann1-1/+0
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
2008-10-29pulse: no CamelCaseMax Kellermann1-2/+2
2008-10-26output: don't compile plugins which are disabledMax Kellermann1-0/+18
Don't compile the sources of disabled output plugins at all.
2008-09-08output: static audio_output_plugin list as arrayMax Kellermann1-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.