]> git.sesse.net Git - kdenlive/blob - src/scopes/audioscopes/abstractaudioscopewidget.h
Fix includes
[kdenlive] / src / scopes / audioscopes / abstractaudioscopewidget.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Simon Andreas Eugster (simon.eu@gmail.com)      *
3  *   This file is part of kdenlive. See www.kdenlive.org.                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10
11 #ifndef ABSTRACTAUDIOSCOPEWIDGET_H
12 #define ABSTRACTAUDIOSCOPEWIDGET_H
13
14
15 #include <QWidget>
16
17 #include <stdint.h>
18
19 #include "../abstractscopewidget.h"
20
21
22 class Render;
23
24 /**
25  \brief Abstract class for scopes analyzing audio samples.
26  */
27 class AbstractAudioScopeWidget : public AbstractScopeWidget
28 {
29     Q_OBJECT
30 public:
31     explicit AbstractAudioScopeWidget(bool trackMouse = false, QWidget *parent = 0);
32     virtual ~AbstractAudioScopeWidget();
33
34 public slots:
35     void slotReceiveAudio(const QVector<int16_t> &sampleData, int freq, int num_channels, int num_samples);
36
37 protected:
38     /** @brief This is just a wrapper function, subclasses can use renderAudioScope. */
39     virtual QImage renderScope(uint accelerationFactor);
40
41     ///// Unimplemented Methods /////
42     /** @brief Scope renderer. Must emit signalScopeRenderingFinished()
43         when calculation has finished, to allow multi-threading.
44         accelerationFactor hints how much faster than usual the calculation should be accomplished, if possible. */
45     virtual QImage renderAudioScope(uint accelerationFactor,
46                                     const QVector<int16_t> &audioFrame, const int freq, const int num_channels, const int num_samples,
47                                     const int newData) = 0;
48
49     int m_freq;
50     int m_nChannels;
51     int m_nSamples;
52
53 private:
54     QVector<int16_t> m_audioFrame;
55     QAtomicInt m_newData;
56
57 };
58
59 #endif // ABSTRACTAUDIOSCOPEWIDGET_H