Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 1 | -10/+7 | |
From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. | |||||
2014-01-08 | playlist/pls: don't free stack buffer | Max Kellermann | 1 | -1/+0 | |
2014-01-08 | playlist/pls: make variables more local | Max Kellermann | 1 | -17/+9 | |
2014-01-08 | playlist/pls: convert "while" loop to "for" loop | Max Kellermann | 1 | -2/+1 | |
2014-01-08 | playlist/pls: simplify error handler | Max Kellermann | 1 | -11/+4 | |
Don't pass a GError** to g_key_file_get_X(). We don't need to dispose something we didn't request in the first place. | |||||
2014-01-08 | tag/TagBuilder: rename Commit() to CommitNew() | Max Kellermann | 1 | -1/+1 | |
2013-12-03 | playlist/pls: use class TagBuilder | Max Kellermann | 1 | -11/+12 | |
2013-11-05 | playlist/pls: fix reversed song order | Max Kellermann | 1 | -1/+0 | |
Remove the forward_list::reverse() call. It was not necessary, because pls_parser() already reads the playlist in reverse order. | |||||
2013-10-28 | *: use nullptr instead of NULL | Max Kellermann | 1 | -15/+15 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -2/+2 | |
2013-10-19 | decoder/gme,input/curl,...: use static buffers instead of g_strdup_printf() | Max Kellermann | 1 | -7/+5 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -5/+12 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -1/+1 | |
2013-09-05 | PlaylistPlugin: add interface SongEnumerator | Max Kellermann | 1 | -5/+4 | |
Replaces struct playlist_provider. | |||||
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 1 | -3/+2 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -4/+5 | |
Replaces GLib's GError. | |||||
2013-09-03 | input_stream.h: rename to InputLegacy.hxx | Max Kellermann | 1 | -1/+1 | |
2013-08-06 | playlist/pls: use std::string instead of GString | Max Kellermann | 1 | -9/+8 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -4/+4 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -3/+3 | |
2013-04-08 | uri: convert to C++ | Max Kellermann | 1 | -1/+0 | |
2013-01-29 | playlist/memory: use std::forward_list instead of GSList | Max Kellermann | 1 | -11/+7 | |
2013-01-29 | playlist/{asx,rss,soundcloud,xspf}: merge code to MemoryPlaylistProvider | Max Kellermann | 1 | -46/+7 | |
2013-01-27 | playlist/*: convert to C++ | Max Kellermann | 1 | -18/+22 | |
2011-09-16 | input_stream: non-blocking I/O | Max Kellermann | 1 | -1/+2 | |
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-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-15 | input_stream: return errors with GError | Max Kellermann | 1 | -2/+11 | |
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-06 | playlist/{m3u,pls}: removed URI checks | Max Kellermann | 1 | -6/+0 | |
The caller is responsible for verifying the song URI. | |||||
2009-10-15 | Add PLS Parser | Qball Cow | 1 | -0/+215 | |