Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-10-30 | *: update copyright year to 2013 | 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 | -2/+2 | |
2013-10-20 | decoder/sidplay: add header file | Max Kellermann | 1 | -0/+1 | |
2013-10-20 | decoder/sidplay: update file name | Max Kellermann | 1 | -0/+0 | |
2013-10-19 | *: use nullptr instead of NULL | Max Kellermann | 1 | -24/+24 | |
2013-10-19 | decoder/gme,input/curl,...: use static buffers instead of g_strdup_printf() | Max Kellermann | 1 | -5/+6 | |
2013-10-16 | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 1 | -5/+4 | |
Replacing GLib macros. | |||||
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -14/+21 | |
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 | -3/+3 | |
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -4/+1 | |
2013-08-04 | DecoderPlugin: pass config_param reference | Max Kellermann | 1 | -8/+6 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -4/+3 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -0/+1 | |
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-01-07 | decoder_api.h, ...: add "extern C" | Max Kellermann | 1 | -1/+1 | |
2012-08-01 | decoder/sidplay: fix C++ compiler warnings | Max Kellermann | 1 | -4/+4 | |
2012-02-15 | decoder/sidplay: remove unused variable 'ret' | Jonathan Neuschäfer | 1 | -1/+0 | |
2012-02-11 | decoder_plugin: scan tags with callback table | Max Kellermann | 1 | -11/+15 | |
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-10-27 | decoder/sidplay: play mus, str, prg, x00 files | Alder Hornbridge | 1 | -0/+4 | |
2010-10-27 | decoder/sidplay: play monaural SID tunes in mono | Alder Hornbridge | 1 | -2/+10 | |
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-31 | decoder_plugin: added method stream_tag() | Max Kellermann | 1 | -0/+1 | |
This is like tag_dup(), but works with an input_stream object instead of a file path. | |||||
2009-12-26 | decoder_api: added function decoder_timestamp() | Max Kellermann | 1 | -4/+4 | |
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-14 | decoder: use audio_format_init_checked() | Max Kellermann | 1 | -0/+1 | |
Let the audio_check library verify the audio format in all (relevant, i.e. non-hardcoded) plugins. | |||||
2009-11-14 | decoder/sidplay: correctly calculate floating point time | Max Kellermann | 1 | -8/+11 | |
Internally, use only the integer time. When needed, convert it to a floating point seconds value. | |||||
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+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-10-13 | tag: removed the "_ITEM_" suffix from the enum names | Max Kellermann | 1 | -4/+4 | |
2009-09-28 | Make the sidplay decoder filter configurable. | Tony | 1 | -1/+5 | |
2009-09-24 | decoder/sidplay: free songlength data blob in error handler | Max Kellermann | 1 | -3/+4 | |
When parsing the songlength database fails, the code forgot to free the memory allocated by the raw file data. | |||||
2009-09-24 | decoder/sidplay: moved code to sidplay_load_songlength_db() | Max Kellermann | 1 | -29/+36 | |
2009-09-24 | decoder/sidplay: free GError objects | Max Kellermann | 1 | -0/+2 | |
The caller is responsible fro freeing GError objects. That g_error_free() call was missing in two places. | |||||
2009-09-24 | decoder/sidplay: pass GError** to g_file_get_contents() | Max Kellermann | 1 | -1/+2 | |
The error handler dereferences GError*, but did not retrieve that object from g_file_get_contents(). | |||||
2009-08-30 | decoder/sidplay: support seeking | Mike Dawson | 1 | -3/+34 | |
2009-08-30 | decoder/sidplay: implemented songlength database | Mike Dawson | 1 | -0/+87 | |
[mk: added autoconf test; fixed songlen_data_size type] | |||||
2009-08-30 | decoder/sidplay: subtunes | Mike Dawson | 1 | -8/+125 | |
2009-07-19 | Add audio_format_init() function | David Woodhouse | 1 | -3/+1 | |
It makes no difference right now, but we're about to add an endianness flag and will want to make sure it's correctly initialised every time. | |||||
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-03-09 | decoder_plugin: added method container_scan() | Jochen Keil | 1 | -0/+1 | |
[mk: fixed whitespace errors; use delete_song() instead of songvec_delete()] | |||||
2009-02-11 | sidplay: new decoder plugin for playing C64 SID files | Max Kellermann | 1 | -0/+161 | |