]> git.sesse.net Git - kdenlive/blob - src/projecttree/meltjob.h
Fix scene detection jobs not running concurrently and possible crash: http://kdenlive...
[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, QMap <QString, QString> extraParams = QMap <QString, QString>());
45     virtual ~ MeltJob();
46     const QString destination() const;
47     void startJob();
48     stringMap cancelProperties();
49     bool addClipToProject;
50     const QString statusMessage();
51     void setStatus(CLIPJOBSTATUS status);
52     void setProducer(Mlt::Producer *producer, KUrl url);
53     void emitFrameNumber(int pos);
54     /** Make the job work on a project tree clip. */
55     bool isProjectFilter() const;
56     
57 private:
58     Mlt::Consumer *m_consumer;
59     Mlt::Producer *m_producer;
60     Mlt::Profile *m_profile;
61     Mlt::Filter *m_filter;
62     Mlt::Event *m_showFrameEvent;
63     QStringList m_params;
64     QString m_dest;
65     QString m_url;
66     int m_length;
67     QMap <QString, QString> m_extra;
68
69 signals:
70     void gotFilterJobResults(const QString &id, int startPos, int track, stringMap result, stringMap extra);
71 };
72
73 #endif