aboutsummaryrefslogtreecommitdiff
path: root/src/playlist_list.h
Commit message (Collapse)AuthorAge
* playlist_list: export playlist_suffix_supported()Max Kellermann2010-06-01
|
* playlist_list: playlist_list_open_path() returns input_streamMax Kellermann2010-06-01
| | | | | | | Memory leak fix. The input_stream object passed to playlist_list_open_stream_suffix() must be closed by the caller - this however never happens in playlist_list_open_path(), because it does not return it to the caller.
* 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
|
* playlist_list: added function playlist_list_open_path()Max Kellermann2009-11-06
| | | | Added an interface for loading playlists from a local file.
* 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.