summaryrefslogtreecommitdiff
path: root/src/output/plugins/PipeOutputPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-08-07 21:55:29 +0200
committerMax Kellermann <max@musicpd.org>2017-08-08 18:58:40 +0200
commitbea5681fd8adbc3536ee82b031970e7861ab90f9 (patch)
tree108e44153acd32466331b68eccb973b0bc745af5 /src/output/plugins/PipeOutputPlugin.cxx
parente11229494ed03e48af20ef9bdffcd0e8798a689a (diff)
output/Interface: define a new struct AudioOutput
Hide struct FilteredAudioOutput from the plugins, preparing for hiding MPD's core internals.
Diffstat (limited to 'src/output/plugins/PipeOutputPlugin.cxx')
-rw-r--r--src/output/plugins/PipeOutputPlugin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/plugins/PipeOutputPlugin.cxx b/src/output/plugins/PipeOutputPlugin.cxx
index 455b16fab..b0f7f6492 100644
--- a/src/output/plugins/PipeOutputPlugin.cxx
+++ b/src/output/plugins/PipeOutputPlugin.cxx
@@ -31,7 +31,7 @@
class PipeOutput {
friend struct AudioOutputWrapper<PipeOutput>;
- FilteredAudioOutput base;
+ AudioOutput base;
const std::string cmd;
FILE *fh;
@@ -52,7 +52,7 @@ public:
};
PipeOutput::PipeOutput(const ConfigBlock &block)
- :base(pipe_output_plugin, block),
+ :base(pipe_output_plugin),
cmd(block.GetBlockValue("command", ""))
{
if (cmd.empty())