]> git.sesse.net Git - kdenlive/blob - renderer/renderjob.h
Enable 2 pass encoding for rendering. All you need to do is add "pass=2" to the rende...
[kdenlive] / renderer / renderjob.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef RENDERJOB_H
22 #define RENDERJOB_H
23
24 #include <QProcess>
25 #include <QObject>
26 #include <QDBusInterface>
27 #include <QTime>
28 // Testing
29 #include <QTemporaryFile>
30 #include <QTextStream>
31
32 class RenderJob : public QObject {
33     Q_OBJECT
34
35 public:
36     RenderJob(bool erase, bool usekuiserver, const QString &renderer, const QString &profile, const QString &rendermodule, const QString &player, const QString &scenelist, const QString &dest, const QStringList &preargs, const QStringList &args, int in = -1, int out = -1);
37     ~RenderJob();
38
39 public slots:
40     void start();
41
42 private slots:
43     void slotIsOver(int exitcode, QProcess::ExitStatus status);
44     void receivedStderr();
45     void slotAbort();
46     void slotAbort(const QString& url);
47
48 private:
49     QString m_scenelist;
50     QString m_dest;
51     int m_progress;
52     QProcess *m_renderProcess;
53     QString m_errorMessage;
54     QString m_prog;
55     QString m_player;
56     QStringList m_args;
57     bool m_erase;
58     bool m_dualpass;
59     QDBusInterface *m_jobUiserver;
60     QDBusInterface *m_kdenliveinterface;
61     QList<QVariant> m_dbusargs;
62     QTime m_startTime;
63     void initKdenliveDbusInterface();
64     bool m_usekuiserver;
65     /** \brief Used to create a temporary file for logging */
66     QTemporaryFile m_logfile;
67     /** \brief Used to write to the log file */
68     QTextStream m_logstream;
69
70 signals:
71     void renderingFinished();
72 };
73
74 #endif