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