Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Thread/Thread: replacement library for GThread | Max Kellermann | 2013-10-17 | 20 | -98/+301 |
| | |||||
* | util/Error: add method SetLastError() | Max Kellermann | 2013-10-17 | 2 | -0/+25 |
| | |||||
* | Main: use ThreadId instead of GThread* | Max Kellermann | 2013-10-17 | 3 | -6/+8 |
| | |||||
* | InputStream: use int64_t instead of goffset | Max Kellermann | 2013-10-17 | 20 | -64/+78 |
| | | | | Decouple some more from GLib. | ||||
* | input_plugin: rename struct to "InputPlugin" | Max Kellermann | 2013-10-17 | 23 | -32/+31 |
| | |||||
* | thread/{Cond,Mutex}: use "class" instead of "typedef" | Max Kellermann | 2013-10-17 | 14 | -21/+20 |
| | | | | Allows forward-declaration. | ||||
* | CueParser: use std::string | Max Kellermann | 2013-10-17 | 2 | -6/+5 |
| | |||||
* | InotifyUpdate: use class Path | Max Kellermann | 2013-10-17 | 1 | -58/+37 |
| | |||||
* | PlaylistSave: eliminate the last g_warning() call | Max Kellermann | 2013-10-17 | 1 | -1/+2 |
| | |||||
* | Song: GetURI() returns std::string | Max Kellermann | 2013-10-17 | 10 | -86/+62 |
| | |||||
* | ArchiveLookup: in-place editing, avoid string copy | Max Kellermann | 2013-10-17 | 1 | -29/+24 |
| | |||||
* | ArchiveLookup: declare local variables later | Max Kellermann | 2013-10-17 | 1 | -5/+4 |
| | |||||
* | ArchiveLookup: don't reset out arguments | Max Kellermann | 2013-10-17 | 1 | -4/+0 |
| | | | | If we return false, their values are undefined. | ||||
* | ArchiveLookup: move code to FindSlash() | Max Kellermann | 2013-10-17 | 1 | -7/+18 |
| | |||||
* | ArchiveLookup: move code to FindSuffix() | Max Kellermann | 2013-10-17 | 1 | -8/+13 |
| | |||||
* | ArchiveLookup: return const strings | Max Kellermann | 2013-10-17 | 3 | -4/+8 |
| | |||||
* | ArchiveLookup: move API documentation to header | Max Kellermann | 2013-10-17 | 2 | -22/+15 |
| | |||||
* | decoder/wildmidi: remove suport for libwildmidi 0.2.2 or older | Max Kellermann | 2013-10-16 | 1 | -4/+0 |
| | |||||
* | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 2013-10-16 | 15 | -107/+286 |
| | | | | Replacing GLib macros. | ||||
* | util/ByteReverse: use C99 "restrict" | Max Kellermann | 2013-10-16 | 1 | -7/+13 |
| | | | | Micro-optimization. | ||||
* | util/byte_reverse: convert to C++ | Max Kellermann | 2013-10-16 | 4 | -23/+17 |
| | |||||
* | pcm_pack: convert to C++ | Max Kellermann | 2013-10-16 | 5 | -9/+6 |
| | |||||
* | encoder/wave: use delete to dispose the WaveEncoder object | Max Kellermann | 2013-10-16 | 1 | -1/+1 |
| | |||||
* | Archive*: move archive_domain to ArchiveDomain.cxx | Max Kellermann | 2013-10-15 | 4 | -6/+50 |
| | | | | Merge duplicate symbol. | ||||
* | ConfigData: remove unused method DupBlockString() | Max Kellermann | 2013-10-15 | 2 | -12/+0 |
| | |||||
* | playlist/soundcloud: use std::string | Max Kellermann | 2013-10-15 | 1 | -14/+14 |
| | |||||
* | output/roar: use const_cast instead of g_strdup() | Max Kellermann | 2013-10-15 | 1 | -9/+3 |
| | |||||
* | output/roar: use std::string | Max Kellermann | 2013-10-15 | 1 | -12/+10 |
| | |||||
* | output/roar: move code into the RoarOutput class | Max Kellermann | 2013-10-15 | 2 | -96/+137 |
| | |||||
* | output/pipe: use std::string | Max Kellermann | 2013-10-15 | 1 | -8/+6 |
| | |||||
* | Client, ...: remove unnecessary glib.h include | Max Kellermann | 2013-10-15 | 19 | -35/+1 |
| | |||||
* | ApeTag: use std::string for temporary allocation | Max Kellermann | 2013-10-15 | 1 | -4/+3 |
| | |||||
* | PlaylistRegistry: use std::string for temporary allocation | Max Kellermann | 2013-10-15 | 1 | -4/+2 |
| | |||||
* | input/*: don't allocate attribute "mime" | Max Kellermann | 2013-10-15 | 4 | -6/+6 |
| | | | | | This was a memory leak, because "mime" was a std::string which created another copy and discarded the allocated buffer. | ||||
* | UpdateArchive: use std::string for temporary string | Max Kellermann | 2013-10-15 | 1 | -4/+3 |
| | |||||
* | ConfigData: use std::string for config_param::value | Max Kellermann | 2013-10-15 | 9 | -32/+43 |
| | |||||
* | Permission: use std::string for temporary password allocation | Max Kellermann | 2013-10-15 | 1 | -4/+2 |
| | | | | As a side effect, this fixes a memory leak. | ||||
* | Mapper: remove obsolete variable music_dir_fs_length | Max Kellermann | 2013-10-15 | 1 | -2/+0 |
| | |||||
* | event/BufferedSocket: pass writable pointer to OnSocketInput() | Max Kellermann | 2013-10-15 | 5 | -20/+23 |
| | | | | | Remove the const_cast from HttpdClient.cxx, and avoid one allocation in ClientRead.cxx. | ||||
* | Util/Macros: replacement for GLib's G_N_ELEMENTS() | Max Kellermann | 2013-10-15 | 16 | -47/+86 |
| | |||||
* | output/winmm: use delete instead of g_free() | Max Kellermann | 2013-10-15 | 1 | -2/+2 |
| | |||||
* | util/FifoBuffer: C++ version of the fifo_buffer library | Max Kellermann | 2013-10-15 | 8 | -105/+275 |
| | |||||
* | system/clock: convert to C++ | Max Kellermann | 2013-10-15 | 4 | -23/+15 |
| | |||||
* | require GLib 2.28 | Max Kellermann | 2013-10-15 | 2 | -45/+0 |
| | | | | The header glib_compat.h is now obsolete and can be removed. | ||||
* | gcc.h: rename to Compiler.h | Max Kellermann | 2013-10-15 | 92 | -93/+93 |
| | |||||
* | gcc.h: major update | Max Kellermann | 2013-10-15 | 6 | -101/+163 |
| | | | | | Copy the according file from another project (i.e. XCSoar). This will allow copying more code more easily. | ||||
* | *: use WIN32 instead of G_OS_WIN32 | Max Kellermann | 2013-10-15 | 7 | -16/+16 |
| | |||||
* | fs/Path: add method IsAbsolute() | Max Kellermann | 2013-10-14 | 12 | -12/+47 |
| | |||||
* | fs/Path: add separator constants/functions | Max Kellermann | 2013-10-14 | 4 | -21/+54 |
| | |||||
* | PlaylistFile: always check for absolute paths within music_directory | Max Kellermann | 2013-10-14 | 1 | -9/+11 |
| | | | | | Try map_fs_to_utf8() first, and fall back to Path::ToUTF8() for absolute paths. |