Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-04-17 | use g_thread_new() if GLib is recent enough | Max Kellermann | 5 | -9/+26 | |
Fixes deprecation warnings. | |||||
2013-04-17 | OutputInternal: use Mutex instead of GMutex | Max Kellermann | 6 | -89/+62 | |
2013-04-17 | thread/Cond: add method timed_wait() | Max Kellermann | 2 | -2/+19 | |
2013-04-17 | output/oss,null: use new/delete | Max Kellermann | 2 | -51/+50 | |
2013-04-17 | output: convert to C++ | Max Kellermann | 15 | -79/+24 | |
2013-04-17 | output/solaris: convert to C++ | Max Kellermann | 3 | -28/+43 | |
2013-04-17 | output/openal: convert to C++ | Max Kellermann | 3 | -39/+54 | |
2013-04-17 | output/ao: convert to C++ | Max Kellermann | 3 | -62/+87 | |
2013-04-17 | output/shout: convert to C++ | Max Kellermann | 3 | -139/+142 | |
2013-04-17 | output/ffado: remove broken plugin | Max Kellermann | 3 | -388/+0 | |
This plugin has been in MPD for three years, and it has never worked. Enough! | |||||
2013-04-17 | output/mvp: remove obsolete plugin | Max Kellermann | 3 | -373/+0 | |
The hardware is obsolete, and the product does not exist anymore on the Hauppauge web site. Let's see if anybody complains about the removal. | |||||
2013-04-17 | output/jack: convert to C++ | Max Kellermann | 3 | -94/+114 | |
2013-04-17 | output/fifo: convert to C++ | Max Kellermann | 3 | -102/+114 | |
2013-04-17 | output/pipe: convert to C++ | Max Kellermann | 3 | -31/+62 | |
2013-04-17 | output/recorder: convert to C++ | Max Kellermann | 3 | -63/+87 | |
2013-04-16 | MixerInternal: use Mutex instead of GMutex | Max Kellermann | 2 | -27/+10 | |
2013-04-16 | mixer/software: use gcc_unused instead of G_GNUC_UNUSED | Max Kellermann | 1 | -5/+5 | |
2013-04-16 | MixerInternal: convert to class | Max Kellermann | 18 | -139/+107 | |
2013-04-16 | mixer/winmm: convert to a class | Max Kellermann | 1 | -10/+12 | |
2013-04-16 | mixer/Software: convert to a class | Max Kellermann | 1 | -20/+22 | |
2013-04-16 | mixer/Pulse: convert to a class | Max Kellermann | 4 | -32/+28 | |
2013-04-16 | mixer/Oss: convert to a class | Max Kellermann | 1 | -51/+92 | |
2013-04-16 | mixer/Alsa: convert to a class | Max Kellermann | 1 | -67/+103 | |
2013-04-16 | output/Pulse: convert to C++ | Max Kellermann | 5 | -163/+165 | |
2013-04-16 | output/roar: work around libroar's use of "new" | Max Kellermann | 1 | -0/+4 | |
2013-04-11 | util/Manual: work around strict-aliasing warning | Max Kellermann | 1 | -0/+9 | |
2013-04-09 | pcm_export: convert to C++ | Max Kellermann | 5 | -249/+220 | |
2013-04-09 | pcm_*: move to src/pcm/ | Max Kellermann | 53 | -18/+18 | |
2013-04-09 | utils: convert to C++ | Max Kellermann | 4 | -25/+18 | |
2013-04-09 | string_util: convert to C++ | Max Kellermann | 12 | -42/+19 | |
2013-04-09 | OpusReader: don't use strndup() | Max Kellermann | 3 | -65/+4 | |
Eliminate the fallback strndup() and strnlen() implementations. | |||||
2013-04-09 | cue_parser: convert to C++ | Max Kellermann | 6 | -480/+467 | |
2013-04-09 | playlist/cue: add constructor/destructor | Max Kellermann | 1 | -11/+13 | |
2013-04-09 | decoder_plugin: convert to C++ | Max Kellermann | 1 | -7/+7 | |
2013-04-08 | tokenizer: convert to C++ | Max Kellermann | 5 | -151/+146 | |
2013-04-08 | uri: convert to C++ | Max Kellermann | 25 | -88/+39 | |
2013-04-08 | decoder/gme: fix rounding error | Max Kellermann | 1 | -1/+1 | |
Cast to integer after multiplying with 1000. Allows sub-second seeking. | |||||
2013-04-08 | decoder/gme: convert to C++ | Max Kellermann | 3 | -75/+135 | |
2013-04-08 | InputStream: use gcc.h attributes | Max Kellermann | 1 | -6/+6 | |
2013-04-08 | event/TimeoutMonitor: eliminate support for periodic events | Max Kellermann | 8 | -27/+17 | |
No caller needs this. Fixes use-after-free after returning from Client::OnTimeout(). | |||||
2013-04-08 | StateFile: schedule timer only after a change | Max Kellermann | 3 | -17/+14 | |
Save the state file 2 minutes after the last change. This reduces the disruptions by an idle MPD, and MPD can be paged out permanently until it is used. | |||||
2013-04-08 | StateFile: move code to RememberVersions(), IsModified() | Max Kellermann | 2 | -12/+33 | |
2013-04-08 | StateFile: make AutoWrite() private | Max Kellermann | 1 | -1/+3 | |
2013-04-08 | Idle: fix typo in API documentation | Max Kellermann | 1 | -1/+1 | |
2013-04-08 | decoder/ffmpeg: suppress warning about unused variable | Max Kellermann | 1 | -0/+2 | |
Only relevant for old ffmpeg versions. | |||||
2013-04-08 | command: don't check audio_format if not playing | Max Kellermann | 1 | -7/+8 | |
Fixes valgrind warning. | |||||
2013-04-08 | player_control: don't emit IDLE_PLAYER before audio format is known | Max Kellermann | 2 | -2/+4 | |
Eliminates one IDLE_PLAYER call in playlist_control, and add two new ones to player_thread. Fixes Mantis bug 3636. | |||||
2013-04-08 | command: don't print undefined audio_format | Max Kellermann | 1 | -6/+9 | |
Check audio_format_defined(). | |||||
2013-04-05 | ffmpeg decoder plugin: do not allocate an AVFrame on stack. | Anton Khirnov | 1 | -5/+24 | |
AVFrame must be allocated with avcodec_alloc_frame(). | |||||
2013-04-05 | ffmpeg decoder plugin: do not allocate an AVFrame on stack. | Anton Khirnov | 1 | -3/+16 | |
AVFrame must be allocated with avcodec_alloc_frame(). |