aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/DecoderControl.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-11-11decoder/Control: Seek() returns Error informationMax Kellermann1-3/+14
2015-11-11decoder/Control: State::ERROR is illegalMax Kellermann1-1/+2
The state ERROR can only be entered during decoder initialization, and Seek() may only be called after initialization has been finished.
2015-11-11decoder/Control: use switch/case in Seek()Max Kellermann1-2/+13
2015-01-01Copyright year 2015Max Kellermann1-1/+1
2014-08-28DecoderControl: use std::chrono::duration for start_ms and end_msMax Kellermann1-3/+3
2014-08-27DecoderControl: use std::chrono::duration for Seek()Max Kellermann1-3/+2
2014-01-24decoder/*: move to decoder/plugins/Max Kellermann1-0/+0
2014-01-13copyright year 2014Max Kellermann1-1/+1
2014-01-09DetachedSong: fork of struct SongMax Kellermann1-9/+6
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.
2013-11-28include cleanup using iwyuMax Kellermann1-2/+0
2013-11-06DecoderControl: reduce the number of PlayerThread wakeupsMax Kellermann1-0/+13
Wake up the PlayerThread only if it is really waiting for the decoder. This greatly reduces the number of system calls in the DecoderThread.
2013-10-28DecoderControl: convert mutex and client_cond to a referenceMax Kellermann1-2/+3
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-28decoder_control: rename to DecoderControlMax Kellermann1-10/+10
2013-10-26DecoderControl: move code/attributes to new class MixRampInfoMax Kellermann1-26/+3
2013-10-26DecoderThread: move code to DecoderControl::CycleMixRamp()Max Kellermann1-2/+5
2013-10-21Song: pass reference to song_equals()Max Kellermann1-4/+2
2013-10-19*: use nullptr instead of NULLMax Kellermann1-3/+3
2013-10-17Thread/Thread: replacement library for GThreadMax Kellermann1-5/+3
2013-10-02Log: new logging library APIMax Kellermann1-3/+0
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-30DecoderControl: lock the mutex in Seek()Max Kellermann1-1/+1
Use LockSynchronousCommand() instead of SynchronousCommandLocked(). Fixes regression from commit ef663810 (dead lock due to cond_wait with unlocked mutex).
2013-09-27DecoderControl: use GLib forward declarationsMax Kellermann1-0/+2
2013-09-27DecoderControl: convert "enum decoder_state" to strictly-typed enumMax Kellermann1-9/+9
2013-09-27DecoderCommand: convert to strictly-typed enumMax Kellermann1-7/+7
2013-09-27DecoderControl: convert functions to methodsMax Kellermann1-40/+5
2013-09-26MusicBuffer: expose the C++ APIMax Kellermann1-3/+2
2013-09-26MusicPipe: expose the C++ APIMax Kellermann1-4/+3
2013-08-03gcc.h: add macro gcc_unreachable()Max Kellermann1-1/+1
2013-07-28song: convert header to C++Max Kellermann1-5/+5
2013-01-27DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCondMax Kellermann1-6/+1
2013-01-23DecoderControl: fix typo in assertion checkMax Kellermann1-3/+3
2013-01-21DecoderControl: move functions into the classMax Kellermann1-101/+75
2013-01-10DecoderControl: take ownership of client_condMax Kellermann1-2/+3
Don't let the "client" pass its own GCond. This was not used consistently.
2013-01-04buffer, pipe: convert to C++Max Kellermann1-4/+1
2013-01-04decoder_*: convert to C++Max Kellermann1-3/+6
2012-09-25decoder_control: remove MixRamp debug messagesMax Kellermann1-3/+0
These are confusing, and since MixRamp development has ceased, not useful to anybody.
2012-08-15decoder_control: duplicate the song objectMax Kellermann1-0/+8
Make sure the decoder "owns" the song object, so nobody else can free it.
2012-08-15Song: add function song_equals()Max Kellermann1-1/+2
decoder_is_current_song() now recognizes different instances of the same physical song.
2012-08-15decoder_control: add function _is_current_song()Max Kellermann1-0/+21
Replaces _current_song().
2012-08-08decoder_control: add GError attributeMax Kellermann1-0/+3
2011-10-05decoder_control: add attributes start_ms, end_msMax Kellermann1-0/+3
Don't read song.start_ms and song.end_ms, let the player thread manage this logic instead.
2011-01-29copyright year 2011Max Kellermann1-1/+1
2011-01-10decoder_control: store GCond object, not a player_controlMax Kellermann1-4/+3
Remove the decoder dependency on player_control. All player_control was needed for is to signal the player thread, and we can do that with a simple GCond as well.
2011-01-10decoder_control: remove unused function dc_command_wait()Max Kellermann1-8/+0
Only dc_command_wait_locked() is really being used.
2011-01-10decoder_control: replace dc_init() with dc_new()Max Kellermann1-6/+8
dc_new() allocates the object and returns it. dc_free() frees it (replaces dc_deinit()).
2011-01-10player_control: removed the global variable "pc"Max Kellermann1-2/+3
Allocate a player_control object where needed, and pass it around. Each "client" object is associated with a "player_control" instance. This prepares multi-player support.
2010-11-05decoder_control: pass music_pipe to dc_start()Max Kellermann1-4/+11
More abstraction for decoder_control.pipe.
2010-09-23decoder_control: use g_free() to manage mixramp allocationsMax Kellermann1-13/+6
Be consistent with the rest of MPD, and don't use the non-portable header "malloc.h".
2010-05-08mixramp: Adjust MixRamp threshold to account for ReplayGain.Tim Phipps1-0/+2
2010-03-21Add support for MixRamp tagsTim Phipps1-0/+50
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1