diff options
author | Max Kellermann <max@duempel.org> | 2013-10-28 10:12:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-28 10:12:33 +0100 |
commit | 5b5675cc121eff6ba4b89719a523bfbe3993ce2f (patch) | |
tree | 92bd72d3f460d184d5769256270c76db0fb6080b /src/OutputAll.hxx | |
parent | e699f6781e144d02336856d460a74fbaf988447d (diff) | |
download | mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.gz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.xz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.zip |
player_control: rename to PlayerControl
Diffstat (limited to '')
-rw-r--r-- | src/OutputAll.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/OutputAll.hxx b/src/OutputAll.hxx index 55b7a9617..6f3ea4039 100644 --- a/src/OutputAll.hxx +++ b/src/OutputAll.hxx @@ -32,7 +32,7 @@ struct AudioFormat; class MusicBuffer; struct music_chunk; -struct player_control; +struct PlayerControl; class Error; /** @@ -40,7 +40,7 @@ class Error; * file and initialize them. */ void -audio_output_all_init(player_control &pc); +audio_output_all_init(PlayerControl &pc); /** * Global finalization: free memory occupied by audio outputs. All @@ -135,7 +135,7 @@ audio_output_all_check(void); * @return true if there are less than #threshold chunks in the pipe */ bool -audio_output_all_wait(player_control &pc, unsigned threshold); +audio_output_all_wait(PlayerControl &pc, unsigned threshold); /** * Puts all audio outputs into pause mode. Most implementations will |