mpd/src/output/plugins/PulseOutputPlugin.hxx

26 lines
565 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-04-16 20:51:21 +02:00
#ifndef MPD_PULSE_OUTPUT_PLUGIN_HXX
#define MPD_PULSE_OUTPUT_PLUGIN_HXX
2015-01-04 19:15:51 +01:00
class PulseOutput;
class PulseMixer;
struct pa_cvolume;
extern const struct AudioOutputPlugin pulse_output_plugin;
struct pa_threaded_mainloop *
pulse_output_get_mainloop(PulseOutput &po);
void
pulse_output_set_mixer(PulseOutput &po, PulseMixer &pm);
void
pulse_output_clear_mixer(PulseOutput &po, PulseMixer &pm);
2016-09-09 12:52:51 +02:00
void
pulse_output_set_volume(PulseOutput &po, const pa_cvolume *volume);
#endif