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