summaryrefslogtreecommitdiffstats
path: root/encodemp4job.cpp
blob: 84408d388b46f12e2f73e9b6e1ccaad95f305578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "encodemp4job.h"
#include <QWidget>

EncodeMP4Job::EncodeMP4Job(Video *video, QString encodePath, QString imagePath) :
		Job(video),
		m_encodePath(encodePath),
		m_imagePath(imagePath)
{
}
Video::Jobs EncodeMP4Job::jobType() const
{
	return Video::EncodeMP4;
}
bool EncodeMP4Job::executeJob()
{
	//TODO: encode the actual mp4!
	return true;
}
QWidget* EncodeMP4Job::gui()
{
	//TODO: make a gui
	return new QWidget;
}