]> git.sesse.net Git - kdenlive/blob - src/scopes/audioscopes/audiosignal.h
Merge branch 'master' into audioAlign
[kdenlive] / src / scopes / audioscopes / audiosignal.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Marco Gittler (g.marco@freenet.de)              *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #ifndef AUDIOSIGNAL_H
21 #define AUDIOSIGNAL_H
22
23 #include "scopes/audioscopes/abstractaudioscopewidget.h"
24
25 #include <QByteArray>
26 #include <QList>
27 #include <QColor>
28 #include <QTimer>
29 class QLabel;
30
31 #include  <QWidget>
32
33 #include <stdint.h>
34
35 class AudioSignal : public AbstractAudioScopeWidget
36 {
37     Q_OBJECT
38 public:
39     AudioSignal(QWidget *parent = 0);
40     ~AudioSignal();
41     /** @brief Used for checking whether audio data needs to be delivered */
42     bool monitoringEnabled() const;
43
44     QRect scopeRect();
45     QImage renderHUD(uint accelerationFactor);
46     QImage renderBackground(uint accelerationFactor);
47     QImage renderAudioScope(uint accelerationFactor, const QVector<int16_t> audioFrame, const int, const int num_channels, const int samples, const int);
48
49     QString widgetName() const { return "audioSignal"; }
50     bool isHUDDependingOnInput() const { return false; }
51     bool isScopeDependingOnInput() const { return true; }
52     bool isBackgroundDependingOnInput() const { return false; }
53
54 private:
55     double valueToPixel(double in);
56     QTimer m_timer;
57     QByteArray channels,peeks,peekage;
58     QList<int> dbscale;
59
60 public slots:
61     void showAudio(const QByteArray);
62     void slotReceiveAudio(QVector<int16_t>,int,int,int);
63 private slots:
64      void slotNoAudioTimeout();
65
66 signals:
67     void updateAudioMonitoring();
68
69 };
70
71 #endif