Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-11-09 | decoder_list: fix decoder_plugin_from_mime_type() | Max Kellermann | 1 | -1/+1 | |
Copy'n'paste error: call decoder_plugin_supports_mime_type() instead of decoder_plugin_supports_suffix(). | |||||
2009-11-07 | decoder_list: moved print_all_decoders() to cmdline.c | Max Kellermann | 1 | -23/+2 | |
Export the decoder_plugins array. The function decoder_plugin_print_all_decoders() it is UI specific and should not live in this backend library. | |||||
2009-11-07 | decoder_list: pass previous plugin pointer to lookup functions | Max Kellermann | 1 | -10/+25 | |
Remove the static integer hack, that's not thread safe and sucks. | |||||
2009-11-07 | decoder_list: moved suffix/mime_type checks to decoder_plugin.c | Max Kellermann | 1 | -4/+4 | |
2009-11-07 | decoder_list: back to NULL terminated list | Max Kellermann | 1 | -7/+8 | |
A NULL terminated list is easier to iterate. | |||||
2009-11-06 | utils: renamed stringFoundInStringArray() | Max Kellermann | 1 | -4/+4 | |
No CamelCase. Use bool instead of int. Make both arguments mandatory. | |||||
2009-08-26 | decoder/mpg123: new decoder plugin based on libmpg123 | Max Kellermann | 1 | -0/+4 | |
Still missing: - seeking - tags - streaming - encodings other than MPG123_ENC_SIGNED_16 | |||||
2009-07-07 | decoder/sndfile: new decoder plugin based on libsndfile | Max Kellermann | 1 | -0/+4 | |
2009-04-06 | decoder: prefer wildmidi over fluidsynth | Avuton Olrich | 1 | -4/+4 | |
2009-04-02 | decoder: Rename all main decoder plugins functions to *decoder_plugin. | Avuton Olrich | 1 | -8/+8 | |
2009-04-01 | configure.ac: renamed --enable-mod to --enable-mikmod | Max Kellermann | 1 | -1/+1 | |
2009-04-01 | configure.ac: renamed --enable-oggvorbis to --enable-vorbis | Max Kellermann | 1 | -1/+1 | |
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -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-28 | decoder_list: print decoder list with suffixes | Max Kellermann | 1 | -21/+10 | |
Print the list of suffixes supported by each decoder, instead of prining a list of all suffixes of all decoders with duplicates. | |||||
2009-02-17 | renamed decoder plugin "mpc" to "mpcdec" | Max Kellermann | 1 | -2/+2 | |
This plugin is based on "libmpcdec". | |||||
2009-02-17 | renamed decoder plugin "mp4" to "mp4ff" | Max Kellermann | 1 | -2/+2 | |
This plugin is based on "libmp4ff". | |||||
2009-02-16 | renamed decoder plugin "aac" to "faad" | Max Kellermann | 1 | -2/+2 | |
A decoder plugin should be named after the library which is used. | |||||
2009-02-16 | renamed decoder plugin "mp3" to "mad" | Max Kellermann | 1 | -2/+2 | |
A decoder plugin should be named after the library which is used. | |||||
2009-02-15 | decoder_list: added configuration option to disable decoder plugins | Max Kellermann | 1 | -0/+4 | |
2009-02-15 | decoder_list: added configuration block "decoder" | Max Kellermann | 1 | -1/+29 | |
The "decoder" configuration block may contain the configuration of one decoder plugin. | |||||
2009-02-15 | decoder_plugin: pass struct config_param to init() method | Max Kellermann | 1 | -1/+1 | |
Preparing for per-plugin configuration sections in mpd.conf. | |||||
2009-02-15 | decoder_plugin: added inline wrapper functions | Max Kellermann | 1 | -3/+5 | |
Increase code readability, always use the wrapper functions instead of calling the plugin method pointers directly. | |||||
2009-02-15 | decoder_api: moved struct decoder_plugin to decoder_plugin.h | Max Kellermann | 1 | -1/+3 | |
The decoder_plugin struct is used by both the MPD core and the decoder plugin implementations. Move it to a shared header file, to minimize header dependencies. | |||||
2009-02-12 | wildmidi: new decoder plugin for MIDI files | Max Kellermann | 1 | -0/+4 | |
2009-02-12 | fluidsynth: new decoder plugin for MIDI files | Max Kellermann | 1 | -0/+4 | |
There are a few problems left in this plugin: - fluidsynth decodes in real time, while MPD prefers to buffer as quickly as possible; as a workaround, this plugin uses a timer object to synchronize with real-time playback - I don't know yet how fluidsynth tells me when the song has ended - the "soundfont" configuration setting is not yet documented, and it will likely change soon (in favor of a per-decoder configuration block) | |||||
2009-02-11 | sidplay: new decoder plugin for playing C64 SID files | Max Kellermann | 1 | -0/+4 | |
2009-01-24 | renamed the "mod" decoder plugin to "mikmod" | Max Kellermann | 1 | -2/+2 | |
We have two mod plugins now: modplug and mod. Rename the latter to a more useful name. | |||||
2009-01-15 | flac: no CamelCase | Max Kellermann | 1 | -4/+4 | |
Renamed types, functions, variables. | |||||
2009-01-14 | oggvorbis: no CamelCase | Max Kellermann | 1 | -2/+2 | |
Renamed functions and variables. | |||||
2009-01-08 | added missing explicit config.h includes | Max Kellermann | 1 | -0/+1 | |
2008-12-30 | print supported decoders in --version | Viliam Mateicka | 1 | -0/+13 | |
2008-12-28 | decoder: new plugin using modplug library | Viliam Mateicka | 1 | -0/+4 | |
2008-12-09 | utils: moving stringFoundInStringArray() from decoder into utils | Viliam Mateicka | 1 | -11/+1 | |
2008-11-10 | flac: enable oggflac with libflac | Max Kellermann | 1 | -1/+1 | |
The "oggflac" plugin was enabled only if HAVE_FLAC_COMMON was defined. HAVE_FLAC_COMMON however is only an automake variable, and is never available in decoder_list.c. Make decoder_list.c depend on HAVE_FLAC||HAVE_OGGFLAC instead. | |||||
2008-11-04 | wavpack: no CamelCase | Max Kellermann | 1 | -2/+2 | |
Renamed functions and variables. | |||||
2008-11-04 | mp4: no CamelCasee | Max Kellermann | 1 | -2/+2 | |
Renamed functions and variables. | |||||
2008-11-04 | ffmpeg: no CamelCase | Max Kellermann | 1 | -2/+2 | |
Renamed variables. | |||||
2008-11-03 | configure.ac: separate the "aac" and "mp4" decoder tests | Max Kellermann | 1 | -1/+3 | |
MPD used to have a copy of the mp4ff library. Since that has been removed, AAC suport was disabled when there was no libmp4ff. Separate the libmp4ff test, and enable AAC support no matter if libmp4ff is available. | |||||
2008-11-02 | decoder: enable decoders even if they have no init() method | Max Kellermann | 1 | -1/+1 | |
Commit 1a4a3e1f moved decoders into a static array, but failed to enable those plugins who did not have an init() method at all. This patch corrects the "enabled" check. | |||||
2008-11-01 | decoder: make all decoder_plugin structs const | Max Kellermann | 1 | -11/+11 | |
All decoder_plugin structs are initialized at compile time, and must never change. | |||||
2008-11-01 | decoder: manage decoder list in a static array | Max Kellermann | 1 | -90/+78 | |
Currently, there is no way to dynamically load decoder plugins, thus we don't need a dynamic list to manage them. | |||||
2008-11-01 | decoder: return const decoder_plugin structs | Max Kellermann | 1 | -7/+8 | |
The decoder_plugin structs must never change. Don't work with non-const pointers. | |||||
2008-10-30 | decoder: use bool for return values and flags | Max Kellermann | 1 | -1/+1 | |
Don't return 0/-1 on success/error, but true/false. Instead of int, use bool for storing flags. | |||||
2008-10-17 | ffmpeg: new decoder plugin | Viliam Mateicka | 1 | -0/+4 | |
[mk: fixed indent, changed copyright statement, added autoconf test, fixed includes paths, fixed 2 gcc warnings, don't close input stream twice] | |||||
2008-10-17 | Makefile.am: don't compile disabled decoder plugins | Max Kellermann | 1 | -0/+18 | |
Don't compile the sources of disabled decoder plugins at all, and don't attempt to register these. | |||||
2008-09-29 | decoder: renamed plugin methods | Max Kellermann | 1 | -3/+3 | |
Why have a "_func" prefix on all method names? Also don't typedef the methods, there is no advantage in that. | |||||
2008-08-26 | moved global variable "pc" to player.h | Max Kellermann | 1 | -0/+1 | |
This is the last of the three variables. Now we don't need playerData.h anymore in most sources. | |||||
2008-08-26 | renamed functions in decoder_list.h | Max Kellermann | 1 | -18/+20 | |
InputPlugin to decoder_plugin, and no camelCase. | |||||
2008-08-26 | no camel case in struct decoder_plugin | Max Kellermann | 1 | -4/+4 | |
2008-08-26 | renamed inputPlugin.* to decoder_list.* | Max Kellermann | 1 | -1/+1 | |
Since inputPlugin.c manages the list of registered decoders, we should rename the source file. |