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
removed_api.cpp
Go to the documentation of this file.
1// Copyright (C) 2024 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#define QT_MULTIMEDIA_BUILD_REMOVED_API
5
6#include <QtMultimedia/qtmultimediaglobal.h>
7
8#if QT_MULTIMEDIA_REMOVED_SINCE(6, 10) && !defined(Q_QDOC)
9
10#include "qaudio.h"
11
12QT_BEGIN_NAMESPACE
13
14namespace QAudio {
15float convertVolume(float volume, VolumeScale from, VolumeScale to)
16{
17 return QtAudio::convertVolume(volume, from, to);
18}
19} // namespace QAudio
20
21QT_END_NAMESPACE
22
23#endif // QT_MULTIMEDIA_REMOVED_SINCE(6, 10) && !defined(Q_QDOC)