aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/sidplay_plugin.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* decoder_plugin: added method stream_tag()Max Kellermann2009-12-311-0/+1
| | | | | This is like tag_dup(), but works with an input_stream object instead of a file path.
* decoder_api: added function decoder_timestamp()Max Kellermann2009-12-261-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.
* audio_format: changed "bits" to "enum sample_format"Max Kellermann2009-12-021-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.
* decoder: use audio_format_init_checked()Max Kellermann2009-11-141-0/+1
| | | | | | Let the audio_check library verify the audio format in all (relevant, i.e. non-hardcoded) plugins.
* decoder/sidplay: correctly calculate floating point timeMax Kellermann2009-11-141-8/+11
| | | | | Internally, use only the integer time. When needed, convert it to a floating point seconds value.
* include config.h in all sourcesMax Kellermann2009-11-121-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.
* tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann2009-10-131-4/+4
|
* Make the sidplay decoder filter configurable.Tony2009-09-281-1/+5
|
* decoder/sidplay: free songlength data blob in error handlerMax Kellermann2009-09-241-3/+4
| | | | | When parsing the songlength database fails, the code forgot to free the memory allocated by the raw file data.
* decoder/sidplay: moved code to sidplay_load_songlength_db()Max Kellermann2009-09-241-29/+36
|
* decoder/sidplay: free GError objectsMax Kellermann2009-09-241-0/+2
| | | | | The caller is responsible fro freeing GError objects. That g_error_free() call was missing in two places.
* decoder/sidplay: pass GError** to g_file_get_contents()Max Kellermann2009-09-241-1/+2
| | | | | The error handler dereferences GError*, but did not retrieve that object from g_file_get_contents().
* decoder/sidplay: support seekingMike Dawson2009-08-301-3/+34
|
* decoder/sidplay: implemented songlength databaseMike Dawson2009-08-301-0/+87
| | | | [mk: added autoconf test; fixed songlen_data_size type]
* decoder/sidplay: subtunesMike Dawson2009-08-301-8/+125
|
* Add audio_format_init() functionDavid Woodhouse2009-07-191-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.
* all: Update copyright header.Avuton Olrich2009-03-131-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.
* decoder_plugin: added method container_scan()Jochen Keil2009-03-091-0/+1
| | | | | [mk: fixed whitespace errors; use delete_song() instead of songvec_delete()]
* sidplay: new decoder plugin for playing C64 SID filesMax Kellermann2009-02-111-0/+161