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 /test | |
parent | e699f6781e144d02336856d460a74fbaf988447d (diff) | |
download | mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.gz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.xz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.zip |
player_control: rename to PlayerControl
Diffstat (limited to 'test')
-rw-r--r-- | test/run_output.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/run_output.cxx b/test/run_output.cxx index 0bcad149f..7982bd7de 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -72,9 +72,9 @@ find_named_config_block(ConfigOption option, const char *name) return NULL; } -player_control::player_control(gcc_unused unsigned _buffer_chunks, +PlayerControl::PlayerControl(gcc_unused unsigned _buffer_chunks, gcc_unused unsigned _buffered_before_play) {} -player_control::~player_control() {} +PlayerControl::~PlayerControl() {} static struct audio_output * load_audio_output(const char *name) @@ -87,7 +87,7 @@ load_audio_output(const char *name) return nullptr; } - static struct player_control dummy_player_control(32, 4); + static struct PlayerControl dummy_player_control(32, 4); Error error; struct audio_output *ao = |