Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qalsaaudiodevice_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4//
5// W A R N I N G
6// -------------
7//
8// This file is not part of the Qt API. It exists for the convenience
9// of other Qt classes. This header file may change from version to
10// version without notice, or even be removed.
11//
12// We mean it.
13//
14
15
16#ifndef QALSAAUDIODEVICEINFO_H
17#define QALSAAUDIODEVICEINFO_H
18
19#include <QtCore/qbytearray.h>
20#include <QtMultimedia/qaudio.h>
21#include <QtMultimedia/private/qaudiodevice_p.h>
22#include <QtMultimedia/private/qaudiosystem_p.h>
23
25
26class Q_MULTIMEDIA_EXPORT QAlsaAudioDeviceInfo : public QAudioDevicePrivate
27{
28public:
29 QAlsaAudioDeviceInfo(const QByteArray &dev, const QString &description, QAudioDevice::Mode mode);
30 Q_DISABLE_COPY_MOVE(QAlsaAudioDeviceInfo)
31 ~QAlsaAudioDeviceInfo();
32
33private:
34 void checkSurround();
35 bool surround40{};
36 bool surround51{};
37 bool surround71{};
38};
39
40QT_END_NAMESPACE
41
42
43#endif // QALSAAUDIODEVICEINFO_H