diff options
author | Max Kellermann <max@duempel.org> | 2014-01-28 11:34:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-28 11:34:09 +0100 |
commit | 815d72065c1f2c690228e66b74b8a303cfe33fca (patch) | |
tree | 0c6698d1c3d3066036020a367531116cc8c334ce /src/output/MultipleOutputs.hxx | |
parent | e0dc721324f34d8b3803dce64545871aec42e537 (diff) | |
download | mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.tar.gz mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.tar.xz mpd-815d72065c1f2c690228e66b74b8a303cfe33fca.zip |
output: rename struct audio_output to AudioOutput
Diffstat (limited to '')
-rw-r--r-- | src/output/MultipleOutputs.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/output/MultipleOutputs.hxx b/src/output/MultipleOutputs.hxx index e1a8602a9..7790f83a4 100644 --- a/src/output/MultipleOutputs.hxx +++ b/src/output/MultipleOutputs.hxx @@ -39,11 +39,11 @@ class MusicBuffer; class MusicPipe; struct music_chunk; struct PlayerControl; -struct audio_output; +struct AudioOutput; class Error; class MultipleOutputs { - std::vector<audio_output *> outputs; + std::vector<AudioOutput *> outputs; AudioFormat input_audio_format; @@ -86,13 +86,13 @@ public: /** * Returns the "i"th audio output device. */ - const audio_output &Get(unsigned i) const { + const AudioOutput &Get(unsigned i) const { assert(i < Size()); return *outputs[i]; } - audio_output &Get(unsigned i) { + AudioOutput &Get(unsigned i) { assert(i < Size()); return *outputs[i]; @@ -103,7 +103,7 @@ public: * Returns nullptr if the name does not exist. */ gcc_pure - audio_output *FindByName(const char *name) const; + AudioOutput *FindByName(const char *name) const; /** * Checks the "enabled" flag of all audio outputs, and if one has |