diff options
Diffstat (limited to '')
-rw-r--r-- | src/output/plugins/HttpdInternal.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output/plugins/HttpdInternal.hxx b/src/output/plugins/HttpdInternal.hxx index 506730d11..1d48c3ad5 100644 --- a/src/output/plugins/HttpdInternal.hxx +++ b/src/output/plugins/HttpdInternal.hxx @@ -51,7 +51,7 @@ struct Encoder; struct Tag; class HttpdOutput final : ServerSocket, DeferredMonitor { - struct audio_output base; + AudioOutput base; /** * True if the audio output is open and accepts client @@ -157,7 +157,7 @@ public: #pragma GCC diagnostic ignored "-Winvalid-offsetof" #endif - static constexpr HttpdOutput *Cast(audio_output *ao) { + static constexpr HttpdOutput *Cast(AudioOutput *ao) { return ContainerCast(ao, HttpdOutput, base); } @@ -175,7 +175,7 @@ public: bool Configure(const config_param ¶m, Error &error); - audio_output *InitAndConfigure(const config_param ¶m, + AudioOutput *InitAndConfigure(const config_param ¶m, Error &error) { if (!Init(param, error)) return nullptr; |