Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-11-11 | output/httpd: don't use incomplete template argument with libc++ | Max Kellermann | 1 | -0/+5 | |
2013-11-04 | output/alsa: avoid endless loop in Raspberry Pi workaround | Max Kellermann | 1 | -1/+17 | |
See code comment. | |||||
2013-11-04 | Log: add level "DEFAULT" | Max Kellermann | 1 | -1/+1 | |
Map LogLevel::INFO to G_LOG_LEVEL_INFO, and LogLevel::DEFAULT to G_LOG_LEVEL_MESSAGE. Now client connect/disconnect message are only logged on log_level "secure". | |||||
2013-10-30 | *: update copyright year to 2013 | Max Kellermann | 2 | -2/+2 | |
2013-10-28 | *: use nullptr instead of NULL | Max Kellermann | 2 | -18/+18 | |
2013-10-26 | output/httpd: accept icy-metadata with and without space | Oddegamra | 1 | -1/+2 | |
Some, or most, Win32 audio players will pass "icy-metadata:1" to streaming servers. MPD expects a space between ":" and "1" at this point, and thus does not send any stream metadata. This applies to foobar2k and Winamp, for example. According to forums.radiotoolbox.com/viewtopic.php?t=74 not having a space there is expected behavior, so maybe MPD could accept both forms to determine if metadata should be sent or not. | |||||
2013-10-25 | output/httpd: support HEAD requests | Max Kellermann | 2 | -5/+29 | |
2013-10-25 | output/httpd: remove bogus assertion | Max Kellermann | 1 | -1/+0 | |
2013-10-21 | Util/ASCII: add StringEqualsCaseASCII() overload with length | Max Kellermann | 1 | -3/+3 | |
Replaces GLib's g_ascii_strncasecmp(). | |||||
2013-10-20 | TagType: rename enum tag_type to TagType | Max Kellermann | 2 | -2/+2 | |
2013-10-19 | util/FormatString: new library to replace g_strdup_printf() | Max Kellermann | 1 | -4/+2 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -3/+4 | |
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-16 | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 2 | -7/+5 | |
Replacing GLib macros. | |||||
2013-10-15 | output/roar: use const_cast instead of g_strdup() | Max Kellermann | 1 | -9/+3 | |
2013-10-15 | output/roar: use std::string | Max Kellermann | 1 | -12/+10 | |
2013-10-15 | output/roar: move code into the RoarOutput class | Max Kellermann | 2 | -96/+137 | |
2013-10-15 | output/pipe: use std::string | Max Kellermann | 1 | -8/+6 | |
2013-10-15 | event/BufferedSocket: pass writable pointer to OnSocketInput() | Max Kellermann | 2 | -8/+6 | |
Remove the const_cast from HttpdClient.cxx, and avoid one allocation in ClientRead.cxx. | |||||
2013-10-15 | Util/Macros: replacement for GLib's G_N_ELEMENTS() | Max Kellermann | 2 | -10/+12 | |
2013-10-15 | output/winmm: use delete instead of g_free() | Max Kellermann | 1 | -2/+2 | |
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | 2 | -2/+2 | |
2013-10-14 | Mapper, ...: use memcmp() instead of strncmp() where appropriate | Max Kellermann | 1 | -2/+2 | |
Micro-optimization. | |||||
2013-10-02 | output/httpd: don't include glib.h in header | Max Kellermann | 3 | -4/+6 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 16 | -124/+131 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderControl: use GLib forward declarations | Max Kellermann | 3 | -0/+6 | |
2013-09-26 | *Plugin: remove redundant "line %i" from error messages | Max Kellermann | 2 | -10/+8 | |
The MPD core will add this as a prefeix. | |||||
2013-09-05 | mpd_error.h: remove obsolete header | Max Kellermann | 1 | -3/+3 | |
Migrate the remaining callers to FatalError(). | |||||
2013-09-05 | use standard snprintf() instead of GLib g_snprintf() | Max Kellermann | 1 | -20/+20 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 20 | -661/+528 | |
Replaces GLib's GError. | |||||
2013-09-04 | system/resolver: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-09-04 | output/pulse: require libpulse 0.9.16 | Max Kellermann | 1 | -51/+3 | |
Remove all #ifdefs. Old versions of libpulse are not being tested, and thus I'm removing support. | |||||
2013-08-08 | output/httpd: use "unsigned" instead of "guint" | Max Kellermann | 1 | -2/+2 | |
2013-08-07 | ConfigPath: return a Path object | Max Kellermann | 1 | -27/+29 | |
Migrate all callers to use Path directly, instead of doing the conversion in each caller. | |||||
2013-08-07 | *: remove remaining __cplusplus checks | Max Kellermann | 1 | -8/+0 | |
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | 6 | -7/+7 | |
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 9 | -20/+21 | |
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 3 | -3/+3 | |
2013-08-04 | OutputPlugin: pass config_param reference | Max Kellermann | 17 | -120/+112 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 17 | -189/+191 | |
2013-08-03 | gcc.h: add macro gcc_unreachable() | Max Kellermann | 2 | -1/+2 | |
2013-07-31 | output/winmm: adapt to PcmBuffer API changes | Max Kellermann | 1 | -5/+4 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 6 | -7/+13 | |
2013-07-30 | encoder_api: convert to C++ | Max Kellermann | 4 | -19/+17 | |
2013-07-30 | include cleanup | Max Kellermann | 1 | -2/+0 | |
2013-07-30 | output_api: convert to C++ | Max Kellermann | 16 | -16/+16 | |
2013-05-12 | timer: convert to class | Denis Krjuchkov | 4 | -32/+32 | |
2013-04-17 | encoder_list: convert to C++ | Max Kellermann | 3 | -3/+3 | |
2013-04-17 | output/oss,null: use new/delete | Max Kellermann | 2 | -51/+50 | |
2013-04-17 | output: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-04-17 | output/solaris: convert to C++ | Max Kellermann | 2 | -27/+42 | |