aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-04-17output/ao: convert to C++Max Kellermann3-62/+87
2013-04-17output/shout: convert to C++Max Kellermann3-139/+142
2013-04-17output/ffado: remove broken pluginMax Kellermann3-388/+0
This plugin has been in MPD for three years, and it has never worked. Enough!
2013-04-17output/mvp: remove obsolete pluginMax Kellermann3-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-17output/jack: convert to C++Max Kellermann3-94/+114
2013-04-17output/fifo: convert to C++Max Kellermann3-102/+114
2013-04-17output/pipe: convert to C++Max Kellermann3-31/+62
2013-04-17output/recorder: convert to C++Max Kellermann3-63/+87
2013-04-16MixerInternal: use Mutex instead of GMutexMax Kellermann2-27/+10
2013-04-16mixer/software: use gcc_unused instead of G_GNUC_UNUSEDMax Kellermann1-5/+5
2013-04-16MixerInternal: convert to classMax Kellermann18-139/+107
2013-04-16mixer/winmm: convert to a classMax Kellermann1-10/+12
2013-04-16mixer/Software: convert to a classMax Kellermann1-20/+22
2013-04-16mixer/Pulse: convert to a classMax Kellermann4-32/+28
2013-04-16mixer/Oss: convert to a classMax Kellermann1-51/+92
2013-04-16mixer/Alsa: convert to a classMax Kellermann1-67/+103
2013-04-16output/Pulse: convert to C++Max Kellermann5-163/+165
2013-04-16output/roar: work around libroar's use of "new"Max Kellermann1-0/+4
2013-04-11util/Manual: work around strict-aliasing warningMax Kellermann1-0/+9
2013-04-09pcm_export: convert to C++Max Kellermann5-249/+220
2013-04-09pcm_*: move to src/pcm/Max Kellermann53-18/+18
2013-04-09utils: convert to C++Max Kellermann4-25/+18
2013-04-09string_util: convert to C++Max Kellermann12-42/+19
2013-04-09OpusReader: don't use strndup()Max Kellermann3-65/+4
Eliminate the fallback strndup() and strnlen() implementations.
2013-04-09cue_parser: convert to C++Max Kellermann6-480/+467
2013-04-09playlist/cue: add constructor/destructorMax Kellermann1-11/+13
2013-04-09decoder_plugin: convert to C++Max Kellermann1-7/+7
2013-04-08tokenizer: convert to C++Max Kellermann5-151/+146
2013-04-08uri: convert to C++Max Kellermann25-88/+39
2013-04-08decoder/gme: fix rounding errorMax Kellermann1-1/+1
Cast to integer after multiplying with 1000. Allows sub-second seeking.
2013-04-08decoder/gme: convert to C++Max Kellermann3-75/+135
2013-04-08InputStream: use gcc.h attributesMax Kellermann1-6/+6
2013-04-08event/TimeoutMonitor: eliminate support for periodic eventsMax Kellermann8-27/+17
No caller needs this. Fixes use-after-free after returning from Client::OnTimeout().
2013-04-08StateFile: schedule timer only after a changeMax Kellermann3-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-08StateFile: move code to RememberVersions(), IsModified()Max Kellermann2-12/+33
2013-04-08StateFile: make AutoWrite() privateMax Kellermann1-1/+3
2013-04-08Idle: fix typo in API documentationMax Kellermann1-1/+1
2013-04-08decoder/ffmpeg: suppress warning about unused variableMax Kellermann1-0/+2
Only relevant for old ffmpeg versions.
2013-04-08command: don't check audio_format if not playingMax Kellermann1-7/+8
Fixes valgrind warning.
2013-04-08player_control: don't emit IDLE_PLAYER before audio format is knownMax Kellermann2-2/+4
Eliminates one IDLE_PLAYER call in playlist_control, and add two new ones to player_thread. Fixes Mantis bug 3636.
2013-04-08command: don't print undefined audio_formatMax Kellermann1-6/+9
Check audio_format_defined().
2013-04-05ffmpeg decoder plugin: do not allocate an AVFrame on stack.Anton Khirnov1-5/+24
AVFrame must be allocated with avcodec_alloc_frame().
2013-04-05ffmpeg decoder plugin: do not allocate an AVFrame on stack.Anton Khirnov1-3/+16
AVFrame must be allocated with avcodec_alloc_frame().
2013-02-27GlobalEvents: use g_idle_add() instead of WakeFD()Max Kellermann1-28/+5
Use the GMainLoop specific function to wake up the main loop. This is simpler and comes with very little overhead.
2013-02-27GlobalEvents: wake up only if the flags were emptyMax Kellermann1-1/+1
Don't bother checking for the parameter mask. This doesn't matter. The only thing that matters is if a wake-up is already pending.
2013-02-27Idle, GlobalEvents: use std::atomic::exchange()Max Kellermann2-2/+2
Less overhead than fetch_and() for what we do.
2013-02-27IcyMetaDataServer: increment iteratorOddegamra1-1/+1
Fixes segmentation fault.
2013-02-27Add some comments to keep track of timer units.Hagen Fritsch1-3/+5
2013-02-27clock: fix usec-to-usec factorHagen Fritsch1-1/+1
2013-02-27clock: add missing includeHagen Fritsch1-0/+3