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