aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_list.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* decoder_list: print decoder list with suffixesMax Kellermann2009-02-281-2/+0
| | | | | Print the list of suffixes supported by each decoder, instead of prining a list of all suffixes of all decoders with duplicates.
* print supported decoders in --versionViliam Mateicka2008-12-301-0/+2
|
* decoder: manage decoder list in a static arrayMax Kellermann2008-11-011-4/+0
| | | | | Currently, there is no way to dynamically load decoder plugins, thus we don't need a dynamic list to manage them.
* decoder: return const decoder_plugin structsMax Kellermann2008-11-011-7/+8
| | | | | The decoder_plugin structs must never change. Don't work with non-const pointers.
* added prefix to header macrosMax Kellermann2008-10-311-2/+2
| | | | | | | "LOG_H" is a macro which is also used by ffmpeg/log.h. This is ffmpeg's fault, because short macros should be reserved for applications, but since it's always a good idea to choose prefixed macro names, even for applications, we are going to do that in MPD.
* don't include os_compat.hMax Kellermann2008-10-081-1/+1
| | | | | When there are standardized headers, use these instead of the bloated os_compat.h.
* renamed functions in decoder_list.hMax Kellermann2008-08-261-8/+10
| | | | InputPlugin to decoder_plugin, and no camelCase.
* renamed inputPlugin.* to decoder_list.*Max Kellermann2008-08-261-0/+46
Since inputPlugin.c manages the list of registered decoders, we should rename the source file.