]> git.sesse.net Git - kdenlive/blob - src/projecttree/meltjob.h
Add automatic scene split (requires MLT patch): http://kdenlive.org/mantis/view.php...
[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 class KUrl;
30
31 namespace Mlt{
32         class Profile;
33         class Producer;
34         class Consumer;
35         class Filter;
36         class Event;
37 };
38
39 class MeltJob : public AbstractClipJob
40 {
41     Q_OBJECT
42
43 public:
44     MeltJob(CLIPTYPE cType, const QString &id, QStringList parameters, QStringList extraParams = QStringList());
45     virtual ~ MeltJob();
46     const QString destination() const;
47     void startJob();
48     stringMap cancelProperties();
49     bool addClipToProject;
50     const QString statusMessage();
51     void setProducer(Mlt::Producer *producer, KUrl url);
52     void emitFrameNumber();
53     /** Make the job work on a project tree clip. */
54     bool isProjectFilter() const;
55     
56 private:
57     Mlt::Producer *m_producer;
58     Mlt::Profile *m_profile;
59     Mlt::Consumer *m_consumer;
60     Mlt::Event *m_showFrameEvent;
61     QStringList m_params;
62     QString m_dest;
63     QString m_url;
64     int m_length;
65     QStringList m_extra;
66
67 signals:
68     void gotFilterJobResults(const QString &id, int startPos, int track, const QString &filterName, stringMap params);
69 };
70
71 #endif