diff options
author | Michael Goddard <michael.goddard@nokia.com> | 2012-01-27 15:02:31 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-07 05:01:24 +0100 |
commit | 8b1f11b370b346af65b712502d68d6febaae5f12 (patch) | |
tree | 696938235b8d462170b740abfc86890ae3820437 /src/multimedia/audio/qaudioprobe.h | |
parent | 6c51d2aadf66c0ebeb66ae04e666359ee4b7423c (diff) | |
download | qtmultimedia-8b1f11b370b346af65b712502d68d6febaae5f12.tar.gz |
Add some media probing API.
Change-Id: Ib83918f99b699ac3fbc7ede82a392d00d4c18005
Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
Diffstat (limited to 'src/multimedia/audio/qaudioprobe.h')
-rw-r--r-- | src/multimedia/audio/qaudioprobe.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/multimedia/audio/qaudioprobe.h b/src/multimedia/audio/qaudioprobe.h new file mode 100644 index 000000000..1b201ac6a --- /dev/null +++ b/src/multimedia/audio/qaudioprobe.h @@ -0,0 +1,81 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QAUDIOPROBE_H +#define QAUDIOPROBE_H + +#include <QObject> +#include <qaudiobuffer.h> + +QT_BEGIN_HEADER + +QT_BEGIN_NAMESPACE + +QT_MODULE(Multimedia) + +class QMediaObject; +class QMediaRecorder; + +class QAudioProbePrivate; +class QAudioProbe : public QObject +{ + Q_OBJECT +public: + explicit QAudioProbe(QObject *parent = 0); + ~QAudioProbe(); + + bool setSource(QMediaObject *source); + bool setSource(QMediaRecorder *source); + + bool isActive() const; + +Q_SIGNALS: + void audioBufferProbed(const QAudioBuffer &audioBuffer); + +private: + QAudioProbePrivate *d; +}; + +QT_END_NAMESPACE + +QT_END_HEADER + +#endif // QAUDIOPROBE_H |