all repos — mgba @ 3dfc2bfcb34306cf5108e4b7e998aa3cdffb4389

mGBA Game Boy Advance Emulator

src/platform/qt/VideoView.h (view raw)

 1#ifndef QGBA_VIDEO_VIEW
 2#define QGBA_VIDEO_VIEW
 3
 4#ifdef USE_FFMPEG
 5
 6#include <QWidget>
 7
 8#include "ui_VideoView.h"
 9
10struct FFmpegEncoder;
11
12namespace QGBA {
13
14class VideoView : public QWidget {
15Q_OBJECT
16
17public:
18	VideoView(QWidget* parent = nullptr);
19
20private:
21	Ui::VideoView m_ui;
22
23	FFmpegEncoder* m_encoder;
24};
25
26}
27
28#endif
29
30#endif