aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
Commit message (Collapse)AuthorAge
* patch to split DSD decoder into separate decoders for DSF en DFF. Move commonJurgen Kramer2012-06-27
| | | | functions to new dsdlib. Update user doc.
* Merge branch 'v0.16.x'Max Kellermann2012-06-12
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/cmdline.c src/decoder/wildmidi_decoder_plugin.c src/gcc.h src/glib_compat.h src/input_stream.c src/output_list.c src/output_thread.c valgrind.suppressions
| * decoder_list: add _for_each() macrosMax Kellermann2012-06-12
| |
* | decoder/dsdiff: new decoder pluginMax Kellermann2011-10-04
| | | | | | | | | | Doesn't seem to work yet, getting just noise from a test file. Seeking isn't implemented yet.
* | decoder/oggflac: delete this obsolete pluginMax Kellermann2011-09-01
| | | | | | | | | | libOggFLAC has been deprecated for 5 years now, and we havn't been testing it for a long time. Let's delete it.
* | copyright year 2011Max Kellermann2011-01-29
| |
* | decoder: new "pcm" decoder pluginMax Kellermann2010-12-22
|/ | | | Just there to support the "cdio_paranoia" input plugin.
* eliminate g_error() usageThomas Jansen2010-09-25
| | | | | | | | | | | | | | Replaced all occurrences of g_error() with MPD_ERROR() located in a new header file 'mpd_error.h'. This macro uses g_critical() to print the error message and then exits gracefully in contrast to g_error() which would internally call abort() to produce a core dump. The macro name is distinctive and allows to find all places with dubious error handling. The long-term goal is to get rid of MPD_ERROR() altogether. To facilitate the eventual removal of this macro it was added in a new header file rather than to an existing header file. This fixes #2995 and #3007.
* Decoder for game music emulation library.Tony Miller2010-04-10
| | | | | | | | Supports a number of videogame music formats, more info here: http://www.fly.net/~ant/libs/audio.html I wrote this plugin for the latest svn, get it here: http://code.google.com/p/game-music-emu/source/checkout
* Update copyright notices.Avuton Olrich2009-12-31
|
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* decoder_list: fix decoder_plugin_from_mime_type()Max Kellermann2009-11-09
| | | | | Copy'n'paste error: call decoder_plugin_supports_mime_type() instead of decoder_plugin_supports_suffix().
* decoder_list: moved print_all_decoders() to cmdline.cMax Kellermann2009-11-07
| | | | | | Export the decoder_plugins array. The function decoder_plugin_print_all_decoders() it is UI specific and should not live in this backend library.
* decoder_list: pass previous plugin pointer to lookup functionsMax Kellermann2009-11-07
| | | | Remove the static integer hack, that's not thread safe and sucks.
* decoder_list: moved suffix/mime_type checks to decoder_plugin.cMax Kellermann2009-11-07
|
* decoder_list: back to NULL terminated listMax Kellermann2009-11-07
| | | | A NULL terminated list is easier to iterate.
* utils: renamed stringFoundInStringArray()Max Kellermann2009-11-06
| | | | | No CamelCase. Use bool instead of int. Make both arguments mandatory.
* decoder/mpg123: new decoder plugin based on libmpg123Max Kellermann2009-08-26
| | | | | | | | Still missing: - seeking - tags - streaming - encodings other than MPG123_ENC_SIGNED_16
* decoder/sndfile: new decoder plugin based on libsndfileMax Kellermann2009-07-07
|
* decoder: prefer wildmidi over fluidsynthAvuton Olrich2009-04-06
|
* decoder: Rename all main decoder plugins functions to *decoder_plugin.Avuton Olrich2009-04-02
|
* configure.ac: renamed --enable-mod to --enable-mikmodMax Kellermann2009-04-01
|
* configure.ac: renamed --enable-oggvorbis to --enable-vorbisMax Kellermann2009-04-01
|
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | 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-28
| | | | | Print the list of suffixes supported by each decoder, instead of prining a list of all suffixes of all decoders with duplicates.
* renamed decoder plugin "mpc" to "mpcdec"Max Kellermann2009-02-17
| | | | This plugin is based on "libmpcdec".
* renamed decoder plugin "mp4" to "mp4ff"Max Kellermann2009-02-17
| | | | This plugin is based on "libmp4ff".
* renamed decoder plugin "aac" to "faad"Max Kellermann2009-02-16
| | | | A decoder plugin should be named after the library which is used.
* renamed decoder plugin "mp3" to "mad"Max Kellermann2009-02-16
| | | | A decoder plugin should be named after the library which is used.
* decoder_list: added configuration option to disable decoder pluginsMax Kellermann2009-02-15
|
* decoder_list: added configuration block "decoder"Max Kellermann2009-02-15
| | | | | The "decoder" configuration block may contain the configuration of one decoder plugin.
* decoder_plugin: pass struct config_param to init() methodMax Kellermann2009-02-15
| | | | Preparing for per-plugin configuration sections in mpd.conf.
* decoder_plugin: added inline wrapper functionsMax Kellermann2009-02-15
| | | | | Increase code readability, always use the wrapper functions instead of calling the plugin method pointers directly.
* decoder_api: moved struct decoder_plugin to decoder_plugin.hMax Kellermann2009-02-15
| | | | | | 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.
* wildmidi: new decoder plugin for MIDI filesMax Kellermann2009-02-12
|
* fluidsynth: new decoder plugin for MIDI filesMax Kellermann2009-02-12
| | | | | | | | | | | | | | 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)
* sidplay: new decoder plugin for playing C64 SID filesMax Kellermann2009-02-11
|
* renamed the "mod" decoder plugin to "mikmod"Max Kellermann2009-01-24
| | | | | We have two mod plugins now: modplug and mod. Rename the latter to a more useful name.
* flac: no CamelCaseMax Kellermann2009-01-15
| | | | Renamed types, functions, variables.
* oggvorbis: no CamelCaseMax Kellermann2009-01-14
| | | | Renamed functions and variables.
* added missing explicit config.h includesMax Kellermann2009-01-08
|
* print supported decoders in --versionViliam Mateicka2008-12-30
|
* decoder: new plugin using modplug libraryViliam Mateicka2008-12-28
|
* utils: moving stringFoundInStringArray() from decoder into utilsViliam Mateicka2008-12-09
|
* flac: enable oggflac with libflacMax Kellermann2008-11-10
| | | | | | | 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.
* wavpack: no CamelCaseMax Kellermann2008-11-04
| | | | Renamed functions and variables.
* mp4: no CamelCaseeMax Kellermann2008-11-04
| | | | Renamed functions and variables.
* ffmpeg: no CamelCaseMax Kellermann2008-11-04
| | | | Renamed variables.
* configure.ac: separate the "aac" and "mp4" decoder testsMax Kellermann2008-11-03
| | | | | | | 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.
* decoder: enable decoders even if they have no init() methodMax Kellermann2008-11-02
| | | | | | 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.