aboutsummaryrefslogtreecommitdiff
path: root/test/dump_playlist.c
Commit message (Collapse)AuthorAge
* test/dump_playlist: print open-ended rangeMax Kellermann2010-06-25
|
* input_stream: return allocated input_stream objectsMax Kellermann2010-01-01
| | | | | | | | Major API redesign: don't let the caller allocate the input_stream object. Let each input plugin allocate its own (derived/extended) input_stream pointer. The "data" attribute can now be removed, and all input plugins simply cast the input_stream pointer to their own structure (with an "struct input_stream base" as the first attribute).
* Update copyright notices.Avuton Olrich2009-12-31
|
* song: added support for selecting a time rangeMax Kellermann2009-12-27
| | | | | | Added attributes start_ms, end_ms. This allows us to address a portion of a song file (important for CUE support). There is no support yet for storing these attributes in the state file.
* input_stream: return errors with GErrorMax Kellermann2009-12-15
|
* input_plugin: method init() returns errors with GErrorMax Kellermann2009-12-14
| | | | | Not used by any plugin currently, but this eliminates the g_error() call in input_plugin_config(), so it's worth it.
* input_stream: moved input_stream_global_init() to input_init.cMax Kellermann2009-12-14
|
* 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.
* song: renamed attribute "url" to "uri"Max Kellermann2009-10-13
|
* test/dump_playlist: try playlist_list_open_uri() firstMax Kellermann2009-10-13
|
* test/dump_playlist: parse a configuration fileMax Kellermann2009-10-13
|
* playlist_plugin: new plugin API for playlist parsersMax Kellermann2009-10-12
Based on this API, we will add parsers for EXTM3U, PLS, ASX, last.fm radio and others. There is no integration into the MPD core yet. Right now, we have a command line test program. This is work in progress.