summaryrefslogtreecommitdiffstats
path: root/encodemp4job.h
blob: 58ecd515011aff1f0ef104490567064ed034a776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ENCODEMP4JOB_H
#define ENCODEMP4JOB_H

#include "job.h"
#include "video.h"

class EncodeMP4Job : public Job
{
	Q_OBJECT
public:
	EncodeMP4Job(Video *video, QString encodePath, QString imagePath);
	Video::Jobs jobType() const;
	QWidget* gui();
protected:
	bool executeJob();
private:
	QString m_encodePath;
	QString m_imagePath;
};

#endif // ENCODEMP4JOB_H