aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/SidplayDecoderPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-07util/Alloc: new library replacing GLib's g_malloc()Max Kellermann1-3/+4
2013-10-30*: update copyright year to 2013Max Kellermann1-1/+1
2013-10-21decoder: rename the struct to "Decoder"Max Kellermann1-1/+1
2013-10-21decoder_plugin: rename struct to DecoderPluginMax Kellermann1-2/+2
2013-10-20decoder/sidplay: add header fileMax Kellermann1-0/+1
2013-10-20decoder/sidplay: update file nameMax Kellermann1-0/+0
2013-10-19*: use nullptr instead of NULLMax Kellermann1-24/+24
2013-10-19decoder/gme,input/curl,...: use static buffers instead of g_strdup_printf()Max Kellermann1-5/+6
2013-10-16system/ByteOrder: new library for byte ordering / endianessMax Kellermann1-5/+4
Replacing GLib macros.
2013-10-02Log: new logging library APIMax Kellermann1-14/+21
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-27DecoderCommand: convert to strictly-typed enumMax Kellermann1-3/+3
2013-09-05Tag, ...: move to libtag.aMax Kellermann1-4/+1
2013-08-04DecoderPlugin: pass config_param referenceMax Kellermann1-8/+6
2013-08-03audio_format: convert to C++Max Kellermann1-4/+3
2013-07-30tag: convert to C++Max Kellermann1-0/+1
2013-07-29tag_handler: convert to C++Max Kellermann1-1/+1
2013-07-28decoder_api: convert to C++Max Kellermann1-1/+1
2013-01-07decoder_api.h, ...: add "extern C"Max Kellermann1-1/+1
2012-08-01decoder/sidplay: fix C++ compiler warningsMax Kellermann1-4/+4
2012-02-15decoder/sidplay: remove unused variable 'ret'Jonathan Neuschäfer1-1/+0
2012-02-11decoder_plugin: scan tags with callback tableMax Kellermann1-11/+15
Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object.
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-10-27decoder/sidplay: play mus, str, prg, x00 filesAlder Hornbridge1-0/+4
2010-10-27decoder/sidplay: play monaural SID tunes in monoAlder Hornbridge1-2/+10
2010-01-04renamed decoder plugin sourcesMax Kellermann1-0/+0
Make it X_decoder_plugin.c.
2010-01-04decoder_api: added function decoder_replay_gain()Max Kellermann1-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-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-31decoder_plugin: added method stream_tag()Max Kellermann1-0/+1
This is like tag_dup(), but works with an input_stream object instead of a file path.
2009-12-26decoder_api: added function decoder_timestamp()Max Kellermann1-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-02audio_format: changed "bits" to "enum sample_format"Max Kellermann1-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-14decoder: use audio_format_init_checked()Max Kellermann1-0/+1
Let the audio_check library verify the audio format in all (relevant, i.e. non-hardcoded) plugins.
2009-11-14decoder/sidplay: correctly calculate floating point timeMax Kellermann1-8/+11
Internally, use only the integer time. When needed, convert it to a floating point seconds value.
2009-11-12include config.h in all sourcesMax Kellermann1-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-13tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann1-4/+4
2009-09-28Make the sidplay decoder filter configurable.Tony1-1/+5
2009-09-24decoder/sidplay: free songlength data blob in error handlerMax Kellermann1-3/+4
When parsing the songlength database fails, the code forgot to free the memory allocated by the raw file data.
2009-09-24decoder/sidplay: moved code to sidplay_load_songlength_db()Max Kellermann1-29/+36
2009-09-24decoder/sidplay: free GError objectsMax Kellermann1-0/+2
The caller is responsible fro freeing GError objects. That g_error_free() call was missing in two places.
2009-09-24decoder/sidplay: pass GError** to g_file_get_contents()Max Kellermann1-1/+2
The error handler dereferences GError*, but did not retrieve that object from g_file_get_contents().
2009-08-30decoder/sidplay: support seekingMike Dawson1-3/+34
2009-08-30decoder/sidplay: implemented songlength databaseMike Dawson1-0/+87
[mk: added autoconf test; fixed songlen_data_size type]
2009-08-30decoder/sidplay: subtunesMike Dawson1-8/+125
2009-07-19Add audio_format_init() functionDavid Woodhouse1-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-13all: Update copyright header.Avuton Olrich1-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-09decoder_plugin: added method container_scan()Jochen Keil1-0/+1
[mk: fixed whitespace errors; use delete_song() instead of songvec_delete()]
2009-02-11sidplay: new decoder plugin for playing C64 SID filesMax Kellermann1-0/+161