]> git.sesse.net Git - kdenlive/blob - src/scopes/audioscopes/audiosignal.h
Fix includes
[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 <QTimer>
28
29 #include  <QWidget>
30
31 #include <stdint.h>
32
33 class AudioSignal : public AbstractAudioScopeWidget
34 {
35     Q_OBJECT
36 public:
37     explicit AudioSignal(QWidget *parent = 0);
38     ~AudioSignal();
39     /** @brief Used for checking whether audio data needs to be delivered */
40     bool monitoringEnabled() const;
41
42     QRect scopeRect();
43     QImage renderHUD(uint accelerationFactor);
44     QImage renderBackground(uint accelerationFactor);
45     QImage renderAudioScope(uint accelerationFactor, const QVector<int16_t> &audioFrame, const int, const int num_channels, const int samples, const int);
46
47     QString widgetName() const { return "audioSignal"; }
48     bool isHUDDependingOnInput() const { return false; }
49     bool isScopeDependingOnInput() const { return true; }
50     bool isBackgroundDependingOnInput() const { return false; }
51
52 private:
53     double valueToPixel(double in);
54     QTimer m_timer;
55     QByteArray channels,peeks,peekage;
56     QList<int> dbscale;
57
58 public slots:
59     void showAudio(const QByteArray &);
60     void slotReceiveAudio(QVector<int16_t>,int,int,int);
61 private slots:
62      void slotNoAudioTimeout();
63
64 signals:
65     void updateAudioMonitoring();
66
67 };
68
69 #endif