Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-21 | config/Param: split block-specific attributes to new struct ConfigBlock | Max Kellermann | 1 | -2/+2 | |
The old struct config_param remains only for top-level string options. | |||||
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-08-29 | TagHandler: pass SongTime to duration() | Max Kellermann | 1 | -1/+3 | |
2014-08-29 | DecoderAPI: pass SignedSongTime to decoder_initialized() | Max Kellermann | 1 | -2/+5 | |
2014-08-26 | decoder/wildmidi: use integer seek times | Max Kellermann | 1 | -2/+2 | |
2014-02-07 | DecoderPlugin: pass Path instance to file_decode() and scan_file() | Max Kellermann | 1 | -4/+5 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 1 | -1/+1 | |
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 1 | -1/+1 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -4/+5 | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||||
2013-10-16 | decoder/wildmidi: remove suport for libwildmidi 0.2.2 or older | Max Kellermann | 1 | -4/+0 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -5/+6 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderCommand: convert to strictly-typed enum | Max Kellermann | 1 | -4/+4 | |
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -1/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -2/+3 | |
Replaces GLib's GError. | |||||
2013-08-10 | decoder/wildmidi: use class Path for the "timidity.cfg" location | Max Kellermann | 1 | -10/+14 | |
2013-08-04 | DecoderPlugin: pass config_param reference | Max Kellermann | 1 | -3/+3 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -3/+3 | |
2013-07-29 | tag_handler: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | decoder_api: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | decoder/wildmidi: convert to C++ | Max Kellermann | 1 | -20/+25 | |
2012-06-12 | Work around incorrect g_file_test() behavior on Win32 | Denis Krjuchkov | 1 | -0/+1 | |
g_file_test is redefined to be g_file_test_utf8 and thus can't handle non-ASCII characters. This fix adds simple wrapper (taken from glib) that fixes encoding and calls g_file_test_utf8. All required inclusions of glib_compat.h are added as well. | |||||
2012-02-11 | decoder_plugin: scan tags with callback table | Max Kellermann | 1 | -8/+10 | |
Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object. | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-05-31 | decoder/wildmidi: moved local variable declarations in tag_dup() | Max Kellermann | 1 | -7/+3 | |
2010-01-04 | renamed decoder plugin sources | Max Kellermann | 1 | -0/+0 | |
Make it X_decoder_plugin.c. | |||||
2010-01-04 | decoder_api: added function decoder_replay_gain() | Max Kellermann | 1 | -2/+1 | |
This function replaces the replay_gain_info parameter for decoder_data(). This allows the decoder to announce replay gain changes, instead of having to pass the same object over and over. | |||||
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-26 | decoder_api: added function decoder_timestamp() | Max Kellermann | 1 | -2/+0 | |
Remove the data_time parameter from decoder_data(). This patch eliminates the timestamp counting in most decoder plugins, because the MPD core will do it automatically by default. | |||||
2009-12-02 | audio_format: changed "bits" to "enum sample_format" | Max Kellermann | 1 | -1/+1 | |
This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value. | |||||
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -1/+2 | |
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. | |||||
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -3/+4 | |
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-15 | wildmidi: check if configurationn file exists | Max Kellermann | 1 | -0/+4 | |
Don't call WildMidi_Init() if the configuration file does not exist. Don't let libwildmidi clutter stderr with its warning message. | |||||
2009-02-15 | wildmidi: obtain timidity.cfg location from mpd.conf | Max Kellermann | 1 | -3/+6 | |
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-12 | wildmidi: added seeking support | Max Kellermann | 1 | -1/+11 | |
Use WildMidi_SampledSeek() for seeking in a MIDI file. | |||||
2009-02-12 | wildmidi: provide and current total song time | Max Kellermann | 1 | -5/+34 | |
The _WM_Info struct provides all we need, it is obtained by WildMidi_GetInfo(). | |||||
2009-02-12 | wildmidi: new decoder plugin for MIDI files | Max Kellermann | 1 | -0/+102 | |