diff options
author | Max Kellermann <max@musicpd.org> | 2017-08-07 21:55:29 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-08-08 18:58:40 +0200 |
commit | bea5681fd8adbc3536ee82b031970e7861ab90f9 (patch) | |
tree | 108e44153acd32466331b68eccb973b0bc745af5 /src/output/plugins/RecorderOutputPlugin.cxx | |
parent | e11229494ed03e48af20ef9bdffcd0e8798a689a (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/RecorderOutputPlugin.cxx')
-rw-r--r-- | src/output/plugins/RecorderOutputPlugin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/plugins/RecorderOutputPlugin.cxx b/src/output/plugins/RecorderOutputPlugin.cxx index 075abf472..a57a54773 100644 --- a/src/output/plugins/RecorderOutputPlugin.cxx +++ b/src/output/plugins/RecorderOutputPlugin.cxx @@ -45,7 +45,7 @@ static constexpr Domain recorder_domain("recorder"); class RecorderOutput { friend struct AudioOutputWrapper<RecorderOutput>; - FilteredAudioOutput base; + AudioOutput base; /** * The configured encoder plugin. @@ -114,7 +114,7 @@ private: }; RecorderOutput::RecorderOutput(const ConfigBlock &block) - :base(recorder_output_plugin, block) + :base(recorder_output_plugin) { /* read configuration */ |