]> git.sesse.net Git - kdenlive/blob - src/renderer.h
3c0e98dccb2601bfd589a25038b28d9859d1f724
[kdenlive] / src / renderer.h
1 /***************************************************************************
2                          krender.h  -  description
3                             -------------------
4    begin                : Fri Nov 22 2002
5    copyright            : (C) 2002 by Jason Wood
6    email                : jasonwood@blueyonder.co.uk
7 ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 /**
19  * @class Render
20  * @author Jason Wood
21  * @brief Client side of the interface to a renderer.
22  *
23  * From Kdenlive's point of view, you treat the Render object as the renderer,
24  * and simply use it as if it was local. Calls are asynchronous - you send a
25  * call out, and then receive the return value through the relevant signal that
26  * get's emitted once the call completes.
27  */
28
29 #ifndef RENDERER_H
30 #define RENDERER_H
31
32 #include "gentime.h"
33 #include "definitions.h"
34
35 #include <kurl.h>
36
37 #include <qdom.h>
38 #include <qstring.h>
39 #include <qmap.h>
40 #include <QList>
41 #include <QEvent>
42
43 #ifdef Q_WS_MAC
44 #include "videoglwidget.h"
45 #endif
46
47 class Render;
48
49 class QTimer;
50 class QPixmap;
51
52 namespace Mlt
53 {
54 class Consumer;
55 class Playlist;
56 class Tractor;
57 class Transition;
58 class Frame;
59 class Field;
60 class Producer;
61 class Filter;
62 class Profile;
63 class Service;
64 };
65
66 class MltErrorEvent : public QEvent
67 {
68 public:
69     MltErrorEvent(QString message) : QEvent(QEvent::User), m_message(message) {}
70     QString message() const {
71         return m_message;
72     }
73
74 private:
75     QString m_message;
76 };
77
78 class Render: public QObject
79 {
80 Q_OBJECT public:
81
82     enum FailStates { OK = 0,
83                       APP_NOEXIST
84                     };
85
86     Render(const QString & rendererName, int winid, int extid, QString profile = QString(), QWidget *parent = 0);
87     ~Render();
88
89     /** @brief Seeks the renderer clip to the given time. */
90     void seek(GenTime time);
91     void seekToFrame(int pos);
92     void seekToFrameDiff(int diff);
93     int m_isBlocked;
94
95     //static QPixmap getVideoThumbnail(char *profile, QString file, int frame, int width, int height);
96     QPixmap getImageThumbnail(KUrl url, int width, int height);
97
98     /* Return thumbnail for color clip
99     void getImage(int id, QString color, QPoint size);*/
100
101     // static QPixmap frameThumbnail(Mlt::Frame *frame, int width, int height, bool border = false);
102
103     /* Return thumbnail for image clip
104     void getImage(KUrl url, QPoint size);*/
105
106     /* Requests a particular frame from the given file.
107      *
108      * The pixmap will be returned by emitting the replyGetImage() signal.
109     void getImage(KUrl url, int frame, QPoint size);*/
110
111     int setSceneList(QDomDocument list, int position = 0);
112
113     /** @brief Sets the current scene list.
114      * @param list new scene list
115      * @param position (optional) time to seek to
116      * @return 0 when it has success, different from 0 otherwise
117      *
118      * Creates the producer from the MLT XML QDomDocument. Wraps the VEML
119      * command of the same name. */
120     int setSceneList(QString playlist, int position = 0);
121     int setProducer(Mlt::Producer *producer, int position);
122     const QString sceneList();
123     bool saveSceneList(QString path, QDomElement kdenliveData = QDomElement());
124
125     /** @brief Tells the renderer to play the scene at the specified speed,
126      * @param speed speed to play the scene to
127      *
128      * The speed is relative to normal playback, e.g. 1.0 is normal speed, 0.0
129      * is paused, -1.0 means play backwards. It does not specify start/stop
130      * times for playback. Wraps the VEML command of the same name. */
131     void play(double speed);
132     void switchPlay();
133     void pause();
134
135     /** @brief Stops playing.
136      * @param startTime time to seek to */
137     void stop(const GenTime & startTime);
138     void setVolume(double volume);
139
140     QImage extractFrame(int frame_position, int width = -1, int height = -1);
141
142     /** @brief Plays the scene starting from a specific time.
143      * @param startTime time to start playing the scene from
144      *
145      * Wraps the VEML command of the same name. */
146     void play(const GenTime & startTime);
147     void playZone(const GenTime & startTime, const GenTime & stopTime);
148     void loopZone(const GenTime & startTime, const GenTime & stopTime);
149
150     void saveZone(KUrl url, QString desc, QPoint zone);
151
152     /** @brief Returns the name of the renderer. */
153     const QString & rendererName() const;
154
155     /** @brief Returns the speed at which the renderer is currently playing.
156      *
157      * It returns 0.0 when the renderer is not playing anything. */
158     double playSpeed();
159
160     /** @brief Returns the current seek position of the renderer. */
161     GenTime seekPosition() const;
162     int seekFramePosition() const;
163
164     void emitFrameNumber(double position);
165     void emitConsumerStopped();
166
167     /** @brief Returns the aspect ratio of the consumer. */
168     double consumerRatio() const;
169
170     void doRefresh();
171
172     /** @brief Saves current producer frame as an image. */
173     void exportCurrentFrame(KUrl url, bool notify);
174
175     /** @brief Turns on or off on screen display. */
176     void refreshDisplay();
177     int resetProfile(const QString profileName);
178     double fps() const;
179     int renderWidth() const;
180     int renderHeight() const;
181
182     /** @brief Returns display aspect ratio. */
183     double dar() const;
184
185     /*
186      * Playlist manipulation.
187      */
188     Mlt::Producer *checkSlowMotionProducer(Mlt::Producer *prod, QDomElement element);
189     int mltInsertClip(ItemInfo info, QDomElement element, Mlt::Producer *prod, bool overwrite = false, bool push = false);
190     bool mltUpdateClip(ItemInfo info, QDomElement element, Mlt::Producer *prod);
191     void mltCutClip(int track, GenTime position);
192     void mltInsertSpace(QMap <int, int> trackClipStartList, QMap <int, int> trackTransitionStartList, int track, const GenTime duration, const GenTime timeOffset);
193     int mltGetSpaceLength(const GenTime pos, int track, bool fromBlankStart);
194     int mltTrackDuration(int track);
195     bool mltResizeClipEnd(ItemInfo info, GenTime clipDuration);
196     bool mltResizeClipStart(ItemInfo info, GenTime diff);
197     bool mltResizeClipCrop(ItemInfo info, GenTime diff);
198     bool mltMoveClip(int startTrack, int endTrack, GenTime pos, GenTime moveStart, Mlt::Producer *prod, bool overwrite = false, bool insert = false);
199     bool mltMoveClip(int startTrack, int endTrack, int pos, int moveStart, Mlt::Producer *prod, bool overwrite = false, bool insert = false);
200     bool mltRemoveClip(int track, GenTime position);
201
202     /** @brief Deletes an effect from a clip in MLT's playlist. */
203     bool mltRemoveEffect(int track, GenTime position, QString index, bool updateIndex, bool doRefresh = true);
204
205     /** @brief Adds an effect to a clip in MLT's playlist. */
206     bool mltAddEffect(int track, GenTime position, EffectsParameterList params, bool doRefresh = true);
207
208     /** @brief Edits an effect parameters in MLT's playlist. */
209     bool mltEditEffect(int track, GenTime position, EffectsParameterList params);
210
211     /** @brief Updates the "kdenlive_ix" (index) value of an effect. */
212     void mltUpdateEffectPosition(int track, GenTime position, int oldPos, int newPos);
213
214     /** @brief Changes the order of effects in MLT's playlist.
215      *
216      * It switches effects from oldPos and newPos, updating the "kdenlive_ix"
217      * (index) value. */
218     void mltMoveEffect(int track, GenTime position, int oldPos, int newPos);
219
220     /** @brief Enables/disables audio/video in a track. */
221     void mltChangeTrackState(int track, bool mute, bool blind);
222     bool mltMoveTransition(QString type, int startTrack,  int newTrack, int newTransitionTrack, GenTime oldIn, GenTime oldOut, GenTime newIn, GenTime newOut);
223     bool mltAddTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool refresh = true);
224     void mltDeleteTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool refresh = true);
225     void mltUpdateTransition(QString oldTag, QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool force = false);
226     void mltUpdateTransitionParams(QString type, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml);
227     void mltAddClipTransparency(ItemInfo info, int transitiontrack, int id);
228     void mltMoveTransparency(int startTime, int endTime, int startTrack, int endTrack, int id);
229     void mltDeleteTransparency(int pos, int track, int id);
230     void mltResizeTransparency(int oldStart, int newStart, int newEnd, int track, int id);
231     void mltInsertTrack(int ix, bool videoTrack);
232     void mltDeleteTrack(int ix);
233     bool mltUpdateClipProducer(int track, int pos, Mlt::Producer *prod);
234     void mltPlantTransition(Mlt::Field *field, Mlt::Transition &tr, int a_track, int b_track);
235     Mlt::Producer *invalidProducer(const QString &id);
236
237     /** @brief Changes the speed of a clip in MLT's playlist.
238      *
239      * It creates a new "framebuffer" producer, which must have its "resource"
240      * property set to "video.mpg?0.6", where "video.mpg" is the path to the
241      * clip and "0.6" is the speed in percentile. The newly created producer
242      * will have its "id" property set to "slowmotion:parentid:speed", where
243      * "parentid" is the id of the original clip in the ClipManager list and
244      * "speed" is the current speed. */
245     int mltChangeClipSpeed(ItemInfo info, ItemInfo speedIndependantInfo, double speed, double oldspeed, int strobe, Mlt::Producer *prod);
246
247     const QList <Mlt::Producer *> producersList();
248     void updatePreviewSettings();
249     void setDropFrames(bool show);
250     QString updateSceneListFps(double current_fps, double new_fps, QString scene);
251 #ifdef Q_WS_MAC
252     void showFrame(Mlt::Frame&);
253 #endif
254     QList <int> checkTrackSequence(int);
255
256 private:
257
258     /** @brief The name of this renderer.
259      *
260      * Useful to identify the renderers by what they do - e.g. background
261      * rendering, workspace monitor, etc. */
262     QString m_name;
263     Mlt::Consumer * m_mltConsumer;
264     Mlt::Producer * m_mltProducer;
265     Mlt::Profile *m_mltProfile;
266     double m_framePosition;
267     double m_fps;
268
269     /** @brief True if we are playing a zone.
270      *
271      * It's determined by the "in" and "out" properties being temporarily
272      * changed. */
273     bool m_isZoneMode;
274     bool m_isLoopMode;
275     GenTime m_loopStart;
276     int m_originalOut;
277
278     /** @brief True when the monitor is in split view. */
279     bool m_isSplitView;
280
281     Mlt::Producer *m_blackClip;
282     QString m_activeProfile;
283
284     QTimer *m_osdTimer;
285
286     /** @brief A human-readable description of this renderer. */
287     int m_winid;
288
289 #ifdef Q_WS_MAC
290     VideoGLWidget *m_glWidget;
291 #endif
292     void closeMlt();
293     void mltCheckLength(Mlt::Tractor *tractor);
294     void mltPasteEffects(Mlt::Producer *source, Mlt::Producer *dest);
295     QMap<QString, QString> mltGetTransitionParamsFromXml(QDomElement xml);
296     QMap<QString, Mlt::Producer *> m_slowmotionProducers;
297     void buildConsumer(const QString profileName);
298     void resetZoneMode();
299     void fillSlowMotionProducers();
300
301 private slots:
302
303     /** @brief Refreshes the monitor display. */
304     void refresh();
305     void slotOsdTimeout();
306     int connectPlaylist();
307     //void initSceneList();
308
309 signals:
310
311     /** @brief The renderer received a reply to a getFileProperties request. */
312     void replyGetFileProperties(const QString &clipId, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool);
313
314     /** @brief The renderer received a reply to a getImage request. */
315     void replyGetImage(const QString &, const QPixmap &);
316
317     /** @brief The renderer stopped, either playing or rendering. */
318     void stopped();
319
320     /** @brief The renderer started playing. */
321     void playing(double);
322
323     /** @brief The renderer started rendering. */
324     void rendering(const GenTime &);
325
326     /** @brief The rendering has finished.
327         @see consumer_frame_show
328         This signal seems to be useless; use renderPosition(int) instead --Granjow */
329     void renderFinished();
330
331     /* @brief The current seek position has been changed by the renderer.
332     void positionChanged(const GenTime &);*/
333
334     /** @brief An error occurred within this renderer. */
335     void error(const QString &, const QString &);
336     void durationChanged(int);
337     void rendererPosition(int);
338     void rendererStopped(int);
339     void removeInvalidClip(const QString &, bool replaceProducer);
340     void refreshDocumentProducers();
341
342     /** @brief A frame's image has to be shown.
343      *
344      * Used in Mac OS X. */
345     void showImageSignal(QImage);
346     /** @brief The renderer refreshed the current frame, but no seeking was done. */
347     void frameUpdated(int);
348
349 public slots:
350
351     /** @brief Starts the consumer. */
352     void start();
353
354     /** @brief Stops the consumer. */
355     void stop();
356     int getLength();
357
358     /** @brief Checks if the file is readable by MLT. */
359     bool isValid(KUrl url);
360
361     /** @brief Requests the file properties for the specified URL.
362      *
363      * Upon return, the result will be emitted via replyGetFileProperties().
364      * Wraps the VEML command of the same name. */
365     void getFileProperties(const QDomElement xml, const QString &clipId, int imageHeight, bool replaceProducer = true);
366
367     void exportFileToFirewire(QString srcFileName, int port, GenTime startTime, GenTime endTime);
368     static char *decodedString(QString str);
369     void mltSavePlaylist();
370     void slotSplitView(bool doit);
371     void slotSwitchFullscreen();
372 };
373
374 #endif