aboutsummaryrefslogtreecommitdiffstats
path: root/test (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-01-10io_thread: convert to C++Max Kellermann6-7/+6
2013-01-10input_stream: convert to C++ (internally)Max Kellermann5-10/+19
2013-01-09EventPipe: rename to GlobalEventsMax Kellermann2-4/+4
2013-01-09event_pipe.h: convert to C++Max Kellermann2-2/+6
2013-01-09idle: convert to C++Max Kellermann1-1/+1
2013-01-09test/FakeReplayGainConfig: move fake symbols from a few debug programsMax Kellermann3-11/+25
2013-01-09test/run_decoder,read_tags: remove obsolete dummy functionsMax Kellermann2-42/+0
2013-01-08test: rename debug programs back to old namesMax Kellermann2-0/+0
2013-01-07decoder_api.h, ...: add "extern C"Max Kellermann4-10/+7
2013-01-06queue: convert all functions to methodsMax Kellermann1-45/+44
2013-01-06Queue: add constructor and destructorMax Kellermann1-2/+1
2013-01-05filter/ReplayGain: add method _set_mode()Max Kellermann2-6/+0
Push the new mode to the filter instead of accessing global variables through replay_gain_get_real_mode().
2013-01-05DecoderAPI: _replay_gain() returns voidMax Kellermann3-11/+3
Let the function decoder_replay_gain() update decoder_control::replay_gain_db instead of letting each decoder plugin take care for that.
2013-01-05test: revert debug program renamesMax Kellermann2-0/+0
2013-01-04PlayerControl: add constructor and destructorMax Kellermann1-1/+5
2013-01-04player_control.h: convert header to C++Max Kellermann1-1/+1
2013-01-04playlist: convert to C++Max Kellermann3-6/+4
2013-01-04output_*: convert to C++Max Kellermann1-4/+8
2013-01-03Directory: initialise in default constructorMax Kellermann2-0/+2
2013-01-03Directory: add constructor and destructorMax Kellermann2-0/+5
2013-01-03Directory: rename struct directory to DirectoryMax Kellermann2-3/+3
2013-01-02Directory: make the header C++ onlyMax Kellermann2-8/+5
2013-01-02PlaylistInfo: rename class, use std::stringMax Kellermann1-2/+2
2013-01-02don't include stdbool.h in C++ sourcesMax Kellermann1-1/+0
The "bool" type is built-in.
2013-01-02playlist_vector: convert to C++Max Kellermann1-1/+1
2013-01-02db_save, state_file: convert to C++Max Kellermann2-5/+11
2013-01-02update: convert to C++Max Kellermann1-1/+1
2012-10-04test/read_tags: wait until input_stream becomes readyMax Kellermann1-0/+19
Improved support for scanning http:// resources.
2012-10-02test/dump_playlist: add missing newline to error messageMax Kellermann1-1/+1
2012-10-02output/recorder, test/*: invoke encoder_read() after _open()Max Kellermann2-0/+4
Make sure the file header gets written at the beginning, before _write() gets called.
2012-10-02test/run_encoder: fix encoder_open() callMax Kellermann1-2/+1
2012-08-25test/test_queue_priority: fix SIGABRTMax Kellermann1-0/+15
2012-08-21queue_save: save song prioritiesMax Kellermann1-1/+1
2012-08-15queue: duplicate all song objectsMax Kellermann1-0/+33
Make sure the queue "owns" all song objects, so nobody else can free them.
2012-08-08tag_pool: use GStaticMutexMax Kellermann5-17/+2
Eliminates explicit global initialisation.
2012-08-07db_selection: rename to DatabaseSelectionMax Kellermann1-3/+2
2012-08-07Database{Plugin,Visitor}: pass referencesMax Kellermann1-8/+8
2012-08-07test/DumpDatabase: new debug programMax Kellermann1-0/+154
2012-08-02DatabaseVisitor, ...: use GError forward declarationMax Kellermann1-0/+2
2012-07-10test/test_pcm: add pcm_volume testsMax Kellermann3-0/+211
2012-07-10require GLib 2.16Max Kellermann6-65/+0
GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it.
2012-05-29output/raop: delete the RAOP pluginMax Kellermann2-90/+0
This plugin is horrible code, I mean it. Last year, I tried hard to fix it, but I figured would take less time to do a full rewrite. Given that I don't even have any device that supports RAOP, I can't do that properly. After 16 months, nobody volunteered for fixing it. Hereby, I delete it, because having no RAOP plugin is better than having this mess. Sorry.
2012-04-23test/read_rva2: new debug program for the RVA2 libraryMax Kellermann1-0/+109
2012-04-05encoder/vorbis: generate end-of-stream packet when playback endsMax Kellermann2-2/+2
Add the encoder_plugin method end(). This is important for the recorder plugin.
2012-04-04test/test_vorbis_encoder: program to debug the vorbis encoderMax Kellermann1-0/+109
2012-03-21pcm_export: use the byte_reverse library directlyMax Kellermann3-72/+0
Delete the now-unused pcm_byteswap library, and optimize the pcm_export_state object.
2012-03-21audio_format: remove the reverse_endian attributeMax Kellermann1-2/+2
Eliminate support for reverse endian samples from the MPD core. This moves a lot of complexity to the plugins that really need it (only ALSA and CDIO currently).
2012-03-21test: add unit test for util/byte_reverse.cMax Kellermann2-0/+86
2012-03-21test/run_convert: allow the out format to be a maskMax Kellermann1-2/+6
2012-03-19event_pipe, test: explicitly ignore write() return valueMax Kellermann6-7/+9
Some compilers are very picky, but we really aren't interested in the return value.