aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/OutputInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-28 11:22:27 +0100
committerMax Kellermann <max@duempel.org>2014-01-28 11:33:15 +0100
commite0dc721324f34d8b3803dce64545871aec42e537 (patch)
tree5cc5177d022bf337e2dcc80ef1cc5a88f70d8fba /src/output/OutputInternal.hxx
parent2f873edc9c61a55c7a524a48f16cb197cd08b37d (diff)
downloadmpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.gz
mpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.xz
mpd-e0dc721324f34d8b3803dce64545871aec42e537.zip
OutputPlugin: rename struct audio_output_plugin to AudioOutputPlugin
Diffstat (limited to 'src/output/OutputInternal.hxx')
-rw-r--r--src/output/OutputInternal.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/output/OutputInternal.hxx b/src/output/OutputInternal.hxx
index 18404dc01..67b6ea644 100644
--- a/src/output/OutputInternal.hxx
+++ b/src/output/OutputInternal.hxx
@@ -33,6 +33,7 @@ class Filter;
class MusicPipe;
struct config_param;
struct PlayerControl;
+struct AudioOutputPlugin;
enum audio_output_command {
AO_COMMAND_NONE = 0,
@@ -68,7 +69,7 @@ struct audio_output {
/**
* The plugin which implements this output device.
*/
- const struct audio_output_plugin *plugin;
+ const AudioOutputPlugin *plugin;
/**
* The #mixer object associated with this audio output device.
@@ -289,7 +290,7 @@ audio_output_new(const config_param &param,
bool
ao_base_init(struct audio_output *ao,
- const struct audio_output_plugin *plugin,
+ const AudioOutputPlugin *plugin,
const config_param &param, Error &error);
void