Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-11-05 | player/Control: initialize seek_time in EnqueueSongLocked() | Max Kellermann | 1 | -6/+2 | |
Allows removing a few special cases in the player thread. | |||||
2015-10-28 | player/Thread: remove decoder error check from ActivateDecoder() | Max Kellermann | 1 | -37/+8 | |
It is futile to check for decoder errors before the decoder has finished startup. At this time, it's unlikely that the decoder has already failed. | |||||
2015-10-28 | player/Thread: rename WaitForDecoder() to ActivateDecoder() | Max Kellermann | 1 | -10/+15 | |
.. and fix its API documentation. | |||||
2015-10-27 | player/Thread: move code to ForwardDecoderError() | Max Kellermann | 1 | -6/+22 | |
2015-10-27 | player/Thread: clear pc.next_song earlier in WaitForDecoder() | Max Kellermann | 1 | -4/+3 | |
2015-10-27 | player/Thread: merge the cross_fading flag into enum CrossFadeState | Max Kellermann | 1 | -22/+25 | |
2015-10-27 | player/Thread: move ResetCrossFade() calls to where pipes are set | Max Kellermann | 1 | -3/+8 | |
Move ResetCrossFade() to where cross-fading would actually break, to make the cross-fading state more reliable. | |||||
2015-10-27 | player/Thread: add method ResetCrossFade() | Max Kellermann | 1 | -2/+10 | |
2015-10-27 | player/Thread: more CrossFadeState documentation | Max Kellermann | 1 | -1/+16 | |
2015-10-27 | player/Thread: automatic CrossFadeState enum values | Max Kellermann | 1 | -4/+4 | |
2015-10-27 | player/Thread: move enum CrossFadeState into the Player class | Max Kellermann | 1 | -7/+5 | |
2015-08-15 | PlayerThread, ...: move to src/player/ | Max Kellermann | 1 | -3/+3 | |
2015-06-21 | PlayerThread: start the decoder on PlayerCommand::QUEUE | Max Kellermann | 1 | -0/+6 | |
Fixes missing SongBorder() call, which causes "single" mode breakage. | |||||
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-08-29 | CrossFade: pass total_time as SignedSongTime instance | Max Kellermann | 1 | -1/+1 | |
2014-08-29 | MusicChunk: use SignedSongTime for the time stamp | Max Kellermann | 1 | -1/+1 | |
2014-08-29 | MultipleOutputs: use SignedSongTime for elapsed_time | Max Kellermann | 1 | -2/+2 | |
2014-08-29 | PlayerThread: use SongTime for elapsed_time | Max Kellermann | 1 | -8/+8 | |
2014-08-29 | PlayerControl: use SignedSongTime for the song duration | Max Kellermann | 1 | -11/+11 | |
2014-08-29 | DecoderControl: use SignedSongTime for the song duration | Max Kellermann | 1 | -2/+2 | |
2014-08-29 | Tag: use SignedSongTime for the song duration | Max Kellermann | 1 | -2/+2 | |
2014-08-28 | DecoderControl: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 1 | -1/+1 | |
2014-08-28 | DetachedSong: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 1 | -10/+10 | |
2014-08-27 | PlayerControl: use std::chrono::duration for Seek() | Max Kellermann | 1 | -9/+10 | |
2014-08-27 | PlayerThread: check if total_time is valid before using it | Max Kellermann | 1 | -1/+1 | |
2014-08-27 | DecoderControl: use std::chrono::duration for Seek() | Max Kellermann | 1 | -1/+1 | |
2014-08-16 | PlayerThread: rename player_create() to StartPlayerThread() | Max Kellermann | 1 | -1/+1 | |
2014-08-12 | MusicChunk: rename struct to MusicChunk | Max Kellermann | 1 | -6/+6 | |
2014-02-21 | PlayerListener: new interface to replace GlobalEvents access | Max Kellermann | 1 | -4/+4 | |
2014-01-28 | OutputAll: convert to class, move instance to class Partition | Max Kellermann | 1 | -23/+23 | |
Another big chunk of code for multi-player support. | |||||
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -2/+2 | |
2014-01-23 | output/*: move to output/plugins/ | Max Kellermann | 1 | -1/+1 | |
2014-01-23 | thread/Name: set thread names | Max Kellermann | 1 | -0/+3 | |
For debugging. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | 1 | -40/+30 | |
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-08 | PlayerThread: use Song references | Max Kellermann | 1 | -15/+13 | |
2013-12-24 | PlayerThread: log the last song that was played | Max Kellermann | 1 | -1/+4 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -1/+0 | |
2013-11-08 | PlayerThread: fix stuck MPD after song change (0.18.2 regression) | Max Kellermann | 1 | -4/+8 | |
Commit 77c63511 caused MPD to become stuck right after a song change. The problem was that at some point, the MusicBuffer became full, and the DecoderThread working on the next song waits for the PlayerThread. However, the PlayerThread was stuck in a loop of g_usleep() calls, and never bothered to tell the DecoderThread that the MusicBuffer is not full anymore. This bug is very old, but its chance to occur went from nearly 0% to nearly 100%. The fix is to wake up the DecoderThread before waiting for it. As a side effect, I replaced the g_usleep() call with a Cond::Wait() call. | |||||
2013-11-06 | PlayerThread: reduce the number of DecoderThread wakeups | Max Kellermann | 1 | -2/+14 | |
After the number of decoded chunks has fallen below the threshold, the PlayerThread woke up the DecoderThread over and over. This commit adds a boolean flag that avoids these duplicate wakeups, and thus reduces the number of system calls. | |||||
2013-11-06 | PlayerThread: enable buffering when starting playback | Max Kellermann | 1 | -1/+1 | |
For some reason, this got lost in commit 975deca8. Re-enabling this fixes stuttering at the beginning of radio streams. | |||||
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 | PcmMix: use negative value instead of NaN for addition | Max Kellermann | 1 | -3/+1 | |
Avoid NaN to allow -ffast-math. | |||||
2013-10-30 | CrossFade: use negative value for invalid mixramp_delay | Max Kellermann | 1 | -1/+1 | |
Avoid NaN to allow -ffast-math. | |||||
2013-10-29 | PlayerControl: move attributes to struct CrossFadeSettings | Max Kellermann | 1 | -12/+10 | |
2013-10-28 | DecoderControl: convert mutex and client_cond to a reference | Max Kellermann | 1 | -19/+12 | |
Share the Mutex between the DecoderThread and the PlayerThread. This simplifies synchronization between the two threads and fixes a freeze problem: while the PlayerThread waits for the DeocderThread, it cannot answer requests from the main thread, and the main thread will block until the DecoderThread finishes. | |||||
2013-10-28 | player_control: rename to PlayerControl | Max Kellermann | 1 | -9/+9 | |
2013-10-28 | decoder_control: rename to DecoderControl | Max Kellermann | 1 | -4/+4 | |
2013-10-26 | DecoderControl: add MixRamp getters | Max Kellermann | 1 | -2/+2 | |
2013-10-22 | Playlist: copy stream tags from the PlayerThread | Max Kellermann | 1 | -2/+8 | |
Finally restores an important feature that has been broken for several months when the PlayerThread started working with Song copies instead of pointers to the Queue's Song instances (commit e96779d). |