File indexing completed on 2024-04-21 16:20:32

0001 /*
0002     SPDX-FileCopyrightText: 2014-2015 Harald Sitter <sitter@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef SINKINPUT_H
0008 #define SINKINPUT_H
0009 
0010 #include "stream.h"
0011 
0012 namespace QPulseAudio
0013 {
0014 class SinkInput : public Stream
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit SinkInput(QObject *parent);
0019 
0020     void update(const pa_sink_input_info *info);
0021 
0022     void setVolume(qint64 volume) override;
0023     void setMuted(bool muted) override;
0024     void setChannelVolume(int channel, qint64 volume) override;
0025     void setChannelVolumes(const QVector<qint64> &channelVolumes) override;
0026     void setDeviceIndex(quint32 deviceIndex) override;
0027 };
0028 
0029 } // QPulseAudio
0030 
0031 #endif // SINKINPUT_H