aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/mixer/MixerAll.cxx6
-rw-r--r--src/mixer/MixerControl.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mixer/MixerAll.cxx b/src/mixer/MixerAll.cxx
index 483660a45..c2fa903f2 100644
--- a/src/mixer/MixerAll.cxx
+++ b/src/mixer/MixerAll.cxx
@@ -33,7 +33,7 @@
static constexpr Domain mixer_domain("mixer");
static int
-output_mixer_get_volume(const audio_output &ao)
+output_mixer_get_volume(const AudioOutput &ao)
{
if (!ao.enabled)
return -1;
@@ -73,7 +73,7 @@ MultipleOutputs::GetVolume() const
}
static bool
-output_mixer_set_volume(audio_output &ao, unsigned volume)
+output_mixer_set_volume(AudioOutput &ao, unsigned volume)
{
assert(volume <= 100);
@@ -108,7 +108,7 @@ MultipleOutputs::SetVolume(unsigned volume)
}
static int
-output_mixer_get_software_volume(const audio_output &ao)
+output_mixer_get_software_volume(const AudioOutput &ao)
{
if (!ao.enabled)
return -1;
diff --git a/src/mixer/MixerControl.hxx b/src/mixer/MixerControl.hxx
index caa1c3054..3f8e11e86 100644
--- a/src/mixer/MixerControl.hxx
+++ b/src/mixer/MixerControl.hxx
@@ -46,7 +46,7 @@ mixer_close(Mixer *mixer);
/**
* Close the mixer unless the plugin's "global" flag is set. This is
- * called when the #audio_output is closed.
+ * called when the #AudioOutput is closed.
*/
void
mixer_auto_close(Mixer *mixer);