mpd/src/output/plugins/PipeWireOutputPlugin.hxx

22 lines
520 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef MPD_PIPEWIRE_OUTPUT_PLUGIN_HXX
#define MPD_PIPEWIRE_OUTPUT_PLUGIN_HXX
2021-08-04 17:35:21 +02:00
class PipeWireOutput;
class PipeWireMixer;
2021-08-04 17:35:21 +02:00
extern const struct AudioOutputPlugin pipewire_output_plugin;
void
2021-10-19 08:58:47 +02:00
pipewire_output_set_mixer(PipeWireOutput &po, PipeWireMixer &pm) noexcept;
void
2021-10-19 08:58:47 +02:00
pipewire_output_clear_mixer(PipeWireOutput &po, PipeWireMixer &pm) noexcept;
2021-08-04 17:35:21 +02:00
void
pipewire_output_set_volume(PipeWireOutput &output, float volume);
#endif