aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_list.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.