Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-09-28 | playlist/lastfm: remove defunct Last.fm support | Max Kellermann | 1 | -281/+0 | |
This plugin has been defunct ever since Last.fm changed their protocol. Since there is no volunteer willing to fix the plugin, I'm removing it now. | |||||
2013-09-05 | PlaylistPlugin: add interface SongEnumerator | Max Kellermann | 1 | -29/+13 | |
Replaces struct playlist_provider. | |||||
2013-09-05 | conf.h: remove obsolete header | Max Kellermann | 1 | -1/+1 | |
Use only ConfigData.hxx in plugin sources to reduce header dependencies. | |||||
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 1 | -13/+13 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -19/+16 | |
Replaces GLib's GError. | |||||
2013-09-03 | input_stream.h: rename to InputLegacy.hxx | Max Kellermann | 1 | -1/+1 | |
2013-08-05 | playlist/lastfm: convert to class | Max Kellermann | 1 | -11/+15 | |
2013-08-05 | playlist/lastfm: allocate the lastfm_playlist object at the end | Max Kellermann | 1 | -15/+14 | |
Simplify the error path, because the other allocations may fail. | |||||
2013-08-04 | PlaylistPlugin: pass config_param reference | Max Kellermann | 1 | -3/+3 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -2/+2 | |
2013-01-27 | DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond | Max Kellermann | 1 | -7/+7 | |
2013-01-27 | playlist/*: convert to C++ | Max Kellermann | 1 | -2/+1 | |
2013-01-26 | input_stream: forward-declare the struct | Max Kellermann | 1 | -2/+1 | |
Hide the definition from C code, to prepare the transition to C++. | |||||
2013-01-26 | playlist/*: convert to C++ | Max Kellermann | 1 | -10/+13 | |
2012-08-14 | input_stream, main: remove obsolete GLib version checks | Max Kellermann | 1 | -2/+0 | |
MPD requires GLib 2.16. | |||||
2012-07-10 | require GLib 2.16 | Max Kellermann | 1 | -1/+0 | |
GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it. | |||||
2011-09-16 | input_stream: non-blocking I/O | Max Kellermann | 1 | -29/+16 | |
Add GMutex, GCond attributes which will be used by callers to conditionally wait on the stream. Remove the (now-useless) plugin method buffer(), wait on GCond instead. Lock the input_stream before each method call. Do the same with the playlist plugins. | |||||
2011-03-31 | fix common misspellings | Jonathan Neuschäfer | 1 | -1/+1 | |
These fixes were mostly generated with `codespell' [0] and manually reviewed. [0] http://git.profusion.mobi/cgit.cgi/lucas/codespell/ | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-01-01 | input_stream: return allocated input_stream objects | Max Kellermann | 1 | -23/+21 | |
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). | |||||
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-15 | input_stream: return errors with GError | Max Kellermann | 1 | -7/+29 | |
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -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. | |||||
2009-11-10 | moved GLib compatibility code to glib_compat.h | Max Kellermann | 1 | -10/+1 | |
2009-10-13 | playlist: added plugin for last.fm radio | Max Kellermann | 1 | -0/+300 | |
This plugin will replace the last.fm input plugin, once the playlist API is integrated into MPD. |