aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist_list.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-11-06utils: renamed stringFoundInStringArray()Max Kellermann1-7/+8
No CamelCase. Use bool instead of int. Make both arguments mandatory.
2009-11-06playlist_list: added function playlist_list_open_path()Max Kellermann1-0/+36
Added an interface for loading playlists from a local file.
2009-11-06playlist: added extm3u pluginMax Kellermann1-0/+2
This new plugin parses extm3u files. Files without the "#EXTM3U" header are still parsed by the plain old "m3u" plugin.
2009-11-06playlist_list: rewind the stream before opening the playlistMax Kellermann1-0/+9
If one plugin has failed to open the playlist, it may have consumed a part of the stream already. This may lead to a failure in all following plugins. Fix: rewind the stream before each open() call.
2009-10-21playlist: new ASX playlist pluginMax Kellermann1-0/+2
Based on the XSPF playlist plugin.
2009-10-15Add PLS ParserQball Cow1-0/+2
2009-10-13playlist: added plugin for last.fm radioMax Kellermann1-0/+5
This plugin will replace the last.fm input plugin, once the playlist API is integrated into MPD.
2009-10-13playlist: added XSPF pluginMax Kellermann1-0/+2
2009-10-13playlist_list: pass configuration to playlist pluginsMax Kellermann1-2/+40
This patch completes the configuration support.
2009-10-13playlist_list: initialize the "playlist" variableMax Kellermann1-1/+1
Prevent access on uninitialized variable if the plugin list is empty.
2009-10-12playlist_plugin: new plugin API for playlist parsersMax Kellermann1-0/+146
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.