aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
Commit message (Collapse)AuthorAge
...
* decoder: make all decoder_plugin structs constMax Kellermann2008-11-01
| | | | | All decoder_plugin structs are initialized at compile time, and must never change.
* decoder: manage decoder list in a static arrayMax Kellermann2008-11-01
| | | | | 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-01
| | | | | The decoder_plugin structs must never change. Don't work with non-const pointers.
* decoder: use bool for return values and flagsMax Kellermann2008-10-30
| | | | | Don't return 0/-1 on success/error, but true/false. Instead of int, use bool for storing flags.
* ffmpeg: new decoder pluginViliam Mateicka2008-10-17
| | | | | | [mk: fixed indent, changed copyright statement, added autoconf test, fixed includes paths, fixed 2 gcc warnings, don't close input stream twice]
* Makefile.am: don't compile disabled decoder pluginsMax Kellermann2008-10-17
| | | | | Don't compile the sources of disabled decoder plugins at all, and don't attempt to register these.
* decoder: renamed plugin methodsMax Kellermann2008-09-29
| | | | | Why have a "_func" prefix on all method names? Also don't typedef the methods, there is no advantage in that.
* moved global variable "pc" to player.hMax Kellermann2008-08-26
| | | | | This is the last of the three variables. Now we don't need playerData.h anymore in most sources.
* renamed functions in decoder_list.hMax Kellermann2008-08-26
| | | | InputPlugin to decoder_plugin, and no camelCase.
* no camel case in struct decoder_pluginMax Kellermann2008-08-26
|
* renamed inputPlugin.* to decoder_list.*Max Kellermann2008-08-26
Since inputPlugin.c manages the list of registered decoders, we should rename the source file.