]> git.sesse.net Git - kdenlive/blob - src/projecttree/meltjob.h
Improvements to the clip jobs framework
[kdenlive] / src / projecttree / meltjob.h
1 /***************************************************************************
2  *                                                                         *
3  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@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  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #ifndef MELTJOB
22 #define MELTJOB
23
24 #include <QObject>
25 #include <QProcess>
26
27 #include "abstractclipjob.h"
28
29 namespace Mlt{
30         class Profile;
31         class Producer;
32         class Consumer;
33         class Filter;
34         class Event;
35 };
36
37 class MeltJob : public AbstractClipJob
38 {
39     Q_OBJECT
40
41 public:
42     MeltJob(CLIPTYPE cType, const QString &id, QStringList parameters);
43     virtual ~ MeltJob();
44     const QString destination() const;
45     void startJob();
46     stringMap cancelProperties();
47     bool addClipToProject;
48     const QString statusMessage();
49     void setProducer(Mlt::Producer *producer);
50     void emitFrameNumber();
51     
52 private:
53     Mlt::Producer *m_producer;
54     Mlt::Profile *m_profile;
55     Mlt::Consumer *m_consumer;
56     Mlt::Event *m_showFrameEvent;
57     QStringList m_params;
58     int m_length;
59 };
60
61 #endif