]> git.sesse.net Git - kdenlive/blob - src/renderer.h
Progress on track effects
[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 emitFrameUpdated(Mlt::Frame&);
165     void emitFrameNumber(double position);
166     void emitConsumerStopped();
167
168     /** @brief Returns the aspect ratio of the consumer. */
169     double consumerRatio() const;
170
171     void doRefresh();
172
173     /** @brief Saves current producer frame as an image. */
174     void exportCurrentFrame(KUrl url, bool notify);
175
176     /** @brief Turns on or off on screen display. */
177     void refreshDisplay();
178     int resetProfile(const QString profileName);
179     double fps() const;
180     int renderWidth() const;
181     int renderHeight() const;
182
183     /** @brief Returns display aspect ratio. */
184     double dar() const;
185
186     /*
187      * Playlist manipulation.
188      */
189     Mlt::Producer *checkSlowMotionProducer(Mlt::Producer *prod, QDomElement element);
190     int mltInsertClip(ItemInfo info, QDomElement element, Mlt::Producer *prod, bool overwrite = false, bool push = false);
191     bool mltUpdateClip(ItemInfo info, QDomElement element, Mlt::Producer *prod);
192     void mltCutClip(int track, GenTime position);
193     void mltInsertSpace(QMap <int, int> trackClipStartList, QMap <int, int> trackTransitionStartList, int track, const GenTime duration, const GenTime timeOffset);
194     int mltGetSpaceLength(const GenTime pos, int track, bool fromBlankStart);
195     int mltTrackDuration(int track);
196     bool mltResizeClipEnd(ItemInfo info, GenTime clipDuration);
197     bool mltResizeClipStart(ItemInfo info, GenTime diff);
198     bool mltResizeClipCrop(ItemInfo info, GenTime diff);
199     bool mltMoveClip(int startTrack, int endTrack, GenTime pos, GenTime moveStart, Mlt::Producer *prod, bool overwrite = false, bool insert = false);
200     bool mltMoveClip(int startTrack, int endTrack, int pos, int moveStart, Mlt::Producer *prod, bool overwrite = false, bool insert = false);
201     bool mltRemoveClip(int track, GenTime position);
202
203     /** @brief Deletes an effect from a clip in MLT's playlist. */
204     bool mltRemoveEffect(int track, GenTime position, QString index, bool updateIndex, bool doRefresh = true);
205     bool mltRemoveTrackEffect(int track, QString index, bool updateIndex);
206
207     /** @brief Adds an effect to a clip in MLT's playlist. */
208     bool mltAddEffect(int track, GenTime position, EffectsParameterList params, bool doRefresh = true);
209     bool mltAddEffect(Mlt::Service service, EffectsParameterList params, int duration, bool doRefresh);
210     bool mltAddTrackEffect(int track, EffectsParameterList params);
211
212     /** @brief Edits an effect parameters in MLT's playlist. */
213     bool mltEditEffect(int track, GenTime position, EffectsParameterList params);
214     bool mltEditTrackEffect(int track, EffectsParameterList params);
215
216     /** @brief Updates the "kdenlive_ix" (index) value of an effect. */
217     void mltUpdateEffectPosition(int track, GenTime position, int oldPos, int newPos);
218
219     /** @brief Changes the order of effects in MLT's playlist.
220      *
221      * It switches effects from oldPos and newPos, updating the "kdenlive_ix"
222      * (index) value. */
223     void mltMoveEffect(int track, GenTime position, int oldPos, int newPos);
224     void mltMoveTrackEffect(int track, int oldPos, int newPos);
225
226     /** @brief Enables/disables audio/video in a track. */
227     void mltChangeTrackState(int track, bool mute, bool blind);
228     bool mltMoveTransition(QString type, int startTrack,  int newTrack, int newTransitionTrack, GenTime oldIn, GenTime oldOut, GenTime newIn, GenTime newOut);
229     bool mltAddTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool refresh = true);
230     void mltDeleteTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool refresh = true);
231     void mltUpdateTransition(QString oldTag, QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool force = false);
232     void mltUpdateTransitionParams(QString type, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml);
233     void mltAddClipTransparency(ItemInfo info, int transitiontrack, int id);
234     void mltMoveTransparency(int startTime, int endTime, int startTrack, int endTrack, int id);
235     void mltDeleteTransparency(int pos, int track, int id);
236     void mltResizeTransparency(int oldStart, int newStart, int newEnd, int track, int id);
237     void mltInsertTrack(int ix, bool videoTrack);
238     void mltDeleteTrack(int ix);
239     bool mltUpdateClipProducer(int track, int pos, Mlt::Producer *prod);
240     void mltPlantTransition(Mlt::Field *field, Mlt::Transition &tr, int a_track, int b_track);
241     Mlt::Producer *invalidProducer(const QString &id);
242
243     /** @brief Changes the speed of a clip in MLT's playlist.
244      *
245      * It creates a new "framebuffer" producer, which must have its "resource"
246      * property set to "video.mpg?0.6", where "video.mpg" is the path to the
247      * clip and "0.6" is the speed in percentile. The newly created producer
248      * will have its "id" property set to "slowmotion:parentid:speed", where
249      * "parentid" is the id of the original clip in the ClipManager list and
250      * "speed" is the current speed. */
251     int mltChangeClipSpeed(ItemInfo info, ItemInfo speedIndependantInfo, double speed, double oldspeed, int strobe, Mlt::Producer *prod);
252
253     const QList <Mlt::Producer *> producersList();
254     void updatePreviewSettings();
255     void setDropFrames(bool show);
256     QString updateSceneListFps(double current_fps, double new_fps, QString scene);
257 #ifdef Q_WS_MAC
258     void showFrame(Mlt::Frame&);
259 #endif
260     QList <int> checkTrackSequence(int);
261
262 private:
263
264     /** @brief The name of this renderer.
265      *
266      * Useful to identify the renderers by what they do - e.g. background
267      * rendering, workspace monitor, etc. */
268     QString m_name;
269     Mlt::Consumer * m_mltConsumer;
270     Mlt::Producer * m_mltProducer;
271     Mlt::Profile *m_mltProfile;
272     double m_framePosition;
273     double m_fps;
274
275     /** @brief True if we are playing a zone.
276      *
277      * It's determined by the "in" and "out" properties being temporarily
278      * changed. */
279     bool m_isZoneMode;
280     bool m_isLoopMode;
281     GenTime m_loopStart;
282     int m_originalOut;
283
284     /** @brief True when the monitor is in split view. */
285     bool m_isSplitView;
286
287     Mlt::Producer *m_blackClip;
288     QString m_activeProfile;
289
290     QTimer *m_osdTimer;
291
292     /** @brief A human-readable description of this renderer. */
293     int m_winid;
294
295 #ifdef Q_WS_MAC
296     VideoGLWidget *m_glWidget;
297 #endif
298     void closeMlt();
299     void mltCheckLength(Mlt::Tractor *tractor);
300     void mltPasteEffects(Mlt::Producer *source, Mlt::Producer *dest);
301     QMap<QString, QString> mltGetTransitionParamsFromXml(QDomElement xml);
302     QMap<QString, Mlt::Producer *> m_slowmotionProducers;
303     void buildConsumer(const QString profileName);
304     void resetZoneMode();
305     void fillSlowMotionProducers();
306
307 private slots:
308
309     /** @brief Refreshes the monitor display. */
310     void refresh();
311     void slotOsdTimeout();
312     int connectPlaylist();
313     //void initSceneList();
314
315 signals:
316
317     /** @brief The renderer received a reply to a getFileProperties request. */
318     void replyGetFileProperties(const QString &clipId, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool);
319
320     /** @brief The renderer received a reply to a getImage request. */
321     void replyGetImage(const QString &, const QPixmap &);
322
323     /** @brief The renderer stopped, either playing or rendering. */
324     void stopped();
325
326     /** @brief The renderer started playing. */
327     void playing(double);
328
329     /** @brief The renderer started rendering. */
330     void rendering(const GenTime &);
331
332     /** @brief The rendering has finished.
333         @see consumer_frame_show
334         This signal seems to be useless; use renderPosition(int) instead --Granjow */
335     void renderFinished();
336
337     /* @brief The current seek position has been changed by the renderer.
338     void positionChanged(const GenTime &);*/
339
340     /** @brief An error occurred within this renderer. */
341     void error(const QString &, const QString &);
342     void durationChanged(int);
343     void rendererPosition(int);
344     void rendererStopped(int);
345     void removeInvalidClip(const QString &, bool replaceProducer);
346     void refreshDocumentProducers();
347
348     /** @brief A frame's image has to be shown.
349      *
350      * Used in Mac OS X. */
351     void showImageSignal(QImage);
352     /** @brief The renderer refreshed the current frame, but no seeking was done. */
353     void frameUpdated(QImage);
354
355 public slots:
356
357     /** @brief Starts the consumer. */
358     void start();
359
360     /** @brief Stops the consumer. */
361     void stop();
362     int getLength();
363
364     /** @brief Checks if the file is readable by MLT. */
365     bool isValid(KUrl url);
366
367     /** @brief Requests the file properties for the specified URL.
368      *
369      * Upon return, the result will be emitted via replyGetFileProperties().
370      * Wraps the VEML command of the same name. */
371     void getFileProperties(const QDomElement xml, const QString &clipId, int imageHeight, bool replaceProducer = true);
372
373     void exportFileToFirewire(QString srcFileName, int port, GenTime startTime, GenTime endTime);
374     static char *decodedString(QString str);
375     void mltSavePlaylist();
376     void slotSplitView(bool doit);
377     void slotSwitchFullscreen();
378 };
379
380 #endif