aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlayerControl.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* PlayerListener: new interface to replace GlobalEvents accessMax Kellermann2014-02-211-2/+3
|
* OutputAll: convert to class, move instance to class PartitionMax Kellermann2014-01-281-2/+4
| | | | Another big chunk of code for multi-player support.
* copyright year 2014Max Kellermann2014-01-131-1/+1
|
* DetachedSong: fork of struct SongMax Kellermann2014-01-091-20/+12
| | | | | | 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.
* include cleanup using iwyuMax Kellermann2013-11-281-2/+1
|
* PlayerControl: move attributes to struct CrossFadeSettingsMax Kellermann2013-10-291-12/+3
|
* player_control: rename to PlayerControlMax Kellermann2013-10-281-22/+22
|
* PlayerControl: initialize tagged_song in constructorMax Kellermann2013-10-261-0/+1
|
* Playlist: copy stream tags from the PlayerThreadMax Kellermann2013-10-221-0/+22
| | | | | | 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).
* *: use nullptr instead of NULLMax Kellermann2013-10-191-4/+4
|
* PlayerControl: GetError() returns an Error, not a char*Max Kellermann2013-10-171-13/+0
|
* Thread/Thread: replacement library for GThreadMax Kellermann2013-10-171-4/+4
|
* PlayerControl: use strictly typed enumsMax Kellermann2013-09-271-22/+22
|
* PlayerControl: convert functions to methodsMax Kellermann2013-09-271-63/+18
|
* util/Error: new error passing libraryMax Kellermann2013-09-041-9/+5
| | | | Replaces GLib's GError.
* song: convert header to C++Max Kellermann2013-07-281-8/+8
|
* Merge tag 'release-0.17.4'Max Kellermann2013-04-081-2/+0
|
* PlayerControl: work around std::nanf() not being available on MacPortsMax Kellermann2013-01-271-0/+6
|
* PlayerControl: add second Cond objectMax Kellermann2013-01-251-1/+1
| | | | | | | | | | | | | This fixes a deadlock bug introduced by 18076ac9. After all, the second Cond was necessary. The problem: two threads can wait for a signal at the same time. The player thread waits for the output thread to finish playback. The main thread waits for the player thread to complete a command. The output thread finishes playback, and sends a signal, which unfortunately does not wake up the player thread, but the main thread. The main thread sees that the command is still not finished, and waits again. The signal is lost forever, and MPD is deadlocked.
* PlayerControl: move functions into the classMax Kellermann2013-01-201-108/+92
|
* PlayerControl: initialise attribute "border_pause"Max Kellermann2013-01-151-1/+2
|
* PlayerControl: switch to the Mutex/Cond classesMax Kellermann2013-01-101-6/+1
|
* PlayerThread: use pc.cond instead of main_condMax Kellermann2013-01-101-1/+1
| | | | | The main_cond variable was completely unnecessary. The pc.cond object can be used for both main->pc and pc->main.
* DecoderControl: take ownership of client_condMax Kellermann2013-01-101-3/+3
| | | | | Don't let the "client" pass its own GCond. This was not used consistently.
* idle: convert to C++Max Kellermann2013-01-091-5/+1
|
* replay_gain_info, ...: use cmath instead of math.h in C++ modeMax Kellermann2013-01-071-2/+3
| | | | Fixes build problems with mingw32.
* PlayerControl: initialize all attributesMax Kellermann2013-01-041-1/+5
|
* PlayerControl: add constructor and destructorMax Kellermann2013-01-041-25/+17
|
* player_control.h: convert header to C++Max Kellermann2013-01-041-1/+1
|
* decoder_*: convert to C++Max Kellermann2013-01-041-0/+344