-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.h
55 lines (42 loc) · 1.03 KB
/
MainWindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QWidget>
#include <QPaintEvent>
#include <QImage>
#include <QPainter>
#include "AudioPlayer.h"
#include "VideoPlayer.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QWidget
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void playVideo();
void playAudio();
static void audioCallBack(void *userData,Uint8 *stream,int len);
protected:
void paintEvent(QPaintEvent *event);
public slots:
void onUpdateImage(QImage image);
void onUpdateTime();
private slots:
void on_pushButtonStart_clicked();
void on_pushButtonStop_clicked();
private:
static int64_t mBaseAudioPts;
static int64_t mAudioPts;
int64_t mPreVideoPts;
int64_t mVideoPts;
uint mCurTimeStamp;
AudioPlayer *mAudioPlayer;
AudioPlayer *mAudioPlayerBak;
VideoPlayer *mVideoPlayer;
private:
Ui::MainWindow *ui;
QImage mImage;
};
#endif // MAINWINDOW_H