]> git.sesse.net Git - kdenlive/blob - src/mltdevicecapture.h
Merge branch 'master' of git://anongit.kde.org/kdenlive
[kdenlive] / src / mltdevicecapture.h
1 /***************************************************************************
2                          mltdevicecapture.h  -  description
3                             -------------------
4    begin                : Sun May 21 2011
5    copyright            : (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)
6
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 MltDeviceCapture
20  * @brief Interface for MLT capture.
21  */
22
23 #ifndef MLTDEVICECAPTURE_H
24 #define MLTDEVICECAPTURE_H
25
26 #include "gentime.h"
27 #include "definitions.h"
28 #include "abstractmonitor.h"
29
30 #include <mlt/framework/mlt_types.h>
31
32 #include <QtConcurrentRun>
33
34 namespace Mlt
35 {
36 class Consumer;
37 class Frame;
38 class Event;
39 class Producer;
40 class Profile;
41 };
42
43 class MltDeviceCapture: public AbstractRender
44 {
45 Q_OBJECT public:
46
47     enum FailStates { OK = 0,
48                       APP_NOEXIST
49                     };
50     /** @brief Build a MLT Renderer
51      *  @param winid The parent widget identifier (required for SDL display). Set to 0 for OpenGL rendering
52      *  @param profile The MLT profile used for the capture (default one will be used if empty). */
53     MltDeviceCapture(QString profile, VideoPreviewContainer *surface, QWidget *parent = 0);
54
55     /** @brief Destroy the MLT Renderer. */
56     ~MltDeviceCapture();
57
58     int doCapture;
59
60     /** @brief This property is used to decide if the renderer should convert it's frames to QImage for use in other Kdenlive widgets. */
61     bool sendFrameForAnalysis;
62
63     /** @brief Someone needs us to send again a frame. */
64     void sendFrameUpdate() {};
65     
66     void emitFrameUpdated(Mlt::Frame&);
67     void emitFrameNumber(double position);
68     void emitConsumerStopped();
69     void showFrame(Mlt::Frame&);
70     void showAudio(Mlt::Frame&);
71
72     void saveFrame(Mlt::Frame& frame);
73
74     /** @brief Starts the MLT Video4Linux process.
75      * @param surface The widget onto which the frame should be painted
76      */
77     bool slotStartCapture(const QString &params, const QString &path, const QString &playlist, bool livePreview, bool xmlPlaylist = true);
78     bool slotStartPreview(const QString &producer, bool xmlFormat = false);
79     /** @brief A frame arrived from the MLT Video4Linux process. */
80     void gotCapturedFrame(Mlt::Frame& frame);
81     /** @brief Save current frame to file. */
82     void captureFrame(const QString &path);
83     void doRefresh();
84     /** @brief This will add the video clip from path and add it in the overlay track. */
85     void setOverlay(const QString &path);
86
87     /** @brief This will add an MLT video effect to the overlay track. */
88     void setOverlayEffect(const QString &tag, QStringList parameters);
89
90     /** @brief This will add a horizontal flip effect, easier to work when filming yourself. */
91     void mirror(bool activate);
92
93     /** @brief This property is used to decide if the renderer should send audio data for monitoring. */
94     bool analyseAudio;
95     
96     /** @brief True if we are processing an image (yuv > rgb) when recording. */
97     bool processingImage;
98
99 private:
100     Mlt::Consumer * m_mltConsumer;
101     Mlt::Producer * m_mltProducer;
102     Mlt::Profile *m_mltProfile;
103     Mlt::Event *m_showFrameEvent;
104     QString m_activeProfile;
105     int m_droppedFrames;
106     /** @brief When true, images will be displayed on monitor while capturing. */
107     bool m_livePreview;
108     /** @brief Count captured frames, used to display only one in ten images while capturing. */
109     int m_frameCount;
110
111     /** @brief The surface onto which the captured frames should be painted. */
112     VideoPreviewContainer *m_captureDisplayWidget;
113
114     /** @brief A human-readable description of this renderer. */
115     int m_winid;
116
117     void uyvy2rgb(unsigned char *yuv_buffer, int width, int height);
118
119     QString m_capturePath;
120     
121     QTimer m_droppedFramesTimer;
122
123     /** @brief Build the MLT Consumer object with initial settings.
124      *  @param profileName The MLT profile to use for the consumer */
125     void buildConsumer(const QString &profileName = QString());
126
127
128 private slots:
129     void slotPreparePreview();
130     void slotAllowPreview();
131     /** @brief When capturing, check every second for dropped frames. */
132     void slotCheckDroppedFrames();
133   
134 signals:
135     /** @brief A frame's image has to be shown.
136      *
137      * Used in Mac OS X. */
138     void showImageSignal(QImage);
139
140     void frameSaved(const QString &);
141     
142     void droppedFrames(int);
143     
144     void unblockPreview();
145     void imageReady(QImage);
146
147
148 public slots:
149
150     /** @brief Stops the consumer. */
151     void stop();
152 };
153
154 #endif