Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-13 | copyright year 2014 | Max Kellermann | 36 | -36/+36 | |
2014-01-11 | DatabasePlugin: add interface DatabaseListener | Max Kellermann | 1 | -1/+14 | |
Allow database plugins to announce that they have been modified. | |||||
2014-01-09 | UPnP database plugin | Jean-Francois Dockes | 1 | -0/+9 | |
[mk: renamed source files, applied coding style, reduced bloat, using MPD's threading library, using MPD's error reporting and logging library and refactoring, fixed lots of bugs] | |||||
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 3 | -38/+42 | |
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-09 | test/DumpDatabase: fix nullptr dereference | Max Kellermann | 1 | -1/+1 | |
2014-01-07 | test: add missing includes | Max Kellermann | 8 | -0/+11 | |
2014-01-06 | pcm/Format: change parameters/return values to ConstBuffer | Max Kellermann | 2 | -35/+31 | |
2013-12-29 | InputStream: add static method OpenReady() | Max Kellermann | 4 | -47/+6 | |
Merge some duplicate code. | |||||
2013-12-29 | util/UriUtil: uri_get_suffix() fails if name begins with dot | Max Kellermann | 1 | -0/+4 | |
A file called ".jpg" is not a JPEG file with an empty name; it is merely a hidden file. | |||||
2013-12-28 | pcm/PcmMix: improved dithering | Max Kellermann | 1 | -6/+10 | |
Use the existing PcmDither library. | |||||
2013-12-28 | pcm/Volume: improved dithering | Max Kellermann | 1 | -2/+3 | |
Instead of just adding a rectangular random value before shifting back to the normal scale, use the existing PcmDither library. | |||||
2013-12-28 | pcm/PcmDither: inline Dither24To16() and Dither32To16() | Max Kellermann | 1 | -1/+1 | |
2013-12-24 | test/*: use fprintf(stderr,...) and Log() instead of g_printerr() | Max Kellermann | 11 | -110/+101 | |
Avoid GLib. | |||||
2013-12-24 | test/*: remove GLib logging setup | Max Kellermann | 5 | -60/+0 | |
Obsolete, our logging library doesn't ues GLib anymore. | |||||
2013-12-23 | pcm/Volume: convert to class | Max Kellermann | 3 | -140/+74 | |
Prepare for adding state. | |||||
2013-12-23 | pcm/PcmVolume: rename to Volume.cxx | Max Kellermann | 4 | -4/+4 | |
2013-12-15 | test/*: use fprintf(stderr,...) and Log() instead of g_printerr() | Max Kellermann | 6 | -119/+63 | |
Avoid GLib. | |||||
2013-12-15 | configure.ac: add option "--disable-glib" | Max Kellermann | 2 | -0/+8 | |
Allows building without GLib. This fails to compile currently, because GLib is still used in the MPD core. | |||||
2013-12-14 | DecoderAPI: add function decoder_read_full() | Max Kellermann | 2 | -0/+36 | |
Move code from the "mad" plugin. | |||||
2013-12-14 | DecoderAPI: add function decoder_skip() | Max Kellermann | 2 | -0/+32 | |
Move code from the "mad" plugin. | |||||
2013-12-14 | test: merge duplicate code to FakeDecoderAPI.cxx | Max Kellermann | 3 | -157/+111 | |
2013-12-05 | test/run_encoder: destruct the Encoder before exiting | Max Kellermann | 1 | -0/+3 | |
2013-12-04 | system/Resolver: sockaddr_to_string() returns std::string() | Max Kellermann | 1 | -10/+2 | |
No GLib memory allocation. | |||||
2013-12-03 | Tag: remove method AddItem() | Max Kellermann | 1 | -2/+8 | |
Use class TagBuilder instead. | |||||
2013-12-02 | pcm/PcmChannels: use struct ConstBuffer | Max Kellermann | 1 | -28/+21 | |
2013-11-13 | PcmConvert: add methods Open(), Close() | Max Kellermann | 1 | -2/+10 | |
Replaces Reset() and eliminates the AudioFormat parameters from the Convert() method. | |||||
2013-11-11 | filter/route, ...: add missing stdlib.h includes | Max Kellermann | 1 | -0/+1 | |
2013-11-05 | test/*: add more missing stdlib.h includes | Max Kellermann | 4 | -0/+5 | |
2013-11-04 | test/test_mixramp: add threshold to floating point comparisons | Max Kellermann | 1 | -6/+9 | |
Fixes bogus test failures on Debian build machines due to rounding errors (hopefully). | |||||
2013-10-30 | CrossFade: use negative value for invalid MixRamp overlap | Max Kellermann | 1 | -1/+1 | |
Avoid NaN to allow -ffast-math. | |||||
2013-10-30 | test/test_mixramp: improved test for mixramp_interpolate(0) | Max Kellermann | 1 | -5/+3 | |
2013-10-30 | test/test_mixramp: add test with "invalid" return value | Max Kellermann | 1 | -0/+4 | |
2013-10-28 | player_control: rename to PlayerControl | Max Kellermann | 1 | -3/+3 | |
2013-10-26 | TagFile: use Path instead of const char * | Max Kellermann | 2 | -3/+5 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 3 | -12/+3 | |
2013-10-26 | test/test_mixramp: unit test for mixramp_interpolate() | Max Kellermann | 1 | -0/+82 | |
2013-10-25 | ReplayGainInfo: refactor to a class | Max Kellermann | 3 | -7/+7 | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 4 | -13/+10 | |
2013-10-24 | test/run_decoder: print the song duration | Max Kellermann | 1 | -3/+4 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 5 | -39/+36 | |
2013-10-23 | UriUtil: uri_remove_auth() returns std::string | Max Kellermann | 1 | -6/+6 | |
2013-10-23 | test/test_util: unit test for libutil.a | Max Kellermann | 1 | -0/+54 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 3 | -38/+44 | |
2013-10-21 | DecoderPlugin: move functions into the struct | Max Kellermann | 2 | -7/+4 | |
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 2 | -2/+2 | |
2013-10-20 | Inotify: convert anonymous enum to constexpr | Max Kellermann | 1 | -5/+4 | |
2013-10-20 | TagType: rename enum tag_type to TagType | Max Kellermann | 1 | -1/+1 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 3 | -5/+5 | |
2013-10-19 | test/test_pcm: use C++11 random instead of GLib | Max Kellermann | 5 | -20/+28 | |
2013-10-18 | test/run_avahi: new debug program | Max Kellermann | 1 | -0/+42 | |