aboutsummaryrefslogtreecommitdiffstats
path: root/test/dump_playlist.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* copyright year 2011Max Kellermann2011-01-291-1/+1
|
* test/dump_playlist: print open-ended rangeMax Kellermann2010-06-251-1/+5
|
* input_stream: return allocated input_stream objectsMax Kellermann2010-01-011-12/+9
| | | | | | | | 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-311-1/+1
|
* song: added support for selecting a time rangeMax Kellermann2009-12-271-0/+8
| | | | | | 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-151-4/+11
|
* input_plugin: method init() returns errors with GErrorMax Kellermann2009-12-141-1/+6
| | | | | 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-141-0/+1
|
* include config.h in all sourcesMax Kellermann2009-11-121-0/+1
| | | | | | 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-131-1/+1
|
* test/dump_playlist: try playlist_list_open_uri() firstMax Kellermann2009-10-131-21/+30
|
* test/dump_playlist: parse a configuration fileMax Kellermann2009-10-131-3/+11
|
* playlist_plugin: new plugin API for playlist parsersMax Kellermann2009-10-121-0/+117
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.