Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-10-26 | TagFile: use Path instead of const char * | Max Kellermann | 1 | -3/+3 | |
2013-10-21 | SongUpdate: use tag_file_scan() | Max Kellermann | 1 | -63/+9 | |
Eliminate duplicate code. | |||||
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 1 | -2/+2 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -3/+3 | |
2013-10-19 | *: use nullptr instead of NULL | Max Kellermann | 1 | -16/+16 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -2/+2 | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||||
2013-10-17 | fs/Path: move definitions to struct PathTraits | Max Kellermann | 1 | -1/+2 | |
2013-10-17 | fs/Path: include cleanup | Max Kellermann | 1 | -0/+1 | |
2013-10-17 | thread/{Cond,Mutex}: use "class" instead of "typedef" | Max Kellermann | 1 | -0/+1 | |
Allows forward-declaration. | |||||
2013-10-15 | Client, ...: remove unnecessary glib.h include | Max Kellermann | 1 | -2/+0 | |
2013-10-14 | fs/Path: add method IsAbsolute() | Max Kellermann | 1 | -1/+1 | |
2013-09-26 | TagHandler: use a TagBuilder internally | Max Kellermann | 1 | -11/+15 | |
Reduce heap allocator overhead. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -2/+2 | |
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 1 | -10/+7 | |
2013-09-04 | Tag*: move libtag.a sources to src/tag/ | Max Kellermann | 1 | -2/+2 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -2/+5 | |
Replaces GLib's GError. | |||||
2013-09-03 | input_stream.h: rename to InputLegacy.hxx | Max Kellermann | 1 | -1/+1 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -13/+10 | |
2013-07-29 | tag_handler: convert to C++ | Max Kellermann | 1 | -4/+1 | |
2013-07-29 | ape: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | tag_id3: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -38/+33 | |
2013-07-28 | decoder_api: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-04-08 | uri: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-02-02 | SongUpdate.cxx: use StatFile | Denis Krjuchkov | 1 | -1/+2 | |
2013-01-30 | decoder_list: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2013-01-27 | DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond | Max Kellermann | 1 | -14/+2 | |
2013-01-22 | Path: move to fs subdirectory | Denis Krjuchkov | 1 | -1/+1 | |
2013-01-18 | Path: new class "Path" wraps filesystem path strings | Max Kellermann | 1 | -9/+9 | |
2013-01-18 | Playlist, Song: clarify parameter encoding | Max Kellermann | 1 | -5/+5 | |
2013-01-07 | decoder_api.h, ...: add "extern C" | Max Kellermann | 1 | -2/+2 | |
2013-01-03 | Directory: rename struct directory to Directory | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | Directory: make the header C++ only | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | mapper: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | song_update: convert to C++ | Max Kellermann | 1 | -2/+9 | |
2012-03-01 | song_update, udp_server: workarounds for gcc 4.1 warnings | Max Kellermann | 1 | -0/+5 | |
Annoying false positives. | |||||
2012-02-12 | song_update: update the "has_playlist" flag | Max Kellermann | 1 | -3/+3 | |
2012-02-12 | tag_{ape,id3}: remove the _load() functions | Max Kellermann | 1 | -27/+6 | |
Use _scan() instead, to have more control. | |||||
2012-02-11 | decoder_plugin: scan tags with callback table | Max Kellermann | 1 | -6/+15 | |
Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object. | |||||
2011-09-16 | input_stream: non-blocking I/O | Max Kellermann | 1 | -3/+15 | |
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 | -9/+8 | |
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-31 | decoder_plugin: added method stream_tag() | Max Kellermann | 1 | -0/+26 | |
This is like tag_dup(), but works with an input_stream object instead of a file path. | |||||
2009-12-31 | song_update: use decoder_plugin_tag_dup() | Max Kellermann | 1 | -1/+1 | |
Minor code simplification. | |||||
2009-11-11 | added missing config.h includes for extended LFS support | Max Kellermann | 1 | -0/+1 | |
All sources which might work with large files must include config.h, to get Large File Support on 32 bit platforms. | |||||
2009-11-07 | decoder_list: pass previous plugin pointer to lookup functions | Max Kellermann | 1 | -2/+2 | |
Remove the static integer hack, that's not thread safe and sucks. | |||||
2009-10-20 | mapper, update, ...: use g_build_filename(), G_DIR_SEPARATOR, ... | Max Kellermann | 1 | -1/+1 | |
Try to be as portable as possible, use GLib path name functions and macros. | |||||
2009-10-13 | song: renamed attribute "url" to "uri" | Max Kellermann | 1 | -2/+2 | |