]> git.sesse.net Git - kdenlive/blob - src/mltdevicecapture.cpp
Fix crash when changing project profile
[kdenlive] / src / mltdevicecapture.cpp
1 /***************************************************************************
2                         mltdevicecapture.cpp  -  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 #include "mltdevicecapture.h"
20 #include "kdenlivesettings.h"
21 #include "definitions.h"
22 //#include "recmonitor.h"
23 //#include "renderer.h"
24 #include "blackmagic/devices.h"
25
26 #include <mlt++/Mlt.h>
27
28 #include <KDebug>
29 #include <KStandardDirs>
30 #include <KMessageBox>
31 #include <KLocale>
32 #include <KTemporaryFile>
33
34 #include <QTimer>
35 #include <QDir>
36 #include <QString>
37 #include <QApplication>
38 #include <QThread>
39
40 #include <cstdlib>
41 #include <cstdarg>
42
43 #include <QDebug>
44
45
46
47 static void consumer_gl_frame_show(mlt_consumer, MltDeviceCapture * self, mlt_frame frame_ptr)
48 {
49     // detect if the producer has finished playing. Is there a better way to do it?
50     Mlt::Frame frame(frame_ptr);
51     self->showFrame(frame);
52 }
53
54 static void rec_consumer_frame_show(mlt_consumer, MltDeviceCapture * self, mlt_frame frame_ptr)
55 {
56     Mlt::Frame frame(frame_ptr);
57     if (!frame.is_valid()) return;
58     self->gotCapturedFrame(frame);
59 }
60
61 static void rec_consumer_frame_preview(mlt_consumer, MltDeviceCapture * self, mlt_frame frame_ptr)
62 {
63     Mlt::Frame frame(frame_ptr);
64     if (!frame.is_valid()) return;
65     if (self->sendFrameForAnalysis && frame_ptr->convert_image) {
66         self->emitFrameUpdated(frame);
67     }
68     if (self->doCapture > 0) {
69         self->doCapture --;
70         if (self->doCapture == 0) self->saveFrame(frame);
71     }
72
73 /*    if (self->analyseAudio) {
74         self->showAudio(frame);
75     }
76     if (frame.get_double("_speed") == 0.0) {
77         self->emitConsumerStopped();
78     } else if (frame.get_double("_speed") < 0.0 && mlt_frame_get_position(frame_ptr) <= 0) {
79         self->pause();
80         self->emitConsumerStopped();
81     }*/
82 }
83
84
85 MltDeviceCapture::MltDeviceCapture(QString profile, VideoPreviewContainer *surface, QWidget *parent) :
86     AbstractRender(parent),
87     doCapture(0),
88     sendFrameForAnalysis(false),
89     m_mltConsumer(NULL),
90     m_mltProducer(NULL),
91     m_mltProfile(NULL),
92     m_droppedFrames(0),
93     m_livePreview(true),
94     m_captureDisplayWidget(surface),
95     m_winid((int) surface->winId()),
96     m_analyseAudio(KdenliveSettings::monitor_audio())
97 {
98     if (profile.isEmpty()) profile = KdenliveSettings::current_profile();
99     buildConsumer(profile);
100 }
101
102 MltDeviceCapture::~MltDeviceCapture()
103 {
104     if (m_mltConsumer) delete m_mltConsumer;
105     if (m_mltProducer) delete m_mltProducer;
106     if (m_mltProfile) delete m_mltProfile;
107 }
108
109 void MltDeviceCapture::buildConsumer(const QString &profileName)
110 {
111     if (!profileName.isEmpty()) m_activeProfile = profileName;
112
113     if (m_mltProfile) delete m_mltProfile;
114
115     char *tmp = qstrdup(m_activeProfile.toUtf8().constData());
116     setenv("MLT_PROFILE", tmp, 1);
117     m_mltProfile = new Mlt::Profile(tmp);
118     m_mltProfile->get_profile()->is_explicit = 1;
119     delete[] tmp;
120
121     QString videoDriver = KdenliveSettings::videodrivername();
122     if (!videoDriver.isEmpty()) {
123         if (videoDriver == "x11_noaccel") {
124             setenv("SDL_VIDEO_YUV_HWACCEL", "0", 1);
125             videoDriver = "x11";
126         } else {
127             unsetenv("SDL_VIDEO_YUV_HWACCEL");
128         }
129     }
130     setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 1);
131
132     if (m_winid == 0) {
133         // OpenGL monitor
134         m_mltConsumer = new Mlt::Consumer(*m_mltProfile, "sdl_audio");
135         m_mltConsumer->set("preview_off", 1);
136         m_mltConsumer->set("preview_format", mlt_image_rgb24a);
137         m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) consumer_gl_frame_show);
138     } else {
139         m_mltConsumer = new Mlt::Consumer(*m_mltProfile, "sdl_preview");
140         m_mltConsumer->set("window_id", m_winid);
141     }
142     m_mltConsumer->set("resize", 1);
143     //m_mltConsumer->set("terminate_on_pause", 1);
144     m_mltConsumer->set("window_background", KdenliveSettings::window_background().name().toUtf8().constData());
145     m_mltConsumer->set("rescale", "nearest");
146     
147     m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) rec_consumer_frame_preview);
148
149     QString audioDevice = KdenliveSettings::audiodevicename();
150     if (!audioDevice.isEmpty())
151         m_mltConsumer->set("audio_device", audioDevice.toUtf8().constData());
152
153     if (!videoDriver.isEmpty())
154         m_mltConsumer->set("video_driver", videoDriver.toUtf8().constData());
155
156     QString audioDriver = KdenliveSettings::audiodrivername();
157
158     if (!audioDriver.isEmpty())
159         m_mltConsumer->set("audio_driver", audioDriver.toUtf8().constData());
160
161     //m_mltConsumer->set("progressive", 1);
162     //m_mltConsumer->set("buffer", 1);
163     //m_mltConsumer->set("real_time", 0);
164 }
165
166 void MltDeviceCapture::stop()
167 {
168     bool isPlaylist = false;
169     m_captureDisplayWidget->stop();
170     if (m_mltConsumer) {
171         m_mltConsumer->set("refresh", 0);
172         m_mltConsumer->stop();
173         //if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
174     }
175     if (m_mltProducer) {
176         QList <Mlt::Producer *> prods;
177         Mlt::Service service(m_mltProducer->parent().get_service());
178         mlt_service_lock(service.get_service());
179         if (service.type() == tractor_type) {
180             isPlaylist = true;
181             Mlt::Tractor tractor(service);
182             mlt_tractor_close(tractor.get_tractor());
183             Mlt::Field *field = tractor.field();
184             mlt_service nextservice = mlt_service_get_producer(service.get_service());
185             mlt_service nextservicetodisconnect;
186             mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
187             QString mlt_type = mlt_properties_get(properties, "mlt_type");
188             QString resource = mlt_properties_get(properties, "mlt_service");
189             // Delete all transitions
190             while (mlt_type == "transition") {
191                 nextservicetodisconnect = nextservice;
192                 nextservice = mlt_service_producer(nextservice);
193                 mlt_field_disconnect_service(field->get_field(), nextservicetodisconnect);
194                 if (nextservice == NULL) break;
195                 properties = MLT_SERVICE_PROPERTIES(nextservice);
196                 mlt_type = mlt_properties_get(properties, "mlt_type");
197                 resource = mlt_properties_get(properties, "mlt_service");
198             }
199             for (int trackNb = tractor.count() - 1; trackNb >= 0; --trackNb) {
200                 Mlt::Producer trackProducer(tractor.track(trackNb));
201                 Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
202                 if (trackPlaylist.type() == playlist_type) {
203                     for (int i = 0; i < trackPlaylist.count();i++) {
204                         // We need to manually decrease the ref count and close the producer, otherwise
205                         // the video4linux device stays open, seems like a bug in MLT that is not cleaning properly
206                         mlt_properties props = MLT_PRODUCER_PROPERTIES(trackPlaylist.get_clip(i)->get_parent());
207                         while (mlt_properties_ref_count(props) > 0) mlt_properties_dec_ref(props);
208                         if (trackPlaylist.get_clip(i)) mlt_producer_close(trackPlaylist.get_clip(i)->get_parent());
209                     }
210                     mlt_playlist_close(trackPlaylist.get_playlist());
211                 }
212             }
213             delete field;
214             field = NULL;
215         }
216         mlt_service_unlock(service.get_service());
217         delete m_mltProducer;
218         m_mltProducer = NULL;
219     }
220     // For some reason, the consumer seems to be deleted by previous stuff when in playlist mode
221     if (!isPlaylist) delete m_mltConsumer;
222     m_mltConsumer = NULL;
223 }
224
225
226 void MltDeviceCapture::doRefresh()
227 {
228     if (m_mltConsumer) m_mltConsumer->set("refresh", 1);
229 }
230
231
232 void MltDeviceCapture::emitFrameUpdated(Mlt::Frame& frame)
233 {
234     mlt_image_format format = mlt_image_rgb24a;
235     int width = 0;
236     int height = 0;
237     const uchar* image = frame.get_image(format, width, height);
238     QImage qimage(width, height, QImage::Format_ARGB32);
239     memcpy(qimage.bits(), image, width * height * 4);
240     emit frameUpdated(qimage.rgbSwapped());
241 }
242
243 void MltDeviceCapture::showFrame(Mlt::Frame& frame)
244 {
245     mlt_image_format format = mlt_image_rgb24a;
246     int width = 0;
247     int height = 0;
248     const uchar* image = frame.get_image(format, width, height);
249     QImage qimage(width, height, QImage::Format_ARGB32_Premultiplied);
250     memcpy(qimage.scanLine(0), image, width * height * 4);
251     emit showImageSignal(qimage);
252     if (m_analyseAudio) showAudio(frame);
253     if (sendFrameForAnalysis && frame.get_frame()->convert_image) {
254         emit frameUpdated(qimage.rgbSwapped());
255     }
256 }
257
258 void MltDeviceCapture::showAudio(Mlt::Frame& frame)
259 {
260     if (!frame.is_valid() || frame.get_int("test_audio") != 0) {
261         return;
262     }
263     mlt_audio_format audio_format = mlt_audio_s16;
264     int freq = 0;
265     int num_channels = 0;
266     int samples = 0;
267     int16_t* data = (int16_t*)frame.get_audio(audio_format, freq, num_channels, samples);
268
269     if (!data) {
270         return;
271     }
272
273     // Data format: [ c00 c10 c01 c11 c02 c12 c03 c13 ... c0{samples-1} c1{samples-1} for 2 channels.
274     // So the vector is of size samples*channels.
275     QVector<int16_t> sampleVector(samples*num_channels);
276     memcpy(sampleVector.data(), data, samples*num_channels*sizeof(int16_t));
277
278     if (samples > 0) {
279         emit audioSamplesSignal(sampleVector, freq, num_channels, samples);
280     }
281 }
282
283 bool MltDeviceCapture::slotStartPreview(const QString &producer, bool xmlFormat)
284 {
285     if (m_mltConsumer == NULL) buildConsumer();
286     char *tmp = qstrdup(producer.toUtf8().constData());
287     if (xmlFormat) m_mltProducer = new Mlt::Producer(*m_mltProfile, "xml-string", tmp);
288     else m_mltProducer = new Mlt::Producer(*m_mltProfile, tmp);
289     delete[] tmp;
290
291     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) {
292         kDebug()<<"//// ERROR CREATRING PROD";
293         return false;
294     }
295     m_mltConsumer->connect(*m_mltProducer);
296     if (m_mltConsumer->start() == -1) {
297         delete m_mltConsumer;
298         m_mltConsumer = NULL;
299         return 0;
300     }
301     return 1;
302 }
303
304 void MltDeviceCapture::gotCapturedFrame(Mlt::Frame& frame)
305 {
306     if (m_mltProducer) {
307         int dropped = m_mltProducer->get_int("dropped");
308         if (dropped != m_droppedFrames) {
309             m_droppedFrames = dropped;
310             emit droppedFrames(m_droppedFrames);
311         }
312     }
313     if (!m_livePreview) return;
314     mlt_image_format format = mlt_image_rgb24a;
315     int width = 0;
316     int height = 0;
317     const uchar* image = frame.get_image(format, width, height);
318     QImage qimage(width, height, QImage::Format_ARGB32);
319     memcpy(qimage.bits(), image, width * height * 4);
320     m_captureDisplayWidget->setImage(qimage.rgbSwapped());
321 }
322
323 void MltDeviceCapture::saveFrame(Mlt::Frame& frame)
324 {
325     mlt_image_format format = mlt_image_rgb24a;
326     int width = 0;
327     int height = 0;
328     const uchar* image = frame.get_image(format, width, height);
329     QImage qimage(width, height, QImage::Format_ARGB32);
330     memcpy(qimage.bits(), image, width * height * 4);
331
332     // Re-enable overlay
333     Mlt::Service service(m_mltProducer->parent().get_service());
334     Mlt::Tractor tractor(service);
335     Mlt::Producer trackProducer(tractor.track(0));
336     trackProducer.set("hide", 0);
337     
338     qimage.rgbSwapped().save(m_capturePath);
339     emit frameSaved(m_capturePath);
340     m_capturePath.clear();
341 }
342
343 void MltDeviceCapture::captureFrame(const QString &path)
344 {
345     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) return;
346
347     // Hide overlay track before doing the capture
348     Mlt::Service service(m_mltProducer->parent().get_service());
349     Mlt::Tractor tractor(service);
350     Mlt::Producer trackProducer(tractor.track(0));
351     mlt_service_lock(service.get_service());
352     trackProducer.set("hide", 1);
353     m_mltConsumer->purge();
354     mlt_service_unlock(service.get_service());
355     m_capturePath = path;
356     // Wait for 5 frames before capture to make sure overlay is gone
357     doCapture = 5;
358 }
359
360 bool MltDeviceCapture::slotStartCapture(const QString &params, const QString &path, const QString &playlist, bool livePreview, bool xmlPlaylist)
361 {
362     stop();
363     m_livePreview = livePreview;
364     m_droppedFrames = 0;
365     if (m_mltProfile) delete m_mltProfile;
366     char *tmp = qstrdup(m_activeProfile.toUtf8().constData());
367     m_mltProfile = new Mlt::Profile(tmp);
368     delete[] tmp;
369     m_mltProfile->get_profile()->is_explicit = 1;
370     kDebug()<<"-- CREATING CAP: "<<params<<", PATH: "<<path;
371     tmp = qstrdup(QString("avformat:" + path).toUtf8().constData());
372     m_mltConsumer = new Mlt::Consumer(*m_mltProfile, tmp);
373     m_mltConsumer->set("terminate_on_pause", 1);
374     delete[] tmp;
375
376     QStringList paramList = params.split(" ", QString::SkipEmptyParts);
377     char *tmp2;
378     for (int i = 0; i < paramList.count(); i++) {
379         tmp = qstrdup(paramList.at(i).section("=", 0, 0).toUtf8().constData());
380         QString value = paramList.at(i).section("=", 1, 1);
381         if (value == "%threads") value = QString::number(QThread::idealThreadCount());
382         tmp2 = qstrdup(value.toUtf8().constData());
383         m_mltConsumer->set(tmp, tmp2);
384         delete[] tmp;
385         delete[] tmp2;
386     }
387     
388     if (m_mltConsumer == NULL || !m_mltConsumer->is_valid()) {
389         if (m_mltConsumer) {
390             delete m_mltConsumer;
391             m_mltConsumer = NULL;
392         }
393         return false;
394     }
395     
396     // FIXME: the event object returned by the listen gets leaked...
397     m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) rec_consumer_frame_show);
398     tmp = qstrdup(playlist.toUtf8().constData());
399     if (xmlPlaylist) {
400         // create an xml producer
401         m_mltProducer = new Mlt::Producer(*m_mltProfile, "xml-string", tmp);
402     }
403     else {
404         // create a producer based on mltproducer parameter
405         m_mltProducer = new Mlt::Producer(*m_mltProfile, tmp);
406     }
407     delete[] tmp;
408
409     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) {
410         kDebug()<<"//// ERROR CREATRING PROD";
411         return false;
412     }
413
414     m_mltConsumer->connect(*m_mltProducer);
415     if (m_mltConsumer->start() == -1) {
416         delete m_mltConsumer;
417         m_mltConsumer = NULL;
418         return 0;
419     }
420     m_captureDisplayWidget->start();
421     return 1;
422 }
423
424
425 void MltDeviceCapture::setOverlay(const QString &path)
426 {
427     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) return;
428     Mlt::Producer parentProd(m_mltProducer->parent());
429     if (parentProd.get_producer() == NULL) {
430         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
431         return;
432     }
433
434     Mlt::Service service(parentProd.get_service());
435     if (service.type() != tractor_type) {
436         kWarning() << "// TRACTOR PROBLEM";
437         return;
438     }
439     Mlt::Tractor tractor(service);
440     if ( tractor.count() < 2) {
441         kWarning() << "// TRACTOR PROBLEM";
442         return;
443     }
444     mlt_service_lock(service.get_service());
445     Mlt::Producer trackProducer(tractor.track(0));
446     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
447
448     trackPlaylist.remove(0);
449     if (path.isEmpty()) {
450         mlt_service_unlock(service.get_service());
451         return;
452     }
453
454     // Add overlay clip
455     char *tmp = qstrdup(path.toUtf8().constData());
456     Mlt::Producer *clip = new Mlt::Producer (*m_mltProfile, "loader", tmp);
457     delete[] tmp;
458     clip->set_in_and_out(0, 99999);
459     trackPlaylist.insert_at(0, clip, 1);
460
461     // Add transition
462     mlt_service serv = m_mltProducer->parent().get_service();
463     mlt_service nextservice = mlt_service_get_producer(serv);
464     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
465     QString mlt_type = mlt_properties_get(properties, "mlt_type");
466     if (mlt_type != "transition") {
467         // transition does not exist, add it
468         Mlt::Field *field = tractor.field();
469         Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "composite");
470         transition->set_in_and_out(0, 0);
471         transition->set("geometry", "0,0:100%x100%:70");
472         transition->set("fill", 1);
473         transition->set("operator", "and");
474         transition->set("a_track", 0);
475         transition->set("b_track", 1);
476         field->plant_transition(*transition, 0, 1);
477     }
478     mlt_service_unlock(service.get_service());
479     //delete clip;
480 }
481
482 void MltDeviceCapture::setOverlayEffect(const QString tag, QStringList parameters)
483 {
484     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) return;
485     Mlt::Service service(m_mltProducer->parent().get_service());
486     Mlt::Tractor tractor(service);
487     Mlt::Producer trackProducer(tractor.track(0));
488     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
489     Mlt::Service trackService(trackProducer.get_service());
490
491     mlt_service_lock(service.get_service());
492
493     // delete previous effects
494     Mlt::Filter *filter;
495     filter = trackService.filter(0);
496     if (filter && !tag.isEmpty()) {
497         QString currentService = filter->get("mlt_service");
498         if (currentService == tag) {
499             // Effect is already there
500             mlt_service_unlock(service.get_service());
501             return;
502         }
503     }
504     while (filter) {
505         trackService.detach(*filter);
506         delete filter;
507         filter = trackService.filter(0);
508     }
509     
510     if (tag.isEmpty()) {
511         mlt_service_unlock(service.get_service());
512         return;
513     }
514     
515     char *tmp = qstrdup(tag.toUtf8().constData());
516     filter = new Mlt::Filter(*m_mltProfile, tmp);
517     delete[] tmp;
518     if (filter && filter->is_valid()) {
519         for (int j = 0; j < parameters.count(); j++) {
520             filter->set(parameters.at(j).section("=", 0, 0).toUtf8().constData(), parameters.at(j).section("=", 1, 1).toUtf8().constData());
521         }
522         trackService.attach(*filter);
523     }
524     mlt_service_unlock(service.get_service());
525 }
526
527 void MltDeviceCapture::mirror(bool activate)
528 {
529     if (m_mltProducer == NULL || !m_mltProducer->is_valid()) return;
530     Mlt::Service service(m_mltProducer->parent().get_service());
531     Mlt::Tractor tractor(service);
532     Mlt::Producer trackProducer(tractor.track(1));
533     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
534     Mlt::Service trackService(trackProducer.get_service());
535
536     mlt_service_lock(service.get_service());
537
538     // delete previous effects
539     Mlt::Filter *filter;
540     filter = trackService.filter(0);
541     while (filter) {
542         trackService.detach(*filter);
543         delete filter;
544         filter = trackService.filter(0);
545     }
546
547     if (!activate) {
548         mlt_service_unlock(service.get_service());
549         return;
550     }
551
552     filter = new Mlt::Filter(*m_mltProfile, "mirror");
553     if (filter && filter->is_valid()) {
554         filter->set("mirror", "flip");
555         trackService.attach(*filter);
556     }
557     mlt_service_unlock(service.get_service());
558 }
559