]> git.sesse.net Git - kdenlive/blob - src/renderer.cpp
Merging of scopes manager by Granjow (final merge)
[kdenlive] / src / renderer.cpp
1 /***************************************************************************
2                         krender.cpp  -  description
3                            -------------------
4   begin                : Fri Nov 22 2002
5   copyright            : (C) 2002 by Jason Wood
6   email                : jasonwood@blueyonder.co.uk
7   copyright            : (C) 2005 Lucio Flavio Correa
8   email                : lucio.correa@gmail.com
9   copyright            : (C) Marco Gittler
10   email                : g.marco@freenet.de
11   copyright            : (C) 2006 Jean-Baptiste Mardelle
12   email                : jb@kdenlive.org
13
14 ***************************************************************************/
15
16 /***************************************************************************
17  *                                                                         *
18  *   This program is free software; you can redistribute it and/or modify  *
19  *   it under the terms of the GNU General Public License as published by  *
20  *   the Free Software Foundation; either version 2 of the License, or     *
21  *   (at your option) any later version.                                   *
22  *                                                                         *
23  ***************************************************************************/
24
25
26 #include "renderer.h"
27 #include "kdenlivesettings.h"
28 #include "kthumb.h"
29 #include "definitions.h"
30 #include "slideshowclip.h"
31 #include "profilesdialog.h"
32
33 #ifdef USE_BLACKMAGIC
34 #include "blackmagic/devices.h"
35 #endif
36
37 #include <mlt++/Mlt.h>
38
39 #include <KDebug>
40 #include <KStandardDirs>
41 #include <KMessageBox>
42 #include <KLocale>
43 #include <KTemporaryFile>
44
45 #include <QTimer>
46 #include <QDir>
47 #include <QString>
48 #include <QApplication>
49 #include <QtConcurrentRun>
50
51 #include <cstdlib>
52 #include <cstdarg>
53
54 #include <QDebug>
55
56
57 static void kdenlive_callback(void* /*ptr*/, int level, const char* fmt, va_list vl)
58 {
59 //     kDebug() << "log level" << level << QString().vsprintf(fmt, vl).simplified();
60     if (level > MLT_LOG_ERROR) return;
61     QString error;
62     QApplication::postEvent(qApp->activeWindow(), new MltErrorEvent(error.vsprintf(fmt, vl).simplified()));
63     va_end(vl);
64 }
65
66
67 static void consumer_frame_show(mlt_consumer, Render * self, mlt_frame frame_ptr)
68 {
69     // detect if the producer has finished playing. Is there a better way to do it?
70     self->emitFrameNumber();
71     Mlt::Frame frame(frame_ptr);
72     if (!frame.is_valid()) return;
73     if (self->sendFrameForAnalysis && frame_ptr->convert_image) {
74         self->emitFrameUpdated(frame);
75     }
76     if (self->analyseAudio) {
77         self->showAudio(frame);
78     }
79     if (frame.get_double("_speed") < 0.0 && mlt_frame_get_position(frame_ptr) <= 0) {
80         self->pause();
81         self->emitConsumerStopped();
82     }
83 }
84
85
86 static void consumer_paused(mlt_consumer, Render * self, mlt_frame /*frame_ptr*/)
87 {
88     // detect if the producer has finished playing. Is there a better way to do it?
89     self->emitConsumerStopped();
90 }
91
92
93 static void consumer_gl_frame_show(mlt_consumer, Render * self, mlt_frame frame_ptr)
94 {
95     // detect if the producer has finished playing. Is there a better way to do it?
96     Mlt::Frame frame(frame_ptr);
97     self->showFrame(frame);
98     if (frame.get_double("_speed") == 0.0) {
99         self->emitConsumerStopped();
100     } else if (frame.get_double("_speed") < 0.0 && mlt_frame_get_position(frame_ptr) <= 0) {
101         self->pause();
102         self->emitConsumerStopped();
103     }
104 }
105
106 Render::Render(const QString & rendererName, int winid, QString profile, QWidget *parent) :
107     AbstractRender(rendererName, parent),
108     m_name(rendererName),
109     m_mltConsumer(NULL),
110     m_mltProducer(NULL),
111     m_mltProfile(NULL),
112     m_showFrameEvent(NULL),
113     m_pauseEvent(NULL),
114     m_externalConsumer(false),
115     m_isZoneMode(false),
116     m_isLoopMode(false),
117     m_isSplitView(false),
118     m_blackClip(NULL),
119     m_winid(winid)
120 {
121     analyseAudio = KdenliveSettings::monitor_audio();
122     if (profile.isEmpty()) profile = KdenliveSettings::current_profile();
123     buildConsumer(profile);
124     m_mltProducer = m_blackClip->cut(0, 1);
125     m_mltConsumer->connect(*m_mltProducer);
126     m_mltProducer->set_speed(0.0);
127     m_refreshTimer.setSingleShot(true);
128     m_refreshTimer.setInterval(50);
129     connect(&m_refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
130 }
131
132 Render::~Render()
133 {
134     closeMlt();
135     delete m_mltProfile;
136 }
137
138
139 void Render::closeMlt()
140 {
141     //delete m_osdTimer;
142     m_requestList.clear();
143     m_infoThread.waitForFinished();
144     if (m_showFrameEvent) delete m_showFrameEvent;
145     if (m_pauseEvent) delete m_pauseEvent;
146     if (m_mltConsumer) delete m_mltConsumer;
147     if (m_mltProducer) delete m_mltProducer;
148     /*if (m_mltProducer) {
149         Mlt::Service service(m_mltProducer->parent().get_service());
150         service.lock();
151
152         if (service.type() == tractor_type) {
153             Mlt::Tractor tractor(service);
154             Mlt::Field *field = tractor.field();
155             mlt_service nextservice = mlt_service_get_producer(service.get_service());
156             mlt_service nextservicetodisconnect;
157             mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
158             QString mlt_type = mlt_properties_get(properties, "mlt_type");
159             QString resource = mlt_properties_get(properties, "mlt_service");
160             // Delete all transitions
161             while (mlt_type == "transition") {
162                 nextservicetodisconnect = nextservice;
163                 nextservice = mlt_service_producer(nextservice);
164                 mlt_field_disconnect_service(field->get_field(), nextservicetodisconnect);
165                 if (nextservice == NULL) break;
166                 properties = MLT_SERVICE_PROPERTIES(nextservice);
167                 mlt_type = mlt_properties_get(properties, "mlt_type");
168                 resource = mlt_properties_get(properties, "mlt_service");
169             }
170
171             delete field;
172             field = NULL;
173         }
174         service.unlock();
175     }*/
176
177     kDebug() << "// // // CLOSE RENDERER " << m_name;
178     if (m_blackClip) delete m_blackClip;
179     //delete m_osdInfo;
180 }
181
182 void Render::slotSwitchFullscreen()
183 {
184     if (m_mltConsumer) m_mltConsumer->set("full_screen", 1);
185 }
186
187 void Render::buildConsumer(const QString &profileName)
188 {
189     delete m_blackClip;
190     m_blackClip = NULL;
191
192     //TODO: uncomment following line when everything is clean
193     // uncommented Feb 2011 --Granjow
194     if (m_mltProfile) delete m_mltProfile;
195     m_activeProfile = profileName;
196     char *tmp = qstrdup(m_activeProfile.toUtf8().constData());
197     setenv("MLT_PROFILE", tmp, 1);
198     m_mltProfile = new Mlt::Profile(tmp);
199     m_mltProfile->set_explicit(true);
200     delete[] tmp;
201
202     m_blackClip = new Mlt::Producer(*m_mltProfile, "colour", "black");
203     m_blackClip->set("id", "black");
204     m_blackClip->set("mlt_type", "producer");
205
206     if (KdenliveSettings::external_display() && m_name != Kdenlive::clipMonitor) {
207 #ifdef USE_BLACKMAGIC
208         // Use blackmagic card for video output
209         QMap< QString, QString > profileProperties = ProfilesDialog::getSettingsFromFile(profileName);
210         int device = KdenliveSettings::blackmagic_output_device();
211         if (device >= 0) {
212             if (BMInterface::isSupportedProfile(device, profileProperties)) {
213                 QString decklink = "decklink:" + QString::number(KdenliveSettings::blackmagic_output_device());
214                 tmp = qstrdup(decklink.toUtf8().constData());
215                 m_mltConsumer = new Mlt::Consumer(*m_mltProfile, tmp);
216                 delete[] tmp;
217                 if (m_mltConsumer->is_valid()) {
218                     m_externalConsumer = true;
219                     m_showFrameEvent = m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) consumer_frame_show);
220                     m_mltConsumer->set("terminate_on_pause", 0);
221                     m_mltConsumer->set("deinterlace_method", "onefield");
222                     m_mltConsumer->set("real_time", KdenliveSettings::mltthreads());
223                     mlt_log_set_callback(kdenlive_callback);
224                 }
225                 if (m_mltConsumer && m_mltConsumer->is_valid()) return;
226             } else KMessageBox::informationList(qApp->activeWindow(), i18n("Your project's profile %1 is not compatible with the blackmagic output card. Please see supported profiles below. Switching to normal video display.", m_mltProfile->description()), BMInterface::supportedModes(KdenliveSettings::blackmagic_output_device()));
227         }
228 #endif
229     }
230     m_externalConsumer = false;
231     QString videoDriver = KdenliveSettings::videodrivername();
232     if (!videoDriver.isEmpty()) {
233         if (videoDriver == "x11_noaccel") {
234             setenv("SDL_VIDEO_YUV_HWACCEL", "0", 1);
235             videoDriver = "x11";
236         } else {
237             unsetenv("SDL_VIDEO_YUV_HWACCEL");
238         }
239     }
240     setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 1);
241
242     //m_mltConsumer->set("fullscreen", 1);
243     if (m_winid == 0) {
244         // OpenGL monitor
245         m_mltConsumer = new Mlt::Consumer(*m_mltProfile, "sdl_audio");
246         m_mltConsumer->set("preview_off", 1);
247         m_mltConsumer->set("preview_format", mlt_image_rgb24a);
248         m_showFrameEvent = m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) consumer_gl_frame_show);
249     } else {
250         m_mltConsumer = new Mlt::Consumer(*m_mltProfile, "sdl_preview");
251         m_showFrameEvent = m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) consumer_frame_show);
252         m_pauseEvent = m_mltConsumer->listen("consumer-sdl-paused", this, (mlt_listener) consumer_paused);
253         m_mltConsumer->set("window_id", m_winid);
254     }
255     m_mltConsumer->set("resize", 1);
256     m_mltConsumer->set("terminate_on_pause", 1);
257     m_mltConsumer->set("window_background", KdenliveSettings::window_background().name().toUtf8().constData());
258     m_mltConsumer->set("rescale", "nearest");
259     mlt_log_set_callback(kdenlive_callback);
260
261     QString audioDevice = KdenliveSettings::audiodevicename();
262     if (!audioDevice.isEmpty())
263         m_mltConsumer->set("audio_device", audioDevice.toUtf8().constData());
264
265     if (!videoDriver.isEmpty())
266         m_mltConsumer->set("video_driver", videoDriver.toUtf8().constData());
267
268     QString audioDriver = KdenliveSettings::audiodrivername();
269
270     /*
271     // Disabled because the "auto" detected driver was sometimes wrong
272     if (audioDriver.isEmpty())
273         audioDriver = KdenliveSettings::autoaudiodrivername();
274     */
275
276     if (!audioDriver.isEmpty())
277         m_mltConsumer->set("audio_driver", audioDriver.toUtf8().constData());
278
279     m_mltConsumer->set("progressive", 1);
280     m_mltConsumer->set("audio_buffer", 1024);
281     m_mltConsumer->set("frequency", 48000);
282     m_mltConsumer->set("real_time", KdenliveSettings::mltthreads());
283 }
284
285 Mlt::Producer *Render::invalidProducer(const QString &id)
286 {
287     Mlt::Producer *clip;
288     QString txt = "+" + i18n("Missing clip") + ".txt";
289     char *tmp = qstrdup(txt.toUtf8().constData());
290     clip = new Mlt::Producer(*m_mltProfile, tmp);
291     delete[] tmp;
292     if (clip == NULL) clip = new Mlt::Producer(*m_mltProfile, "colour", "red");
293     else {
294         clip->set("bgcolour", "0xff0000ff");
295         clip->set("pad", "10");
296     }
297     clip->set("id", id.toUtf8().constData());
298     clip->set("mlt_type", "producer");
299     return clip;
300 }
301
302 bool Render::hasProfile(const QString &profileName) const
303 {
304     return m_activeProfile == profileName;
305 }
306
307 int Render::resetProfile(const QString &profileName, bool dropSceneList)
308 {
309     m_refreshTimer.stop();
310     if (m_mltConsumer) {
311         if (m_externalConsumer == KdenliveSettings::external_display()) {
312             if (KdenliveSettings::external_display() && m_activeProfile == profileName) return 1;
313             QString videoDriver = KdenliveSettings::videodrivername();
314             QString currentDriver = m_mltConsumer->get("video_driver");
315             if (getenv("SDL_VIDEO_YUV_HWACCEL") != NULL && currentDriver == "x11") currentDriver = "x11_noaccel";
316             QString background = KdenliveSettings::window_background().name();
317             QString currentBackground = m_mltConsumer->get("window_background");
318             if (m_activeProfile == profileName && currentDriver == videoDriver && background == currentBackground) {
319                 kDebug() << "reset to same profile, nothing to do";
320                 return 1;
321             }
322         }
323
324         if (m_isSplitView) slotSplitView(false);
325         if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
326         m_mltConsumer->purge();
327         if (m_showFrameEvent) delete m_showFrameEvent;
328         m_showFrameEvent = NULL;
329         if (m_pauseEvent) delete m_pauseEvent;
330         m_pauseEvent = NULL;
331         delete m_mltConsumer;
332         m_mltConsumer = NULL;
333     }
334     QString scene;
335     if (!dropSceneList) scene = sceneList();
336     int pos = 0;
337     double current_fps = m_mltProfile->fps();
338     double current_dar = m_mltProfile->dar();
339     delete m_blackClip;
340     m_blackClip = NULL;
341     m_requestList.clear();
342     m_infoThread.waitForFinished();
343
344     if (m_mltProducer) {
345         pos = m_mltProducer->position();
346
347         Mlt::Service service(m_mltProducer->get_service());
348         if (service.type() == tractor_type) {
349             Mlt::Tractor tractor(service);
350             for (int trackNb = tractor.count() - 1; trackNb >= 0; --trackNb) {
351                 Mlt::Producer trackProducer(tractor.track(trackNb));
352                 Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
353                 trackPlaylist.clear();
354             }
355         }
356
357         delete m_mltProducer;
358     }
359     m_mltProducer = NULL;
360     buildConsumer(profileName);
361     double new_fps = m_mltProfile->fps();
362     double new_dar = m_mltProfile->dar();
363
364     if (!dropSceneList) {
365         // We need to recover our playlist
366         if (current_fps != new_fps) {
367             // fps changed, we must update the scenelist positions
368             scene = updateSceneListFps(current_fps, new_fps, scene);
369         }
370         setSceneList(scene, pos);
371         // producers have changed (different profile), so reset them...
372         emit refreshDocumentProducers(new_dar != current_dar, current_fps != new_fps);
373     }
374     return 1;
375 }
376
377 void Render::seek(GenTime time)
378 {
379     if (!m_mltProducer)
380         return;
381
382     m_mltProducer->seek((int)(time.frames(m_fps)));
383     if (m_mltProducer->get_speed() == 0) {
384         refresh();
385     }
386 }
387
388 void Render::seek(int time)
389 {
390     if (!m_mltProducer)
391         return;
392
393     m_mltProducer->seek(time);
394     if (m_mltProducer->get_speed() == 0) {
395         refresh();
396     }
397 }
398
399 //static
400 /*QPixmap Render::frameThumbnail(Mlt::Frame *frame, int width, int height, bool border) {
401     QPixmap pix(width, height);
402
403     mlt_image_format format = mlt_image_rgb24a;
404     uint8_t *thumb = frame->get_image(format, width, height);
405     QImage image(thumb, width, height, QImage::Format_ARGB32);
406
407     if (!image.isNull()) {
408         pix = pix.fromImage(image);
409         if (border) {
410             QPainter painter(&pix);
411             painter.drawRect(0, 0, width - 1, height - 1);
412         }
413     } else pix.fill(Qt::black);
414     return pix;
415 }
416 */
417 int Render::frameRenderWidth() const
418 {
419     return m_mltProfile->width();
420 }
421
422 int Render::renderWidth() const
423 {
424     return (int)(m_mltProfile->height() * m_mltProfile->dar() + 0.5);
425 }
426
427 int Render::renderHeight() const
428 {
429     return m_mltProfile->height();
430 }
431
432 QImage Render::extractFrame(int frame_position, QString path, int width, int height)
433 {
434     if (width == -1) {
435         width = frameRenderWidth();
436         height = renderHeight();
437     } else if (width % 2 == 1) width++;
438     int dwidth = height * frameRenderWidth() / renderHeight();
439     if (!path.isEmpty()) {
440         Mlt::Producer *producer = new Mlt::Producer(*m_mltProfile, path.toUtf8().constData());
441         if (producer) {
442             if (producer->is_valid()) {
443                 QImage img = KThumb::getFrame(producer, frame_position, dwidth, width, height);
444                 delete producer;
445                 return img;
446             }
447             else delete producer;
448         }
449     }
450
451     if (!m_mltProducer || !path.isEmpty()) {
452         QImage pix(width, height, QImage::Format_RGB32);
453         pix.fill(Qt::black);
454         return pix;
455     }
456     return KThumb::getFrame(m_mltProducer, frame_position, dwidth, width, height);
457 }
458
459 QPixmap Render::getImageThumbnail(KUrl url, int /*width*/, int /*height*/)
460 {
461     QImage im;
462     QPixmap pixmap;
463     if (url.fileName().startsWith(".all.")) {  //  check for slideshow
464         QString fileType = url.fileName().right(3);
465         QStringList more;
466         QStringList::Iterator it;
467
468         QDir dir(url.directory());
469         QStringList filter;
470         filter << "*." + fileType;
471         filter << "*." + fileType.toUpper();
472         more = dir.entryList(filter, QDir::Files);
473         im.load(url.directory() + '/' + more.at(0));
474     } else im.load(url.path());
475     //pixmap = im.scaled(width, height);
476     return pixmap;
477 }
478
479 double Render::consumerRatio() const
480 {
481     if (!m_mltConsumer) return 1.0;
482     return (m_mltConsumer->get_double("aspect_ratio_num") / m_mltConsumer->get_double("aspect_ratio_den"));
483 }
484
485
486 int Render::getLength()
487 {
488
489     if (m_mltProducer) {
490         // kDebug()<<"//////  LENGTH: "<<mlt_producer_get_playtime(m_mltProducer->get_producer());
491         return mlt_producer_get_playtime(m_mltProducer->get_producer());
492     }
493     return 0;
494 }
495
496 bool Render::isValid(KUrl url)
497 {
498     Mlt::Producer producer(*m_mltProfile, url.path().toUtf8().constData());
499     if (producer.is_blank())
500         return false;
501
502     return true;
503 }
504
505 double Render::dar() const
506 {
507     return m_mltProfile->dar();
508 }
509
510 double Render::sar() const
511 {
512     return m_mltProfile->sar();
513 }
514
515 void Render::slotSplitView(bool doit)
516 {
517     m_isSplitView = doit;
518     Mlt::Service service(m_mltProducer->parent().get_service());
519     Mlt::Tractor tractor(service);
520     if (service.type() != tractor_type || tractor.count() < 2) return;
521     Mlt::Field *field = tractor.field();
522     if (doit) {
523         for (int i = 1, screen = 0; i < tractor.count() && screen < 4; i++) {
524             Mlt::Producer trackProducer(tractor.track(i));
525             kDebug() << "// TRACK: " << i << ", HIDE: " << trackProducer.get("hide");
526             if (QString(trackProducer.get("hide")).toInt() != 1) {
527                 kDebug() << "// ADIDNG TRACK: " << i;
528                 Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "composite");
529                 transition->set("mlt_service", "composite");
530                 transition->set("a_track", 0);
531                 transition->set("b_track", i);
532                 transition->set("distort", 1);
533                 transition->set("internal_added", "200");
534                 const char *tmp;
535                 switch (screen) {
536                 case 0:
537                     tmp = "0,0:50%x50%";
538                     break;
539                 case 1:
540                     tmp = "50%,0:50%x50%";
541                     break;
542                 case 2:
543                     tmp = "0,50%:50%x50%";
544                     break;
545                 case 3:
546                 default:
547                     tmp = "50%,50%:50%x50%";
548                     break;
549                 }
550                 transition->set("geometry", tmp);
551                 transition->set("always_active", "1");
552                 field->plant_transition(*transition, 0, i);
553                 //delete[] tmp;
554                 screen++;
555             }
556         }
557         m_mltConsumer->set("refresh", 1);
558     } else {
559         mlt_service serv = m_mltProducer->parent().get_service();
560         mlt_service nextservice = mlt_service_get_producer(serv);
561         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
562         QString mlt_type = mlt_properties_get(properties, "mlt_type");
563         QString resource = mlt_properties_get(properties, "mlt_service");
564
565         while (mlt_type == "transition") {
566             QString added = mlt_properties_get(MLT_SERVICE_PROPERTIES(nextservice), "internal_added");
567             if (added == "200") {
568                 mlt_field_disconnect_service(field->get_field(), nextservice);
569             }
570             nextservice = mlt_service_producer(nextservice);
571             if (nextservice == NULL) break;
572             properties = MLT_SERVICE_PROPERTIES(nextservice);
573             mlt_type = mlt_properties_get(properties, "mlt_type");
574             resource = mlt_properties_get(properties, "mlt_service");
575             m_mltConsumer->set("refresh", 1);
576         }
577     }
578 }
579
580 void Render::getFileProperties(const QDomElement &xml, const QString &clipId, int imageHeight, bool replaceProducer)
581 {
582     requestClipInfo info;
583     info.xml = xml;
584     info.clipId = clipId;
585     info.imageHeight = imageHeight;
586     info.replaceProducer = replaceProducer;
587     // Make sure we don't request the info for same clip twice
588     m_infoMutex.lock();
589     m_requestList.removeAll(info);
590     m_requestList.append(info);
591     m_infoMutex.unlock();
592     if (!m_infoThread.isRunning()) {
593         m_infoThread = QtConcurrent::run(this, &Render::processFileProperties);
594     }
595 }
596
597 void Render::forceProcessing(const QString &id)
598 {
599     if (m_processingClipId == id) return;
600     QMutexLocker lock(&m_infoMutex);
601     for (int i = 0; i < m_requestList.count(); i++) {
602         requestClipInfo info = m_requestList.at(i);
603         if (info.clipId == id) {
604             if (i == 0) break;
605             else {
606                 m_requestList.removeAt(i);
607                 m_requestList.prepend(info);
608                 break;
609             }
610         }
611     }
612 }
613
614 int Render::processingItems()
615 {
616     QMutexLocker lock(&m_infoMutex);
617     int count = m_requestList.count();
618     if (!m_processingClipId.isEmpty()) {
619         // one clip is currently processed
620         count++;
621     }
622     return count;
623 }
624
625 bool Render::isProcessing(const QString &id)
626 {
627     if (m_processingClipId == id) return true;
628     QMutexLocker lock(&m_infoMutex);
629     for (int i = 0; i < m_requestList.count(); i++) {
630         requestClipInfo info = m_requestList.at(i);
631         if (info.clipId == id) {
632             return true;
633         }
634     }
635     return false;
636 }
637
638 void Render::processFileProperties()
639 {
640     requestClipInfo info;
641     QLocale locale;
642     while (!m_requestList.isEmpty()) {
643         m_infoMutex.lock();
644         info = m_requestList.takeFirst();
645         m_processingClipId = info.clipId;
646         m_infoMutex.unlock();
647
648         QString path;
649         bool proxyProducer;
650         if (info.xml.hasAttribute("proxy") && info.xml.attribute("proxy") != "-") {
651             path = info.xml.attribute("proxy");
652             // Check for missing proxies
653             if (QFileInfo(path).size() <= 0) {
654                 // proxy is missing, re-create it
655                 emit requestProxy(info.clipId);
656                 proxyProducer = false;
657                 path = info.xml.attribute("resource");
658             }
659             else proxyProducer = true;
660         }
661         else {
662             path = info.xml.attribute("resource");
663             proxyProducer = false;
664         }
665         KUrl url(path);
666         Mlt::Producer *producer = NULL;
667         CLIPTYPE type = (CLIPTYPE)info.xml.attribute("type").toInt();
668
669         if (type == COLOR) {
670             producer = new Mlt::Producer(*m_mltProfile, 0, ("colour:" + info.xml.attribute("colour")).toUtf8().constData());
671         } else if (type == TEXT) {
672             producer = new Mlt::Producer(*m_mltProfile, 0, ("kdenlivetitle:" + info.xml.attribute("resource")).toUtf8().constData());
673             if (producer && producer->is_valid() && info.xml.hasAttribute("xmldata"))
674                 producer->set("xmldata", info.xml.attribute("xmldata").toUtf8().constData());
675         } else if (url.isEmpty()) {
676             QDomDocument doc;
677             QDomElement mlt = doc.createElement("mlt");
678             QDomElement play = doc.createElement("playlist");
679             doc.appendChild(mlt);
680             mlt.appendChild(play);
681             play.appendChild(doc.importNode(info.xml, true));
682             producer = new Mlt::Producer(*m_mltProfile, "xml-string", doc.toString().toUtf8().constData());
683         } else {
684             producer = new Mlt::Producer(*m_mltProfile, path.toUtf8().constData());
685         }
686
687         if (producer == NULL || producer->is_blank() || !producer->is_valid()) {
688             kDebug() << " / / / / / / / / ERROR / / / / // CANNOT LOAD PRODUCER: "<<path;
689             m_processingClipId.clear();
690             if (proxyProducer) {
691                 // Proxy file is corrupted
692                 emit removeInvalidProxy(info.clipId, false);
693             }
694             else emit removeInvalidClip(info.clipId, info.replaceProducer);
695             delete producer;
696             continue;
697         }
698
699         if (proxyProducer && info.xml.hasAttribute("proxy_out")) {
700             producer->set("length", info.xml.attribute("proxy_out").toInt() + 1);
701             producer->set("out", info.xml.attribute("proxy_out").toInt());
702             if (producer->get_out() != info.xml.attribute("proxy_out").toInt()) {
703                 // Proxy file length is different than original clip length, this will corrupt project so disable this proxy clip
704                 m_processingClipId.clear();
705                 emit removeInvalidProxy(info.clipId, true);
706                 delete producer;
707                 continue;
708             }
709         }
710
711         if (info.xml.hasAttribute("force_aspect_ratio")) {
712             double aspect = info.xml.attribute("force_aspect_ratio").toDouble();
713             if (aspect > 0) producer->set("force_aspect_ratio", aspect);
714         }
715
716         if (info.xml.hasAttribute("force_aspect_num") && info.xml.hasAttribute("force_aspect_den")) {
717             int width = info.xml.attribute("frame_size").section('x', 0, 0).toInt();
718             int height = info.xml.attribute("frame_size").section('x', 1, 1).toInt();
719             int aspectNumerator = info.xml.attribute("force_aspect_num").toInt();
720             int aspectDenominator = info.xml.attribute("force_aspect_den").toInt();
721             if (aspectDenominator != 0 && width != 0)
722                 producer->set("force_aspect_ratio", double(height) * aspectNumerator / aspectDenominator / width);
723         }
724
725         if (info.xml.hasAttribute("force_fps")) {
726             double fps = info.xml.attribute("force_fps").toDouble();
727             if (fps > 0) producer->set("force_fps", fps);
728         }
729
730         if (info.xml.hasAttribute("force_progressive")) {
731             bool ok;
732             int progressive = info.xml.attribute("force_progressive").toInt(&ok);
733             if (ok) producer->set("force_progressive", progressive);
734         }
735         if (info.xml.hasAttribute("force_tff")) {
736             bool ok;
737             int fieldOrder = info.xml.attribute("force_tff").toInt(&ok);
738             if (ok) producer->set("force_tff", fieldOrder);
739         }
740         if (info.xml.hasAttribute("threads")) {
741             int threads = info.xml.attribute("threads").toInt();
742             if (threads != 1) producer->set("threads", threads);
743         }
744         if (info.xml.hasAttribute("video_index")) {
745             int vindex = info.xml.attribute("video_index").toInt();
746             if (vindex != 0) producer->set("video_index", vindex);
747         }
748         if (info.xml.hasAttribute("audio_index")) {
749             int aindex = info.xml.attribute("audio_index").toInt();
750             if (aindex != 0) producer->set("audio_index", aindex);
751         }
752         if (info.xml.hasAttribute("force_colorspace")) {
753             int colorspace = info.xml.attribute("force_colorspace").toInt();
754             if (colorspace != 0) producer->set("force_colorspace", colorspace);
755         }
756         if (info.xml.hasAttribute("full_luma")) {
757             int full_luma = info.xml.attribute("full_luma").toInt();
758             if (full_luma != 0) producer->set("set.force_full_luma", full_luma);
759         }
760
761         int clipOut = 0;
762         int duration = 0;
763         if (info.xml.hasAttribute("out")) clipOut = info.xml.attribute("out").toInt();
764
765         // setup length here as otherwise default length (currently 15000 frames in MLT) will be taken even if outpoint is larger
766         if (type == COLOR || type == TEXT || type == IMAGE || type == SLIDESHOW) {
767             int length;
768             if (info.xml.hasAttribute("length")) {
769                 if (clipOut > 0) duration = clipOut + 1;
770                 length = info.xml.attribute("length").toInt();
771                 clipOut = length - 1;
772             }
773             else length = info.xml.attribute("out").toInt() - info.xml.attribute("in").toInt();
774             producer->set("length", length);
775         }
776
777         if (clipOut > 0) producer->set_in_and_out(info.xml.attribute("in").toInt(), clipOut);
778
779         producer->set("id", info.clipId.toUtf8().constData());
780
781         if (info.xml.hasAttribute("templatetext"))
782             producer->set("templatetext", info.xml.attribute("templatetext").toUtf8().constData());
783
784         int imageWidth = (int)((double) info.imageHeight * m_mltProfile->width() / m_mltProfile->height() + 0.5);
785         int fullWidth = (int)((double) info.imageHeight * m_mltProfile->dar() + 0.5);
786         int frameNumber = info.xml.attribute("thumbnail", "-1").toInt();
787
788         if ((!info.replaceProducer && info.xml.hasAttribute("file_hash")) || proxyProducer) {
789             // Clip  already has all properties
790             if (proxyProducer) {
791                 // Recreate clip thumb
792                 if (frameNumber > 0) producer->seek(frameNumber);
793                 Mlt::Frame *frame = producer->get_frame();
794                 if (frame && frame->is_valid()) {
795                     QImage img = KThumb::getFrame(frame, imageWidth, fullWidth, info.imageHeight);
796                     emit replyGetImage(info.clipId, img);
797                 }
798                 if (frame) delete frame;
799             }
800             m_processingClipId.clear();
801             emit replyGetFileProperties(info.clipId, producer, stringMap(), stringMap(), info.replaceProducer);
802             continue;
803         }
804
805         stringMap filePropertyMap;
806         stringMap metadataPropertyMap;
807         char property[200];
808
809         if (frameNumber > 0) producer->seek(frameNumber);
810
811         duration = duration > 0 ? duration : producer->get_playtime();
812         filePropertyMap["duration"] = QString::number(duration);
813         //kDebug() << "///////  PRODUCER: " << url.path() << " IS: " << producer->get_playtime();
814
815         if (type == SLIDESHOW) {
816             int ttl = info.xml.hasAttribute("ttl") ? info.xml.attribute("ttl").toInt() : 0;
817             if (ttl) producer->set("ttl", ttl);
818             if (!info.xml.attribute("animation").isEmpty()) {
819                 Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, "affine");
820                 if (filter && filter->is_valid()) {
821                     int cycle = ttl;
822                     QString geometry = SlideshowClip::animationToGeometry(info.xml.attribute("animation"), cycle);
823                     if (!geometry.isEmpty()) {
824                         if (info.xml.attribute("animation").contains("low-pass")) {
825                             Mlt::Filter *blur = new Mlt::Filter(*m_mltProfile, "boxblur");
826                             if (blur && blur->is_valid())
827                                 producer->attach(*blur);
828                         }
829                         filter->set("transition.geometry", geometry.toUtf8().data());
830                         filter->set("transition.cycle", cycle);
831                         producer->attach(*filter);
832                     }
833                 }
834             }
835             if (info.xml.attribute("fade") == "1") {
836                 // user wants a fade effect to slideshow
837                 Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, "luma");
838                 if (filter && filter->is_valid()) {
839                     if (ttl) filter->set("cycle", ttl);
840                     if (info.xml.hasAttribute("luma_duration") && !info.xml.attribute("luma_duration").isEmpty()) filter->set("duration",      info.xml.attribute("luma_duration").toInt());
841                     if (info.xml.hasAttribute("luma_file") && !info.xml.attribute("luma_file").isEmpty()) {
842                         filter->set("luma.resource", info.xml.attribute("luma_file").toUtf8().constData());
843                         if (info.xml.hasAttribute("softness")) {
844                             int soft = info.xml.attribute("softness").toInt();
845                             filter->set("luma.softness", (double) soft / 100.0);
846                         }
847                     }
848                     producer->attach(*filter);
849                 }
850             }
851             if (info.xml.attribute("crop") == "1") {
852                 // user wants to center crop the slides
853                 Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, "crop");
854                 if (filter && filter->is_valid()) {
855                     filter->set("center", 1);
856                     producer->attach(*filter);
857                 }
858             }
859         }
860
861         // Get frame rate
862         int vindex = producer->get_int("video_index");
863         if (vindex > -1) {
864             snprintf(property, sizeof(property), "meta.media.%d.stream.frame_rate", vindex);
865             if (producer->get(property))
866                 filePropertyMap["fps"] = producer->get(property);
867         }
868
869         if (!filePropertyMap.contains("fps")) {
870             if (producer->get_double("meta.media.frame_rate_den") > 0) {
871                 filePropertyMap["fps"] = locale.toString(producer->get_double("meta.media.frame_rate_num") / producer->get_double("meta.media.frame_rate_den"));
872             } else filePropertyMap["fps"] = producer->get("source_fps");
873         }
874
875         Mlt::Frame *frame = producer->get_frame();
876         if (frame && frame->is_valid()) {
877             filePropertyMap["frame_size"] = QString::number(frame->get_int("width")) + 'x' + QString::number(frame->get_int("height"));
878             filePropertyMap["frequency"] = QString::number(frame->get_int("frequency"));
879             filePropertyMap["channels"] = QString::number(frame->get_int("channels"));
880             filePropertyMap["aspect_ratio"] = frame->get("aspect_ratio");
881
882             if (frame->get_int("test_image") == 0) {
883                 if (url.path().endsWith(".mlt") || url.path().endsWith(".westley") || url.path().endsWith(".kdenlive")) {
884                     filePropertyMap["type"] = "playlist";
885                     metadataPropertyMap["comment"] = QString::fromUtf8(producer->get("title"));
886                 } else if (frame->get_int("test_audio") == 0)
887                     filePropertyMap["type"] = "av";
888                 else
889                     filePropertyMap["type"] = "video";
890
891                 int variance;
892                 QImage img;
893                 do {
894                     variance = 100;
895                     img = KThumb::getFrame(frame, imageWidth, fullWidth, info.imageHeight);
896                     variance = KThumb::imageVariance(img);
897                     if (frameNumber == -1 && variance< 6) {
898                         // Thumbnail is not interesting (for example all black, seek to fetch better thumb
899                         frameNumber =  duration > 100 ? 100 : duration / 2 ;
900                         producer->seek(frameNumber);
901                         delete frame;
902                         frame = producer->get_frame();
903                         variance = -1;
904                     }
905                 } while (variance == -1);
906                 delete frame;
907                 if (frameNumber > -1) filePropertyMap["thumbnail"] = QString::number(frameNumber);
908                 emit replyGetImage(info.clipId, img);
909             } else if (frame->get_int("test_audio") == 0) {
910                 emit replyGetImage(info.clipId, "audio-x-generic", fullWidth, info.imageHeight);
911                 filePropertyMap["type"] = "audio";
912             }
913         }
914         // Retrieve audio / video codec name
915         // If there is a
916
917         if (vindex > -1) {
918             /*if (context->duration == AV_NOPTS_VALUE) {
919             kDebug() << " / / / / / / / /ERROR / / / CLIP HAS UNKNOWN DURATION";
920                 emit removeInvalidClip(clipId);
921             delete producer;
922             return;
923             }*/
924             // Get the video_index
925             int video_max = 0;
926             int default_audio = producer->get_int("audio_index");
927             int audio_max = 0;
928
929             int scan = producer->get_int("meta.media.progressive");
930             filePropertyMap["progressive"] = QString::number(scan);
931
932             // Find maximum stream index values
933             for (int ix = 0; ix < producer->get_int("meta.media.nb_streams"); ix++) {
934                 snprintf(property, sizeof(property), "meta.media.%d.stream.type", ix);
935                 QString type = producer->get(property);
936                 if (type == "video")
937                     video_max = ix;
938                 else if (type == "audio")
939                     audio_max = ix;
940             }
941             filePropertyMap["default_video"] = QString::number(vindex);
942             filePropertyMap["video_max"] = QString::number(video_max);
943             filePropertyMap["default_audio"] = QString::number(default_audio);
944             filePropertyMap["audio_max"] = QString::number(audio_max);
945
946             snprintf(property, sizeof(property), "meta.media.%d.codec.long_name", vindex);
947             if (producer->get(property)) {
948                 filePropertyMap["videocodec"] = producer->get(property);
949             } else {
950                 snprintf(property, sizeof(property), "meta.media.%d.codec.name", vindex);
951                 if (producer->get(property))
952                     filePropertyMap["videocodec"] = producer->get(property);
953             }
954             QString query;
955             query = QString("meta.media.%1.codec.pix_fmt").arg(vindex);
956             filePropertyMap["pix_fmt"] = producer->get(query.toUtf8().constData());
957             filePropertyMap["colorspace"] = producer->get("meta.media.colorspace");
958
959         } else kDebug() << " / / / / /WARNING, VIDEO CONTEXT IS NULL!!!!!!!!!!!!!!";
960         if (producer->get_int("audio_index") > -1) {
961             // Get the audio_index
962             int index = producer->get_int("audio_index");
963             snprintf(property, sizeof(property), "meta.media.%d.codec.long_name", index);
964             if (producer->get(property)) {
965                 filePropertyMap["audiocodec"] = producer->get(property);
966             } else {
967                 snprintf(property, sizeof(property), "meta.media.%d.codec.name", index);
968                 if (producer->get(property))
969                     filePropertyMap["audiocodec"] = producer->get(property);
970             }
971         }
972
973         // metadata
974         Mlt::Properties metadata;
975         metadata.pass_values(*producer, "meta.attr.");
976         int count = metadata.count();
977         for (int i = 0; i < count; i ++) {
978             QString name = metadata.get_name(i);
979             QString value = QString::fromUtf8(metadata.get(i));
980             if (name.endsWith("markup") && !value.isEmpty())
981                 metadataPropertyMap[ name.section('.', 0, -2)] = value;
982         }
983         producer->seek(0);
984         m_processingClipId.clear();
985         emit replyGetFileProperties(info.clipId, producer, filePropertyMap, metadataPropertyMap, info.replaceProducer);
986     }
987     m_processingClipId.clear();
988 }
989
990
991 #if 0
992 /** Create the producer from the MLT XML QDomDocument */
993 void Render::initSceneList()
994 {
995     kDebug() << "--------  INIT SCENE LIST ------_";
996     QDomDocument doc;
997     QDomElement mlt = doc.createElement("mlt");
998     doc.appendChild(mlt);
999     QDomElement prod = doc.createElement("producer");
1000     prod.setAttribute("resource", "colour");
1001     prod.setAttribute("colour", "red");
1002     prod.setAttribute("id", "black");
1003     prod.setAttribute("in", "0");
1004     prod.setAttribute("out", "0");
1005
1006     QDomElement tractor = doc.createElement("tractor");
1007     QDomElement multitrack = doc.createElement("multitrack");
1008
1009     QDomElement playlist1 = doc.createElement("playlist");
1010     playlist1.appendChild(prod);
1011     multitrack.appendChild(playlist1);
1012     QDomElement playlist2 = doc.createElement("playlist");
1013     multitrack.appendChild(playlist2);
1014     QDomElement playlist3 = doc.createElement("playlist");
1015     multitrack.appendChild(playlist3);
1016     QDomElement playlist4 = doc.createElement("playlist");
1017     multitrack.appendChild(playlist4);
1018     QDomElement playlist5 = doc.createElement("playlist");
1019     multitrack.appendChild(playlist5);
1020     tractor.appendChild(multitrack);
1021     mlt.appendChild(tractor);
1022     // kDebug()<<doc.toString();
1023     /*
1024        QString tmp = QString("<mlt><producer resource=\"colour\" colour=\"red\" id=\"red\" /><tractor><multitrack><playlist></playlist><playlist></playlist><playlist /><playlist /><playlist></playlist></multitrack></tractor></mlt>");*/
1025     setSceneList(doc, 0);
1026 }
1027 #endif
1028
1029 int Render::setProducer(Mlt::Producer *producer, int position)
1030 {
1031     m_refreshTimer.stop();
1032     QMutexLocker locker(&m_mutex);
1033     QString currentId;
1034     int consumerPosition = 0;
1035     if (m_winid == -1 || !m_mltConsumer) {
1036         kDebug()<<" / / / / WARNING, MONITOR NOT READY";
1037         if (producer) delete producer;
1038         return -1;
1039     }
1040     m_mltConsumer->set("refresh", 0);
1041     if (!m_mltConsumer->is_stopped()) {
1042         m_mltConsumer->stop();
1043     }
1044     m_mltConsumer->purge();
1045     consumerPosition = m_mltConsumer->position();
1046
1047
1048     blockSignals(true);
1049     if (!producer || !producer->is_valid()) {
1050         if (producer) delete producer;
1051         producer = m_blackClip->cut(0, 1);
1052     }
1053
1054     if (!producer || !producer->is_valid()) {
1055         kDebug() << " WARNING - - - - -INVALID PLAYLIST: ";
1056         return -1;
1057     }
1058     if (m_mltProducer) currentId = m_mltProducer->get("id");
1059     emit stopped();
1060     if (position == -1 && producer->get("id") == currentId) position = consumerPosition;
1061     if (position != -1) producer->seek(position);
1062     int volume = KdenliveSettings::volume();
1063     producer->set("meta.volume", (double)volume / 100);
1064     m_fps = producer->get_fps();
1065     blockSignals(false);
1066     m_mltConsumer->connect(*producer);
1067
1068     if (m_mltProducer) {
1069         m_mltProducer->set_speed(0);
1070         delete m_mltProducer;
1071         m_mltProducer = NULL;
1072     }
1073     m_mltProducer = producer;
1074     m_mltProducer->set_speed(0);
1075     emit durationChanged(m_mltProducer->get_playtime());
1076     if (m_mltConsumer->start() == -1) {
1077         // ARGH CONSUMER BROKEN!!!!
1078         KMessageBox::error(qApp->activeWindow(), i18n("Could not create the video preview window.\nThere is something wrong with your Kdenlive install or your driver settings, please fix it."));
1079         if (m_showFrameEvent) delete m_showFrameEvent;
1080         m_showFrameEvent = NULL;
1081         if (m_pauseEvent) delete m_pauseEvent;
1082         m_pauseEvent = NULL;
1083         delete m_mltConsumer;
1084         m_mltConsumer = NULL;
1085         return -1;
1086     }
1087
1088     position = m_mltProducer->position();
1089     m_mltConsumer->set("refresh", 1);
1090     // Make sure the first frame is displayed, otherwise if we change producer too fast
1091     // We can crash the avformat producer
1092     Mlt::Event *ev = m_mltConsumer->setup_wait_for("consumer-frame-show");
1093     m_mltConsumer->wait_for(ev);
1094     delete ev;
1095     emit rendererPosition(position);
1096     return 0;
1097 }
1098
1099 int Render::setSceneList(QDomDocument list, int position)
1100 {
1101     return setSceneList(list.toString(), position);
1102 }
1103
1104 int Render::setSceneList(QString playlist, int position)
1105 {
1106     m_refreshTimer.stop();
1107     QMutexLocker locker(&m_mutex);
1108     if (m_winid == -1) return -1;
1109     int error = 0;
1110
1111     //kDebug() << "//////  RENDER, SET SCENE LIST:\n" << playlist <<"\n..........:::.";
1112
1113     // Remove previous profile info
1114     QDomDocument doc;
1115     doc.setContent(playlist);
1116     QDomElement profile = doc.documentElement().firstChildElement("profile");
1117     doc.documentElement().removeChild(profile);
1118     playlist = doc.toString();
1119
1120     if (m_mltConsumer) {
1121         if (!m_mltConsumer->is_stopped()) {
1122             m_mltConsumer->stop();
1123         }
1124         m_mltConsumer->set("refresh", 0);
1125     } else {
1126         kWarning() << "///////  ERROR, TRYING TO USE NULL MLT CONSUMER";
1127         error = -1;
1128     }
1129     m_requestList.clear();
1130     m_infoThread.waitForFinished();
1131
1132     if (m_mltProducer) {
1133         m_mltProducer->set_speed(0);
1134         //if (KdenliveSettings::osdtimecode() && m_osdInfo) m_mltProducer->detach(*m_osdInfo);
1135
1136         /*Mlt::Service service(m_mltProducer->parent().get_service());
1137         service.lock();
1138
1139         if (service.type() == tractor_type) {
1140             Mlt::Tractor tractor(service);
1141             Mlt::Field *field = tractor.field();
1142             mlt_service nextservice = mlt_service_get_producer(service.get_service());
1143             mlt_service nextservicetodisconnect;
1144             mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
1145             QString mlt_type = mlt_properties_get(properties, "mlt_type");
1146             QString resource = mlt_properties_get(properties, "mlt_service");
1147             // Delete all transitions
1148             while (mlt_type == "transition") {
1149                 nextservicetodisconnect = nextservice;
1150                 nextservice = mlt_service_producer(nextservice);
1151                 mlt_field_disconnect_service(field->get_field(), nextservicetodisconnect);
1152                 if (nextservice == NULL) break;
1153                 properties = MLT_SERVICE_PROPERTIES(nextservice);
1154                 mlt_type = mlt_properties_get(properties, "mlt_type");
1155                 resource = mlt_properties_get(properties, "mlt_service");
1156             }
1157
1158
1159             for (int trackNb = tractor.count() - 1; trackNb >= 0; --trackNb) {
1160                 Mlt::Producer trackProducer(tractor.track(trackNb));
1161                 Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1162                 if (trackPlaylist.type() == playlist_type) trackPlaylist.clear();
1163             }
1164             delete field;
1165         }
1166         service.unlock();*/
1167
1168         qDeleteAll(m_slowmotionProducers.values());
1169         m_slowmotionProducers.clear();
1170
1171         delete m_mltProducer;
1172         m_mltProducer = NULL;
1173         emit stopped();
1174     }
1175
1176     blockSignals(true);
1177     m_locale = QLocale();
1178
1179     m_mltProducer = new Mlt::Producer(*m_mltProfile, "xml-string", playlist.toUtf8().constData());
1180     if (!m_mltProducer || !m_mltProducer->is_valid()) {
1181         kDebug() << " WARNING - - - - -INVALID PLAYLIST: " << playlist.toUtf8().constData();
1182         m_mltProducer = m_blackClip->cut(0, 1);
1183         error = -1;
1184     }
1185     checkMaxThreads();
1186     int volume = KdenliveSettings::volume();
1187     m_mltProducer->set("meta.volume", (double)volume / 100);
1188     m_mltProducer->optimise();
1189
1190     /*if (KdenliveSettings::osdtimecode()) {
1191     // Attach filter for on screen display of timecode
1192     delete m_osdInfo;
1193     QString attr = "attr_check";
1194     mlt_filter filter = mlt_factory_filter( "data_feed", (char*) attr.ascii() );
1195     mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "_loader", 1 );
1196     mlt_producer_attach( m_mltProducer->get_producer(), filter );
1197     mlt_filter_close( filter );
1198
1199       m_osdInfo = new Mlt::Filter("data_show");
1200     m_osdInfo->set("resource", m_osdProfile.toUtf8().constData());
1201     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
1202     mlt_properties_set_int( properties, "meta.attr.timecode", 1);
1203     mlt_properties_set( properties, "meta.attr.timecode.markup", "#timecode#");
1204     m_osdInfo->set("dynamic", "1");
1205
1206       if (m_mltProducer->attach(*m_osdInfo) == 1) kDebug()<<"////// error attaching filter";
1207     } else {
1208     m_osdInfo->set("dynamic", "0");
1209     }*/
1210
1211     m_fps = m_mltProducer->get_fps();
1212     if (position != 0) {
1213         // Seek to correct place after opening project.
1214         m_mltProducer->seek(position);
1215     }
1216
1217     kDebug() << "// NEW SCENE LIST DURATION SET TO: " << m_mltProducer->get_playtime();
1218     m_mltConsumer->connect(*m_mltProducer);
1219     m_mltProducer->set_speed(0);
1220     fillSlowMotionProducers();
1221     blockSignals(false);
1222     emit durationChanged(m_mltProducer->get_playtime());
1223
1224     return error;
1225     //kDebug()<<"// SETSCN LST, POS: "<<position;
1226     //if (position != 0) emit rendererPosition(position);
1227 }
1228
1229 void Render::checkMaxThreads()
1230 {
1231     // Make sure we don't use too much threads, MLT avformat does not cope with too much threads
1232     // Currently, Kdenlive uses the following avformat threads:
1233     // One thread to get info when adding a clip
1234     // One thread to create the timeline video thumbnails
1235     // One thread to create the audio thumbnails
1236     Mlt::Service service(m_mltProducer->parent().get_service());
1237     if (service.type() != tractor_type) {
1238         kWarning() << "// TRACTOR PROBLEM";
1239         return;
1240     }
1241     Mlt::Tractor tractor(service);
1242     int mltMaxThreads = mlt_service_cache_get_size(service.get_service(), "producer_avformat");
1243     int requestedThreads = tractor.count() + 4;
1244     if (requestedThreads > mltMaxThreads) {
1245         mlt_service_cache_set_size(service.get_service(), "producer_avformat", requestedThreads);
1246         kDebug()<<"// MLT threads updated to: "<<mlt_service_cache_get_size(service.get_service(), "producer_avformat");
1247     }
1248 }
1249
1250 const QString Render::sceneList()
1251 {
1252     QString playlist;
1253     Mlt::Profile profile((mlt_profile) 0);
1254     Mlt::Consumer xmlConsumer(profile, "xml:kdenlive_playlist");
1255     if (!xmlConsumer.is_valid()) return QString();
1256     m_mltProducer->optimise();
1257     xmlConsumer.set("terminate_on_pause", 1);
1258     Mlt::Producer prod(m_mltProducer->get_producer());
1259     if (!prod.is_valid()) return QString();
1260     bool split = m_isSplitView;
1261     if (split) slotSplitView(false);
1262     xmlConsumer.connect(prod);
1263     xmlConsumer.run();
1264     playlist = QString::fromUtf8(xmlConsumer.get("kdenlive_playlist"));
1265     if (split) slotSplitView(true);
1266     return playlist;
1267 }
1268
1269 bool Render::saveSceneList(QString path, QDomElement kdenliveData)
1270 {
1271     QFile file(path);
1272     QDomDocument doc;
1273     doc.setContent(sceneList(), false);
1274     if (doc.isNull()) return false;
1275     QDomElement root = doc.documentElement();
1276     if (!kdenliveData.isNull() && !root.isNull()) {
1277         // add Kdenlive specific tags
1278         root.appendChild(doc.importNode(kdenliveData, true));
1279     }
1280     if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
1281         kWarning() << "//////  ERROR writing to file: " << path;
1282         return false;
1283     }
1284     file.write(doc.toString().toUtf8());
1285     if (file.error() != QFile::NoError) {
1286         file.close();
1287         return false;
1288     }
1289     file.close();
1290     return true;
1291 }
1292
1293 void Render::saveZone(KUrl url, QString desc, QPoint zone)
1294 {
1295     Mlt::Consumer xmlConsumer(*m_mltProfile, ("xml:" + url.path()).toUtf8().constData());
1296     m_mltProducer->optimise();
1297     xmlConsumer.set("terminate_on_pause", 1);
1298     if (m_name == Kdenlive::clipMonitor) {
1299         Mlt::Producer *prod = m_mltProducer->cut(zone.x(), zone.y());
1300         Mlt::Playlist list;
1301         list.insert_at(0, prod, 0);
1302         delete prod;
1303         list.set("title", desc.toUtf8().constData());
1304         xmlConsumer.connect(list);
1305
1306     } else {
1307         //TODO: not working yet, save zone from timeline
1308         Mlt::Producer *p1 = new Mlt::Producer(m_mltProducer->get_producer());
1309         /* Mlt::Service service(p1->parent().get_service());
1310          if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";*/
1311
1312         //Mlt::Producer *prod = p1->cut(zone.x(), zone.y());
1313         //prod->set("title", desc.toUtf8().constData());
1314         xmlConsumer.connect(*p1); //list);
1315     }
1316
1317     xmlConsumer.start();
1318 }
1319
1320 double Render::fps() const
1321 {
1322     return m_fps;
1323 }
1324
1325 int Render::volume() const
1326 {
1327     if (!m_mltConsumer || !m_mltProducer) return -1;
1328     return ((int) 100 * m_mltProducer->get_double("meta.volume"));
1329 }
1330
1331 void Render::slotSetVolume(int volume)
1332 {
1333     if (!m_mltConsumer || !m_mltProducer) return;
1334     m_mltProducer->set("meta.volume", (double)volume / 100.0);
1335     return;
1336     /*osdTimer->stop();
1337     m_mltConsumer->set("refresh", 0);
1338     // Attach filter for on screen display of timecode
1339     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
1340     mlt_properties_set_double( properties, "meta.volume", volume );
1341     mlt_properties_set_int( properties, "meta.attr.osdvolume", 1);
1342     mlt_properties_set( properties, "meta.attr.osdvolume.markup", i18n("Volume: ") + QString::number(volume * 100));
1343
1344     if (!KdenliveSettings::osdtimecode()) {
1345     m_mltProducer->detach(*m_osdInfo);
1346     mlt_properties_set_int( properties, "meta.attr.timecode", 0);
1347      if (m_mltProducer->attach(*m_osdInfo) == 1) kDebug()<<"////// error attaching filter";
1348     }*/
1349     refresh();
1350     //m_osdTimer->setSingleShot(2500);
1351 }
1352
1353 void Render::slotOsdTimeout()
1354 {
1355     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
1356     mlt_properties_set_int(properties, "meta.attr.osdvolume", 0);
1357     mlt_properties_set(properties, "meta.attr.osdvolume.markup", NULL);
1358     //if (!KdenliveSettings::osdtimecode()) m_mltProducer->detach(*m_osdInfo);
1359     refresh();
1360 }
1361
1362 void Render::start()
1363 {
1364     m_refreshTimer.stop();
1365     QMutexLocker locker(&m_mutex);
1366     if (m_winid == -1) {
1367         kDebug() << "-----  BROKEN MONITOR: " << m_name << ", RESTART";
1368         return;
1369     }
1370     if (!m_mltConsumer) return;
1371     if (m_mltConsumer->is_stopped()) {
1372         if (m_mltConsumer->start() == -1) {
1373             //KMessageBox::error(qApp->activeWindow(), i18n("Could not create the video preview window.\nThere is something wrong with your Kdenlive install or your driver settings, please fix it."));
1374             kDebug(QtWarningMsg) << "/ / / / CANNOT START MONITOR";
1375         } else {
1376             m_mltConsumer->purge();
1377             m_mltConsumer->set("refresh", 1);
1378         }
1379     }
1380 }
1381
1382 void Render::stop()
1383 {
1384     m_refreshTimer.stop();
1385     QMutexLocker locker(&m_mutex);
1386     if (m_mltProducer == NULL) return;
1387     if (m_mltConsumer && !m_mltConsumer->is_stopped()) {
1388         m_mltConsumer->stop();
1389         m_mltConsumer->purge();
1390     }
1391
1392     if (m_mltProducer) {
1393         if (m_isZoneMode) resetZoneMode();
1394         m_mltProducer->set_speed(0.0);
1395     }
1396 }
1397
1398 void Render::stop(const GenTime & startTime)
1399 {
1400     m_refreshTimer.stop();
1401     QMutexLocker locker(&m_mutex);
1402     if (m_mltProducer) {
1403         if (m_isZoneMode) resetZoneMode();
1404         m_mltProducer->set_speed(0.0);
1405         m_mltProducer->seek((int) startTime.frames(m_fps));
1406     }
1407     m_mltConsumer->purge();
1408 }
1409
1410 void Render::pause()
1411 {
1412     if (!m_mltProducer || !m_mltConsumer)
1413         return;
1414     if (m_mltProducer->get_speed() == 0.0) return;
1415     if (m_isZoneMode) resetZoneMode();
1416     m_mltConsumer->set("refresh", 0);
1417     m_mltProducer->set_speed(0.0);
1418     m_mltConsumer->purge();
1419 }
1420
1421 void Render::switchPlay(bool play)
1422 {
1423     QMutexLocker locker(&m_mutex);
1424     if (!m_mltProducer || !m_mltConsumer)
1425         return;
1426     if (m_isZoneMode) resetZoneMode();
1427     if (play && m_mltProducer->get_speed() == 0.0) {
1428         if (m_name == Kdenlive::clipMonitor && m_mltConsumer->position() == m_mltProducer->get_out()) m_mltProducer->seek(0);
1429         if (m_mltConsumer->is_stopped()) {
1430             m_mltConsumer->start();
1431         }
1432         m_mltProducer->set_speed(1.0);
1433         m_mltConsumer->set("refresh", 1);
1434     } else if (!play) {
1435         m_mltProducer->set_speed(0.0);
1436         m_mltConsumer->set("refresh", 0);
1437         m_mltProducer->seek(m_mltConsumer->position());
1438         if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
1439         if (m_isZoneMode) resetZoneMode();
1440
1441         //emitConsumerStopped();
1442         /*m_mltConsumer->set("refresh", 0);
1443         m_mltConsumer->stop();
1444         m_mltConsumer->purge();
1445         m_mltProducer->set_speed(0.0);
1446         //m_framePosition = m_mltProducer->position();
1447         m_mltProducer->seek(m_framePosition);
1448         emit rendererPosition(m_framePosition);*/
1449     }
1450 }
1451
1452 void Render::play(double speed)
1453 {
1454     if (!m_mltProducer)
1455         return;
1456     // if (speed == 0.0) m_mltProducer->set("out", m_mltProducer->get_length() - 1);
1457     m_mltProducer->set_speed(speed);
1458     /*if (speed == 0.0) {
1459     m_mltProducer->seek((int) m_framePosition + 1);
1460         m_mltConsumer->purge();
1461     }*/
1462     refresh();
1463 }
1464
1465 void Render::play(const GenTime & startTime)
1466 {
1467     if (!m_mltProducer || !m_mltConsumer)
1468         return;
1469     m_mltProducer->seek((int)(startTime.frames(m_fps)));
1470     m_mltProducer->set_speed(1.0);
1471     m_mltConsumer->set("refresh", 1);
1472 }
1473
1474 void Render::loopZone(const GenTime & startTime, const GenTime & stopTime)
1475 {
1476     if (!m_mltProducer || !m_mltConsumer)
1477         return;
1478     //m_mltProducer->set("eof", "loop");
1479     m_isLoopMode = true;
1480     m_loopStart = startTime;
1481     playZone(startTime, stopTime);
1482 }
1483
1484 void Render::playZone(const GenTime & startTime, const GenTime & stopTime)
1485 {
1486     if (!m_mltProducer || !m_mltConsumer)
1487         return;
1488     if (!m_isZoneMode) m_originalOut = m_mltProducer->get_playtime() - 1;
1489     m_mltProducer->set("out", (int)(stopTime.frames(m_fps)));
1490     m_mltProducer->seek((int)(startTime.frames(m_fps)));
1491     m_mltProducer->set_speed(1.0);
1492     m_mltConsumer->set("refresh", 1);
1493     if (m_mltConsumer->is_stopped()) m_mltConsumer->start();
1494     m_isZoneMode = true;
1495 }
1496
1497 void Render::resetZoneMode()
1498 {
1499     if (!m_isZoneMode && !m_isLoopMode) return;
1500     m_mltProducer->set("out", m_originalOut);
1501     //m_mltProducer->set("eof", "pause");
1502     m_isZoneMode = false;
1503     m_isLoopMode = false;
1504 }
1505
1506 void Render::seekToFrame(int pos)
1507 {
1508     if (!m_mltProducer)
1509         return;
1510     resetZoneMode();
1511     m_mltProducer->seek(pos);
1512     if (m_mltProducer->get_speed() == 0) {
1513         refresh();
1514     }
1515 }
1516
1517 void Render::seekToFrameDiff(int diff)
1518 {
1519     if (!m_mltProducer)
1520         return;
1521     resetZoneMode();
1522     m_mltProducer->seek(m_mltProducer->position() + diff);
1523     refresh();
1524 }
1525
1526 void Render::doRefresh()
1527 {
1528     if (m_mltProducer && m_mltProducer->get_speed() == 0) m_refreshTimer.start();
1529 }
1530
1531 void Render::refresh()
1532 {
1533     QMutexLocker locker(&m_mutex);
1534     if (!m_mltProducer)
1535         return;
1536     if (m_mltConsumer) {
1537         if (m_mltConsumer->is_stopped()) m_mltConsumer->start();
1538         m_mltConsumer->purge();
1539         m_mltConsumer->set("refresh", 1);
1540     }
1541 }
1542
1543 void Render::setDropFrames(bool show)
1544 {
1545     QMutexLocker locker(&m_mutex);
1546     if (m_mltConsumer) {
1547         int dropFrames = KdenliveSettings::mltthreads();
1548         if (show == false) dropFrames = -dropFrames;
1549         m_mltConsumer->stop();
1550         if (m_winid == 0)
1551             m_mltConsumer->set("real_time", dropFrames);
1552         else
1553             m_mltConsumer->set("play.real_time", dropFrames);
1554
1555         if (m_mltConsumer->start() == -1) {
1556             kDebug(QtWarningMsg) << "ERROR, Cannot start monitor";
1557         }
1558
1559     }
1560 }
1561
1562 double Render::playSpeed() const
1563 {
1564     if (m_mltProducer) return m_mltProducer->get_speed();
1565     return 0.0;
1566 }
1567
1568 GenTime Render::seekPosition() const
1569 {
1570     if (m_mltProducer) return GenTime((int) m_mltProducer->position(), m_fps);
1571     else return GenTime();
1572 }
1573
1574 int Render::seekFramePosition() const
1575 {
1576     //if (m_mltProducer) return (int) m_mltProducer->position();
1577     if (m_mltConsumer) return (int) m_mltConsumer->position();
1578     return 0;
1579 }
1580
1581 const QString & Render::rendererName() const
1582 {
1583     return m_name;
1584 }
1585
1586 void Render::emitFrameUpdated(Mlt::Frame& frame)
1587 {
1588     mlt_image_format format = mlt_image_rgb24a;
1589     int width = 0;
1590     int height = 0;
1591     const uchar* image = frame.get_image(format, width, height);
1592     QImage qimage(width, height, QImage::Format_ARGB32_Premultiplied);
1593     memcpy(qimage.scanLine(0), image, width * height * 4);
1594
1595     /*mlt_image_format format = mlt_image_rgb24;
1596     int width = 0;
1597     int height = 0;
1598     const uchar* image = frame.get_image(format, width, height);
1599     QImage qimage(width, height, QImage::Format_RGB888);
1600     memcpy(qimage.bits(), image, width * height * 3);*/
1601     emit frameUpdated(qimage);
1602 }
1603
1604 void Render::emitFrameNumber()
1605 {
1606     if (m_mltConsumer) emit rendererPosition((int) m_mltConsumer->position());
1607 }
1608
1609 void Render::emitConsumerStopped()
1610 {
1611     // This is used to know when the playing stopped
1612     if (m_mltProducer) {
1613         double pos = m_mltProducer->position();
1614         if (m_isLoopMode) play(m_loopStart);
1615         //else if (m_isZoneMode) resetZoneMode();
1616         emit rendererStopped((int) pos);
1617     }
1618 }
1619
1620 void Render::exportFileToFirewire(QString /*srcFileName*/, int /*port*/, GenTime /*startTime*/, GenTime /*endTime*/)
1621 {
1622     KMessageBox::sorry(0, i18n("Firewire is not enabled on your system.\n Please install Libiec61883 and recompile Kdenlive"));
1623 }
1624
1625 void Render::exportCurrentFrame(KUrl url, bool /*notify*/)
1626 {
1627     if (!m_mltProducer) {
1628         KMessageBox::sorry(qApp->activeWindow(), i18n("There is no clip, cannot extract frame."));
1629         return;
1630     }
1631
1632     //int height = 1080;//KdenliveSettings::defaultheight();
1633     //int width = 1940; //KdenliveSettings::displaywidth();
1634     //TODO: rewrite
1635     QPixmap pix; // = KThumb::getFrame(m_mltProducer, -1, width, height);
1636     /*
1637        QPixmap pix(width, height);
1638        Mlt::Filter m_convert(*m_mltProfile, "avcolour_space");
1639        m_convert.set("forced", mlt_image_rgb24a);
1640        m_mltProducer->attach(m_convert);
1641        Mlt::Frame * frame = m_mltProducer->get_frame();
1642        m_mltProducer->detach(m_convert);
1643        if (frame) {
1644            pix = frameThumbnail(frame, width, height);
1645            delete frame;
1646        }*/
1647     pix.save(url.path(), "PNG");
1648     //if (notify) QApplication::postEvent(qApp->activeWindow(), new UrlEvent(url, 10003));
1649 }
1650
1651
1652 void Render::showFrame(Mlt::Frame& frame)
1653 {
1654     emit rendererPosition((int) m_mltConsumer->position());
1655     mlt_image_format format = mlt_image_rgb24a;
1656     int width = 0;
1657     int height = 0;
1658     const uchar* image = frame.get_image(format, width, height);
1659     QImage qimage(width, height, QImage::Format_ARGB32_Premultiplied);
1660     memcpy(qimage.scanLine(0), image, width * height * 4);
1661     emit showImageSignal(qimage);
1662     if (analyseAudio) showAudio(frame);
1663     if (sendFrameForAnalysis && frame.get_frame()->convert_image) {
1664         emit frameUpdated(qimage.rgbSwapped());
1665     }
1666 }
1667
1668 void Render::showAudio(Mlt::Frame& frame)
1669 {
1670     if (!frame.is_valid() || frame.get_int("test_audio") != 0) {
1671         return;
1672     }
1673     mlt_audio_format audio_format = mlt_audio_s16;
1674     int freq = 0;
1675     int num_channels = 0;
1676     int samples = 0;
1677     int16_t* data = (int16_t*)frame.get_audio(audio_format, freq, num_channels, samples);
1678
1679     if (!data) {
1680         return;
1681     }
1682
1683     // Data format: [ c00 c10 c01 c11 c02 c12 c03 c13 ... c0{samples-1} c1{samples-1} for 2 channels.
1684     // So the vector is of size samples*channels.
1685     QVector<int16_t> sampleVector(samples*num_channels);
1686     memcpy(sampleVector.data(), data, samples*num_channels*sizeof(int16_t));
1687
1688     if (samples > 0) {
1689         emit audioSamplesSignal(sampleVector, freq, num_channels, samples);
1690     }
1691 }
1692
1693 /*
1694  * MLT playlist direct manipulation.
1695  */
1696
1697 void Render::mltCheckLength(Mlt::Tractor *tractor)
1698 {
1699     //kDebug()<<"checking track length: "<<track<<"..........";
1700
1701     int trackNb = tractor->count();
1702     int duration = 0;
1703     int trackDuration;
1704     if (trackNb == 1) {
1705         Mlt::Producer trackProducer(tractor->track(0));
1706         duration = trackProducer.get_playtime() - 1;
1707         m_mltProducer->set("out", duration);
1708         emit durationChanged(duration);
1709         return;
1710     }
1711     while (trackNb > 1) {
1712         Mlt::Producer trackProducer(tractor->track(trackNb - 1));
1713         trackDuration = trackProducer.get_playtime() - 1;
1714         // kDebug() << " / / /DURATON FOR TRACK " << trackNb - 1 << " = " << trackDuration;
1715         if (trackDuration > duration) duration = trackDuration;
1716         trackNb--;
1717     }
1718
1719     Mlt::Producer blackTrackProducer(tractor->track(0));
1720
1721     if (blackTrackProducer.get_playtime() - 1 != duration) {
1722         Mlt::Playlist blackTrackPlaylist((mlt_playlist) blackTrackProducer.get_service());
1723         Mlt::Producer *blackclip = blackTrackPlaylist.get_clip(0);
1724         if (blackclip && blackclip->is_blank()) {
1725             delete blackclip;
1726             blackclip = NULL;
1727         }
1728
1729         if (blackclip == NULL || blackTrackPlaylist.count() != 1) {
1730             if (blackclip) delete blackclip;
1731             blackTrackPlaylist.clear();
1732             m_blackClip->set("length", duration + 1);
1733             m_blackClip->set("out", duration);
1734             blackclip = m_blackClip->cut(0, duration);
1735             blackTrackPlaylist.insert_at(0, blackclip, 1);
1736         } else {
1737             if (duration > blackclip->parent().get_length()) {
1738                 blackclip->parent().set("length", duration + 1);
1739                 blackclip->parent().set("out", duration);
1740                 blackclip->set("length", duration + 1);
1741             }
1742             blackTrackPlaylist.resize_clip(0, 0, duration);
1743         }
1744
1745         delete blackclip;
1746         m_mltProducer->set("out", duration);
1747         emit durationChanged(duration);
1748     }
1749 }
1750
1751 Mlt::Producer *Render::checkSlowMotionProducer(Mlt::Producer *prod, QDomElement element)
1752 {
1753     if (element.attribute("speed", "1.0").toDouble() == 1.0 && element.attribute("strobe", "1").toInt() == 1) return prod;
1754     QLocale locale;
1755     // We want a slowmotion producer
1756     double speed = element.attribute("speed", "1.0").toDouble();
1757     int strobe = element.attribute("strobe", "1").toInt();
1758     QString url = QString::fromUtf8(prod->get("resource"));
1759     url.append('?' + locale.toString(speed));
1760     if (strobe > 1) url.append("&strobe=" + QString::number(strobe));
1761     Mlt::Producer *slowprod = m_slowmotionProducers.value(url);
1762     if (!slowprod || slowprod->get_producer() == NULL) {
1763         slowprod = new Mlt::Producer(*m_mltProfile, 0, ("framebuffer:" + url).toUtf8().constData());
1764         if (strobe > 1) slowprod->set("strobe", strobe);
1765         QString id = prod->parent().get("id");
1766         if (id.contains('_')) id = id.section('_', 0, 0);
1767         QString producerid = "slowmotion:" + id + ':' + locale.toString(speed);
1768         if (strobe > 1) producerid.append(':' + QString::number(strobe));
1769         slowprod->set("id", producerid.toUtf8().constData());
1770         m_slowmotionProducers.insert(url, slowprod);
1771     }
1772     return slowprod;
1773 }
1774
1775 int Render::mltInsertClip(ItemInfo info, QDomElement element, Mlt::Producer *prod, bool overwrite, bool push)
1776 {
1777     if (m_mltProducer == NULL) {
1778         kDebug() << "PLAYLIST NOT INITIALISED //////";
1779         return -1;
1780     }
1781     if (prod == NULL) {
1782         kDebug() << "Cannot insert clip without producer //////";
1783         return -1;
1784     }
1785     Mlt::Producer parentProd(m_mltProducer->parent());
1786     if (parentProd.get_producer() == NULL) {
1787         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
1788         return -1;
1789     }
1790
1791     Mlt::Service service(parentProd.get_service());
1792     if (service.type() != tractor_type) {
1793         kWarning() << "// TRACTOR PROBLEM";
1794         return -1;
1795     }
1796     Mlt::Tractor tractor(service);
1797     if (info.track > tractor.count() - 1) {
1798         kDebug() << "ERROR TRYING TO INSERT CLIP ON TRACK " << info.track << ", at POS: " << info.startPos.frames(25);
1799         return -1;
1800     }
1801     service.lock();
1802     Mlt::Producer trackProducer(tractor.track(info.track));
1803     int trackDuration = trackProducer.get_playtime() - 1;
1804     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1805     //kDebug()<<"/// INSERT cLIP: "<<info.cropStart.frames(m_fps)<<", "<<info.startPos.frames(m_fps)<<"-"<<info.endPos.frames(m_fps);
1806     prod = checkSlowMotionProducer(prod, element);
1807     if (prod == NULL || !prod->is_valid()) {
1808         service.unlock();
1809         return -1;
1810     }
1811
1812     int cutPos = (int) info.cropStart.frames(m_fps);
1813     if (cutPos < 0) cutPos = 0;
1814     int insertPos = (int) info.startPos.frames(m_fps);
1815     int cutDuration = (int)(info.endPos - info.startPos).frames(m_fps) - 1;
1816     Mlt::Producer *clip = prod->cut(cutPos, cutDuration + cutPos);
1817     if (overwrite && (insertPos < trackDuration)) {
1818         // Replace zone with blanks
1819         //trackPlaylist.split_at(insertPos, true);
1820         trackPlaylist.remove_region(insertPos, cutDuration + 1);
1821         int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
1822         trackPlaylist.insert_blank(clipIndex, cutDuration);
1823     } else if (push) {
1824         trackPlaylist.split_at(insertPos, true);
1825         int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
1826         trackPlaylist.insert_blank(clipIndex, cutDuration);
1827     }
1828     int newIndex = trackPlaylist.insert_at(insertPos, clip, 1);
1829     delete clip;
1830     /*if (QString(prod->get("transparency")).toInt() == 1)
1831         mltAddClipTransparency(info, info.track - 1, QString(prod->get("id")).toInt());*/
1832
1833     if (info.track != 0 && (newIndex + 1 == trackPlaylist.count())) mltCheckLength(&tractor);
1834     service.unlock();
1835     /*tractor.multitrack()->refresh();
1836     tractor.refresh();*/
1837     return 0;
1838 }
1839
1840
1841 void Render::mltCutClip(int track, GenTime position)
1842 {
1843     Mlt::Service service(m_mltProducer->parent().get_service());
1844     if (service.type() != tractor_type) {
1845         kWarning() << "// TRACTOR PROBLEM";
1846         return;
1847     }
1848
1849     Mlt::Tractor tractor(service);
1850     Mlt::Producer trackProducer(tractor.track(track));
1851     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1852
1853
1854     /* // Display playlist info
1855     kDebug()<<"////////////  BEFORE";
1856     for (int i = 0; i < trackPlaylist.count(); i++) {
1857     int blankStart = trackPlaylist.clip_start(i);
1858     int blankDuration = trackPlaylist.clip_length(i) - 1;
1859     QString blk;
1860     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1861     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<'x'<<blankStart + blankDuration<<")"<<blk;
1862     }*/
1863
1864     int cutPos = (int) position.frames(m_fps);
1865
1866     int clipIndex = trackPlaylist.get_clip_index_at(cutPos);
1867     if (trackPlaylist.is_blank(clipIndex)) {
1868         kDebug() << "// WARNING, TRYING TO CUT A BLANK";
1869         return;
1870     }
1871     service.lock();
1872     int clipStart = trackPlaylist.clip_start(clipIndex);
1873     trackPlaylist.split(clipIndex, cutPos - clipStart - 1);
1874     service.unlock();
1875
1876     // duplicate effects
1877     Mlt::Producer *original = trackPlaylist.get_clip_at(clipStart);
1878     Mlt::Producer *clip = trackPlaylist.get_clip_at(cutPos);
1879
1880     if (original == NULL || clip == NULL) {
1881         kDebug() << "// ERROR GRABBING CLIP AFTER SPLIT";
1882     }
1883     Mlt::Service clipService(original->get_service());
1884     Mlt::Service dupService(clip->get_service());
1885     delete original;
1886     delete clip;
1887     int ct = 0;
1888     Mlt::Filter *filter = clipService.filter(ct);
1889     while (filter) {
1890         // Only duplicate Kdenlive filters, and skip the fade in effects
1891         if (filter->is_valid() && strcmp(filter->get("kdenlive_id"), "") && strcmp(filter->get("kdenlive_id"), "fadein") && strcmp(filter->get("kdenlive_id"), "fade_from_black")) {
1892             // looks like there is no easy way to duplicate a filter,
1893             // so we will create a new one and duplicate its properties
1894             Mlt::Filter *dup = new Mlt::Filter(*m_mltProfile, filter->get("mlt_service"));
1895             if (dup && dup->is_valid()) {
1896                 Mlt::Properties entries(filter->get_properties());
1897                 for (int i = 0; i < entries.count(); i++) {
1898                     dup->set(entries.get_name(i), entries.get(i));
1899                 }
1900                 dupService.attach(*dup);
1901             }
1902         }
1903         ct++;
1904         filter = clipService.filter(ct);
1905     }
1906
1907     /* // Display playlist info
1908     kDebug()<<"////////////  AFTER";
1909     for (int i = 0; i < trackPlaylist.count(); i++) {
1910     int blankStart = trackPlaylist.clip_start(i);
1911     int blankDuration = trackPlaylist.clip_length(i) - 1;
1912     QString blk;
1913     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1914     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<'x'<<blankStart + blankDuration<<")"<<blk;
1915     }*/
1916
1917 }
1918
1919 Mlt::Tractor *Render::lockService()
1920 {
1921     // we are going to replace some clips, purge consumer
1922     QMutexLocker locker(&m_mutex);
1923     if (!m_mltProducer) return NULL;
1924     if (m_mltConsumer) {
1925         if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
1926         m_mltConsumer->purge();
1927     }
1928     Mlt::Service service(m_mltProducer->parent().get_service());
1929     if (service.type() != tractor_type) {
1930         kWarning() << "// TRACTOR PROBLEM";
1931         return NULL;
1932     }
1933     service.lock();
1934     return new Mlt::Tractor(service);
1935
1936 }
1937
1938 void Render::unlockService(Mlt::Tractor *tractor)
1939 {
1940     if (tractor) {
1941         delete tractor;
1942     }
1943     if (!m_mltProducer) return;
1944     Mlt::Service service(m_mltProducer->parent().get_service());
1945     if (service.type() != tractor_type) {
1946         kWarning() << "// TRACTOR PROBLEM";
1947         return;
1948     }
1949     service.unlock();
1950 }
1951
1952 bool Render::mltUpdateClip(Mlt::Tractor *tractor, ItemInfo info, QDomElement element, Mlt::Producer *prod)
1953 {
1954     // TODO: optimize
1955     if (prod == NULL || tractor == NULL) {
1956         kDebug() << "Cannot update clip with null producer //////";
1957         return false;
1958     }
1959
1960     Mlt::Producer trackProducer(tractor->track(tractor->count() - 1 - info.track));
1961     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1962     int startPos = info.startPos.frames(m_fps);
1963     int clipIndex = trackPlaylist.get_clip_index_at(startPos);
1964     if (trackPlaylist.is_blank(clipIndex)) {
1965         kDebug() << "// WARNING, TRYING TO REMOVE A BLANK: " << startPos;
1966         return false;
1967     }
1968     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
1969     // keep effects
1970     QList <Mlt::Filter *> filtersList;
1971     Mlt::Service sourceService(clip->get_service());
1972     int ct = 0;
1973     Mlt::Filter *filter = sourceService.filter(ct);
1974     while (filter) {
1975         if (filter->get_int("kdenlive_ix") != 0) {
1976             filtersList.append(filter);
1977         }
1978         ct++;
1979         filter = sourceService.filter(ct);
1980     }
1981     delete clip;
1982     clip = trackPlaylist.replace_with_blank(clipIndex);
1983     delete clip;
1984     prod = checkSlowMotionProducer(prod, element);
1985     if (prod == NULL || !prod->is_valid()) {
1986         return false;
1987     }
1988
1989     Mlt::Producer *clip2 = prod->cut(info.cropStart.frames(m_fps), (info.cropDuration + info.cropStart).frames(m_fps) - 1);
1990     trackPlaylist.insert_at(info.startPos.frames(m_fps), clip2, 1);
1991     Mlt::Service destService(clip2->get_service());
1992     delete clip2;
1993
1994     if (!filtersList.isEmpty()) {
1995         for (int i = 0; i < filtersList.count(); i++)
1996             destService.attach(*(filtersList.at(i)));
1997     }
1998     return true;
1999 }
2000
2001
2002 bool Render::mltRemoveClip(int track, GenTime position)
2003 {
2004     Mlt::Service service(m_mltProducer->parent().get_service());
2005     if (service.type() != tractor_type) {
2006         kWarning() << "// TRACTOR PROBLEM";
2007         return false;
2008     }
2009     //service.lock();
2010     Mlt::Tractor tractor(service);
2011     Mlt::Producer trackProducer(tractor.track(track));
2012     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2013     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2014
2015     if (trackPlaylist.is_blank(clipIndex)) {
2016         kDebug() << "// WARNING, TRYING TO REMOVE A BLANK: " << position.frames(m_fps);
2017         //service.unlock();
2018         return false;
2019     }
2020     Mlt::Producer *clip = trackPlaylist.replace_with_blank(clipIndex);
2021     if (clip) delete clip;
2022     trackPlaylist.consolidate_blanks(0);
2023
2024     /* // Display playlist info
2025     kDebug()<<"////  AFTER";
2026     for (int i = 0; i < trackPlaylist.count(); i++) {
2027     int blankStart = trackPlaylist.clip_start(i);
2028     int blankDuration = trackPlaylist.clip_length(i) - 1;
2029     QString blk;
2030     if (trackPlaylist.is_blank(i)) blk = "(blank)";
2031     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<'x'<<blankStart + blankDuration<<")"<<blk;
2032     }*/
2033     //service.unlock();
2034     if (track != 0 && trackPlaylist.count() <= clipIndex) mltCheckLength(&tractor);
2035     return true;
2036 }
2037
2038 int Render::mltGetSpaceLength(const GenTime &pos, int track, bool fromBlankStart)
2039 {
2040     if (!m_mltProducer) {
2041         kDebug() << "PLAYLIST NOT INITIALISED //////";
2042         return 0;
2043     }
2044     Mlt::Producer parentProd(m_mltProducer->parent());
2045     if (parentProd.get_producer() == NULL) {
2046         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
2047         return 0;
2048     }
2049
2050     Mlt::Service service(parentProd.get_service());
2051     Mlt::Tractor tractor(service);
2052     int insertPos = pos.frames(m_fps);
2053
2054     Mlt::Producer trackProducer(tractor.track(track));
2055     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2056     int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
2057     if (clipIndex == trackPlaylist.count()) {
2058         // We are after the end of the playlist
2059         return -1;
2060     }
2061     if (!trackPlaylist.is_blank(clipIndex)) return 0;
2062     if (fromBlankStart) return trackPlaylist.clip_length(clipIndex);
2063     return trackPlaylist.clip_length(clipIndex) + trackPlaylist.clip_start(clipIndex) - insertPos;
2064 }
2065
2066 int Render::mltTrackDuration(int track)
2067 {
2068     if (!m_mltProducer) {
2069         kDebug() << "PLAYLIST NOT INITIALISED //////";
2070         return -1;
2071     }
2072     Mlt::Producer parentProd(m_mltProducer->parent());
2073     if (parentProd.get_producer() == NULL) {
2074         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
2075         return -1;
2076     }
2077
2078     Mlt::Service service(parentProd.get_service());
2079     Mlt::Tractor tractor(service);
2080
2081     Mlt::Producer trackProducer(tractor.track(track));
2082     return trackProducer.get_playtime() - 1;
2083 }
2084
2085 void Render::mltInsertSpace(QMap <int, int> trackClipStartList, QMap <int, int> trackTransitionStartList, int track, const GenTime &duration, const GenTime &timeOffset)
2086 {
2087     if (!m_mltProducer) {
2088         kDebug() << "PLAYLIST NOT INITIALISED //////";
2089         return;
2090     }
2091     Mlt::Producer parentProd(m_mltProducer->parent());
2092     if (parentProd.get_producer() == NULL) {
2093         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
2094         return;
2095     }
2096     //kDebug()<<"// CLP STRT LST: "<<trackClipStartList;
2097     //kDebug()<<"// TRA STRT LST: "<<trackTransitionStartList;
2098
2099     Mlt::Service service(parentProd.get_service());
2100     Mlt::Tractor tractor(service);
2101     service.lock();
2102     int diff = duration.frames(m_fps);
2103     int offset = timeOffset.frames(m_fps);
2104     int insertPos;
2105
2106     if (track != -1) {
2107         // insert space in one track only
2108         Mlt::Producer trackProducer(tractor.track(track));
2109         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2110         insertPos = trackClipStartList.value(track);
2111         if (insertPos != -1) {
2112             insertPos += offset;
2113             int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
2114             if (diff > 0) {
2115                 trackPlaylist.insert_blank(clipIndex, diff - 1);
2116             } else {
2117                 if (!trackPlaylist.is_blank(clipIndex)) clipIndex --;
2118                 if (!trackPlaylist.is_blank(clipIndex)) {
2119                     kDebug() << "//// ERROR TRYING TO DELETE SPACE FROM " << insertPos;
2120                 }
2121                 int position = trackPlaylist.clip_start(clipIndex);
2122                 int blankDuration = trackPlaylist.clip_length(clipIndex);
2123                 if (blankDuration + diff == 0) {
2124                     trackPlaylist.remove(clipIndex);
2125                 } else trackPlaylist.remove_region(position, -diff);
2126             }
2127             trackPlaylist.consolidate_blanks(0);
2128         }
2129         // now move transitions
2130         mlt_service serv = m_mltProducer->parent().get_service();
2131         mlt_service nextservice = mlt_service_get_producer(serv);
2132         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2133         QString mlt_type = mlt_properties_get(properties, "mlt_type");
2134         QString resource = mlt_properties_get(properties, "mlt_service");
2135
2136         while (mlt_type == "transition") {
2137             mlt_transition tr = (mlt_transition) nextservice;
2138             int currentTrack = mlt_transition_get_b_track(tr);
2139             int currentIn = (int) mlt_transition_get_in(tr);
2140             int currentOut = (int) mlt_transition_get_out(tr);
2141             insertPos = trackTransitionStartList.value(track);
2142             if (insertPos != -1) {
2143                 insertPos += offset;
2144                 if (track == currentTrack && currentOut > insertPos && resource != "mix") {
2145                     mlt_transition_set_in_and_out(tr, currentIn + diff, currentOut + diff);
2146                 }
2147             }
2148             nextservice = mlt_service_producer(nextservice);
2149             if (nextservice == NULL) break;
2150             properties = MLT_SERVICE_PROPERTIES(nextservice);
2151             mlt_type = mlt_properties_get(properties, "mlt_type");
2152             resource = mlt_properties_get(properties, "mlt_service");
2153         }
2154     } else {
2155         for (int trackNb = tractor.count() - 1; trackNb >= 1; --trackNb) {
2156             Mlt::Producer trackProducer(tractor.track(trackNb));
2157             Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2158
2159             //int clipNb = trackPlaylist.count();
2160             insertPos = trackClipStartList.value(trackNb);
2161             if (insertPos != -1) {
2162                 insertPos += offset;
2163
2164                 /* kDebug()<<"-------------\nTRACK "<<trackNb<<" HAS "<<clipNb<<" CLPIS";
2165                  kDebug() << "INSERT SPACE AT: "<<insertPos<<", DIFF: "<<diff<<", TK: "<<trackNb;
2166                         for (int i = 0; i < clipNb; i++) {
2167                             kDebug()<<"CLIP "<<i<<", START: "<<trackPlaylist.clip_start(i)<<", END: "<<trackPlaylist.clip_start(i) + trackPlaylist.clip_length(i);
2168                      if (trackPlaylist.is_blank(i)) kDebug()<<"++ BLANK ++ ";
2169                      kDebug()<<"-------------";
2170                  }
2171                  kDebug()<<"END-------------";*/
2172
2173
2174                 int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
2175                 if (diff > 0) {
2176                     trackPlaylist.insert_blank(clipIndex, diff - 1);
2177                 } else {
2178                     if (!trackPlaylist.is_blank(clipIndex)) {
2179                         clipIndex --;
2180                     }
2181                     if (!trackPlaylist.is_blank(clipIndex)) {
2182                         kDebug() << "//// ERROR TRYING TO DELETE SPACE FROM " << insertPos;
2183                     }
2184                     int position = trackPlaylist.clip_start(clipIndex);
2185                     int blankDuration = trackPlaylist.clip_length(clipIndex);
2186                     if (diff + blankDuration == 0) {
2187                         trackPlaylist.remove(clipIndex);
2188                     } else trackPlaylist.remove_region(position, - diff);
2189                 }
2190                 trackPlaylist.consolidate_blanks(0);
2191             }
2192         }
2193         // now move transitions
2194         mlt_service serv = m_mltProducer->parent().get_service();
2195         mlt_service nextservice = mlt_service_get_producer(serv);
2196         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2197         QString mlt_type = mlt_properties_get(properties, "mlt_type");
2198         QString resource = mlt_properties_get(properties, "mlt_service");
2199
2200         while (mlt_type == "transition") {
2201             mlt_transition tr = (mlt_transition) nextservice;
2202             int currentIn = (int) mlt_transition_get_in(tr);
2203             int currentOut = (int) mlt_transition_get_out(tr);
2204             int currentTrack = mlt_transition_get_b_track(tr);
2205             insertPos = trackTransitionStartList.value(currentTrack);
2206             if (insertPos != -1) {
2207                 insertPos += offset;
2208                 if (currentOut > insertPos && resource != "mix") {
2209                     mlt_transition_set_in_and_out(tr, currentIn + diff, currentOut + diff);
2210                 }
2211             }
2212             nextservice = mlt_service_producer(nextservice);
2213             if (nextservice == NULL) break;
2214             properties = MLT_SERVICE_PROPERTIES(nextservice);
2215             mlt_type = mlt_properties_get(properties, "mlt_type");
2216             resource = mlt_properties_get(properties, "mlt_service");
2217         }
2218     }
2219     service.unlock();
2220     mltCheckLength(&tractor);
2221     m_mltConsumer->set("refresh", 1);
2222 }
2223
2224
2225 void Render::mltPasteEffects(Mlt::Producer *source, Mlt::Producer *dest)
2226 {
2227     if (source == dest) return;
2228     Mlt::Service sourceService(source->get_service());
2229     Mlt::Service destService(dest->get_service());
2230
2231     // move all effects to the correct producer
2232     int ct = 0;
2233     Mlt::Filter *filter = sourceService.filter(ct);
2234     while (filter) {
2235         if (filter->get_int("kdenlive_ix") != 0) {
2236             sourceService.detach(*filter);
2237             destService.attach(*filter);
2238         } else ct++;
2239         filter = sourceService.filter(ct);
2240     }
2241 }
2242
2243 int Render::mltChangeClipSpeed(ItemInfo info, ItemInfo speedIndependantInfo, double speed, double /*oldspeed*/, int strobe, Mlt::Producer *prod)
2244 {
2245     int newLength = 0;
2246     Mlt::Service service(m_mltProducer->parent().get_service());
2247     if (service.type() != tractor_type) {
2248         kWarning() << "// TRACTOR PROBLEM";
2249         return -1;
2250     }
2251
2252     //kDebug() << "Changing clip speed, set in and out: " << info.cropStart.frames(m_fps) << " to " << (info.endPos - info.startPos).frames(m_fps) - 1;
2253     Mlt::Tractor tractor(service);
2254     Mlt::Producer trackProducer(tractor.track(info.track));
2255     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2256     int startPos = info.startPos.frames(m_fps);
2257     int clipIndex = trackPlaylist.get_clip_index_at(startPos);
2258     int clipLength = trackPlaylist.clip_length(clipIndex);
2259
2260     Mlt::Producer *original = trackPlaylist.get_clip(clipIndex);
2261     if (original == NULL) {
2262         return -1;
2263     }
2264     if (!original->is_valid() || original->is_blank()) {
2265         // invalid clip
2266         delete original;
2267         return -1;
2268     }
2269     Mlt::Producer clipparent = original->parent();
2270     if (!clipparent.is_valid() || clipparent.is_blank()) {
2271         // invalid clip
2272         delete original;
2273         return -1;
2274     }
2275
2276     QString serv = clipparent.get("mlt_service");
2277     QString id = clipparent.get("id");
2278     if (speed <= 0 && speed > -1) speed = 1.0;
2279     //kDebug() << "CLIP SERVICE: " << serv;
2280     if ((serv == "avformat" || serv == "avformat-novalidate") && (speed != 1.0 || strobe > 1)) {
2281         service.lock();
2282         QString url = QString::fromUtf8(clipparent.get("resource"));
2283         url.append('?' + m_locale.toString(speed));
2284         if (strobe > 1) url.append("&strobe=" + QString::number(strobe));
2285         Mlt::Producer *slowprod = m_slowmotionProducers.value(url);
2286         if (!slowprod || slowprod->get_producer() == NULL) {
2287             slowprod = new Mlt::Producer(*m_mltProfile, 0, ("framebuffer:" + url).toUtf8().constData());
2288             if (strobe > 1) slowprod->set("strobe", strobe);
2289             QString producerid = "slowmotion:" + id + ':' + m_locale.toString(speed);
2290             if (strobe > 1) producerid.append(':' + QString::number(strobe));
2291             slowprod->set("id", producerid.toUtf8().constData());
2292             // copy producer props
2293             double ar = original->parent().get_double("force_aspect_ratio");
2294             if (ar != 0.0) slowprod->set("force_aspect_ratio", ar);
2295             double fps = original->parent().get_double("force_fps");
2296             if (fps != 0.0) slowprod->set("force_fps", fps);
2297             int threads = original->parent().get_int("threads");
2298             if (threads != 0) slowprod->set("threads", threads);
2299             if (original->parent().get("force_progressive"))
2300                 slowprod->set("force_progressive", original->parent().get_int("force_progressive"));
2301             if (original->parent().get("force_tff"))
2302                 slowprod->set("force_tff", original->parent().get_int("force_tff"));
2303             int ix = original->parent().get_int("video_index");
2304             if (ix != 0) slowprod->set("video_index", ix);
2305             int colorspace = original->parent().get_int("force_colorspace");
2306             if (colorspace != 0) slowprod->set("force_colorspace", colorspace);
2307             int full_luma = original->parent().get_int("set.force_full_luma");
2308             if (full_luma != 0) slowprod->set("set.force_full_luma", full_luma);
2309             m_slowmotionProducers.insert(url, slowprod);
2310         }
2311         Mlt::Producer *clip = trackPlaylist.replace_with_blank(clipIndex);
2312         trackPlaylist.consolidate_blanks(0);
2313
2314         // Check that the blank space is long enough for our new duration
2315         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2316         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
2317         Mlt::Producer *cut;
2318         if (clipIndex + 1 < trackPlaylist.count() && (startPos + clipLength / speed > blankEnd)) {
2319             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
2320             cut = slowprod->cut((int)(info.cropStart.frames(m_fps) / speed), (int)(info.cropStart.frames(m_fps) / speed + maxLength.frames(m_fps) - 1));
2321         } else cut = slowprod->cut((int)(info.cropStart.frames(m_fps) / speed), (int)((info.cropStart.frames(m_fps) + clipLength) / speed - 1));
2322
2323         // move all effects to the correct producer
2324         mltPasteEffects(clip, cut);
2325         trackPlaylist.insert_at(startPos, cut, 1);
2326         delete cut;
2327         delete clip;
2328         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2329         newLength = trackPlaylist.clip_length(clipIndex);
2330         service.unlock();
2331     } else if (speed == 1.0 && strobe < 2) {
2332         service.lock();
2333
2334         Mlt::Producer *clip = trackPlaylist.replace_with_blank(clipIndex);
2335         trackPlaylist.consolidate_blanks(0);
2336
2337         // Check that the blank space is long enough for our new duration
2338         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2339         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
2340
2341         Mlt::Producer *cut;
2342         int originalStart = (int)(speedIndependantInfo.cropStart.frames(m_fps));
2343         if (clipIndex + 1 < trackPlaylist.count() && (info.startPos + speedIndependantInfo.cropDuration).frames(m_fps) > blankEnd) {
2344             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
2345             cut = prod->cut(originalStart, (int)(originalStart + maxLength.frames(m_fps) - 1));
2346         } else cut = prod->cut(originalStart, (int)(originalStart + speedIndependantInfo.cropDuration.frames(m_fps)) - 1);
2347
2348         // move all effects to the correct producer
2349         mltPasteEffects(clip, cut);
2350
2351         trackPlaylist.insert_at(startPos, cut, 1);
2352         delete cut;
2353         delete clip;
2354         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2355         newLength = trackPlaylist.clip_length(clipIndex);
2356         service.unlock();
2357
2358     } else if (serv == "framebuffer") {
2359         service.lock();
2360         QString url = QString::fromUtf8(clipparent.get("resource"));
2361         url = url.section('?', 0, 0);
2362         url.append('?' + m_locale.toString(speed));
2363         if (strobe > 1) url.append("&strobe=" + QString::number(strobe));
2364         Mlt::Producer *slowprod = m_slowmotionProducers.value(url);
2365         if (!slowprod || slowprod->get_producer() == NULL) {
2366             slowprod = new Mlt::Producer(*m_mltProfile, 0, ("framebuffer:" + url).toUtf8().constData());
2367             slowprod->set("strobe", strobe);
2368             QString producerid = "slowmotion:" + id.section(':', 1, 1) + ':' + m_locale.toString(speed);
2369             if (strobe > 1) producerid.append(':' + QString::number(strobe));
2370             slowprod->set("id", producerid.toUtf8().constData());
2371             // copy producer props
2372             double ar = original->parent().get_double("force_aspect_ratio");
2373             if (ar != 0.0) slowprod->set("force_aspect_ratio", ar);
2374             double fps = original->parent().get_double("force_fps");
2375             if (fps != 0.0) slowprod->set("force_fps", fps);
2376             if (original->parent().get("force_progressive"))
2377                 slowprod->set("force_progressive", original->parent().get_int("force_progressive"));
2378             if (original->parent().get("force_tff"))
2379                 slowprod->set("force_tff", original->parent().get_int("force_tff"));
2380             int threads = original->parent().get_int("threads");
2381             if (threads != 0) slowprod->set("threads", threads);
2382             int ix = original->parent().get_int("video_index");
2383             if (ix != 0) slowprod->set("video_index", ix);
2384             int colorspace = original->parent().get_int("force_colorspace");
2385             if (colorspace != 0) slowprod->set("force_colorspace", colorspace);
2386             int full_luma = original->parent().get_int("set.force_full_luma");
2387             if (full_luma != 0) slowprod->set("set.force_full_luma", full_luma);
2388             m_slowmotionProducers.insert(url, slowprod);
2389         }
2390         Mlt::Producer *clip = trackPlaylist.replace_with_blank(clipIndex);
2391         trackPlaylist.consolidate_blanks(0);
2392
2393         GenTime duration = speedIndependantInfo.cropDuration / speed;
2394         int originalStart = (int)(speedIndependantInfo.cropStart.frames(m_fps) / speed);
2395
2396         // Check that the blank space is long enough for our new duration
2397         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2398         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
2399
2400         Mlt::Producer *cut;
2401         if (clipIndex + 1 < trackPlaylist.count() && (info.startPos + duration).frames(m_fps) > blankEnd) {
2402             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
2403             cut = slowprod->cut(originalStart, (int)(originalStart + maxLength.frames(m_fps) - 1));
2404         } else cut = slowprod->cut(originalStart, (int)(originalStart + duration.frames(m_fps)) - 1);
2405
2406         // move all effects to the correct producer
2407         mltPasteEffects(clip, cut);
2408
2409         trackPlaylist.insert_at(startPos, cut, 1);
2410         delete cut;
2411         delete clip;
2412         clipIndex = trackPlaylist.get_clip_index_at(startPos);
2413         newLength = trackPlaylist.clip_length(clipIndex);
2414
2415         service.unlock();
2416     }
2417     delete original;
2418     if (clipIndex + 1 == trackPlaylist.count()) mltCheckLength(&tractor);
2419     return newLength;
2420 }
2421
2422 bool Render::mltRemoveTrackEffect(int track, int index, bool updateIndex)
2423 {
2424     Mlt::Service service(m_mltProducer->parent().get_service());
2425     bool success = false;
2426     Mlt::Tractor tractor(service);
2427     Mlt::Producer trackProducer(tractor.track(track));
2428     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2429     Mlt::Service clipService(trackPlaylist.get_service());
2430
2431     service.lock();
2432     int ct = 0;
2433     Mlt::Filter *filter = clipService.filter(ct);
2434     while (filter) {
2435         if ((index == -1 && strcmp(filter->get("kdenlive_id"), ""))  || filter->get_int("kdenlive_ix") == index) {
2436             if (clipService.detach(*filter) == 0) success = true;
2437         } else if (updateIndex) {
2438             // Adjust the other effects index
2439             if (filter->get_int("kdenlive_ix") > index) filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") - 1);
2440             ct++;
2441         } else ct++;
2442         filter = clipService.filter(ct);
2443     }
2444     service.unlock();
2445     refresh();
2446     return success;
2447 }
2448
2449 bool Render::mltRemoveEffect(int track, GenTime position, int index, bool updateIndex, bool doRefresh)
2450 {
2451     if (position < GenTime()) {
2452         // Remove track effect
2453         return mltRemoveTrackEffect(track, index, updateIndex);
2454     }
2455     Mlt::Service service(m_mltProducer->parent().get_service());
2456     bool success = false;
2457     Mlt::Tractor tractor(service);
2458     Mlt::Producer trackProducer(tractor.track(track));
2459     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2460
2461     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2462     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2463     if (!clip) {
2464         kDebug() << " / / / CANNOT FIND CLIP TO REMOVE EFFECT";
2465         return false;
2466     }
2467
2468     Mlt::Service clipService(clip->get_service());
2469     int duration = clip->get_playtime();
2470     if (doRefresh) {
2471         // Check if clip is visible in monitor
2472         int diff = trackPlaylist.clip_start(clipIndex) + duration - m_mltProducer->position();
2473         if (diff < 0 || diff > duration) doRefresh = false;
2474     }
2475     delete clip;
2476
2477     service.lock();
2478     int ct = 0;
2479     Mlt::Filter *filter = clipService.filter(ct);
2480     while (filter) {
2481         if ((index == -1 && strcmp(filter->get("kdenlive_id"), ""))  || filter->get_int("kdenlive_ix") == index) {// && filter->get("kdenlive_id") == id) {
2482             if (clipService.detach(*filter) == 0) success = true;
2483             //kDebug()<<"Deleted filter id:"<<filter->get("kdenlive_id")<<", ix:"<<filter->get("kdenlive_ix")<<", SERVICE:"<<filter->get("mlt_service");
2484         } else if (updateIndex) {
2485             // Adjust the other effects index
2486             if (filter->get_int("kdenlive_ix") > index) filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") - 1);
2487             ct++;
2488         } else ct++;
2489         filter = clipService.filter(ct);
2490     }
2491     service.unlock();
2492     if (doRefresh) refresh();
2493     return success;
2494 }
2495
2496 bool Render::mltAddTrackEffect(int track, EffectsParameterList params)
2497 {
2498     Mlt::Service service(m_mltProducer->parent().get_service());
2499     Mlt::Tractor tractor(service);
2500     Mlt::Producer trackProducer(tractor.track(track));
2501     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2502     Mlt::Service trackService(trackProducer.get_service()); //trackPlaylist
2503     return mltAddEffect(trackService, params, trackProducer.get_playtime() - 1, true);
2504 }
2505
2506
2507 bool Render::mltAddEffect(int track, GenTime position, EffectsParameterList params, bool doRefresh)
2508 {
2509
2510     Mlt::Service service(m_mltProducer->parent().get_service());
2511
2512     Mlt::Tractor tractor(service);
2513     Mlt::Producer trackProducer(tractor.track(track));
2514     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2515
2516     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2517     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2518     if (!clip) {
2519         return false;
2520     }
2521
2522     Mlt::Service clipService(clip->get_service());
2523     int duration = clip->get_playtime();
2524     if (doRefresh) {
2525         // Check if clip is visible in monitor
2526         int diff = trackPlaylist.clip_start(clipIndex) + duration - m_mltProducer->position();
2527         if (diff < 0 || diff > duration) doRefresh = false;
2528     }
2529     delete clip;
2530     return mltAddEffect(clipService, params, duration, doRefresh);
2531 }
2532
2533 bool Render::mltAddEffect(Mlt::Service service, EffectsParameterList params, int duration, bool doRefresh)
2534 {
2535     bool updateIndex = false;
2536     const int filter_ix = params.paramValue("kdenlive_ix").toInt();
2537     const QString region =  params.paramValue("region");
2538     int ct = 0;
2539     service.lock();
2540
2541     Mlt::Filter *filter = service.filter(ct);
2542     while (filter) {
2543         if (filter->get_int("kdenlive_ix") == filter_ix) {
2544             // A filter at that position already existed, so we will increase all indexes later
2545             updateIndex = true;
2546             break;
2547         }
2548         ct++;
2549         filter = service.filter(ct);
2550     }
2551
2552     if (params.paramValue("id") == "speed") {
2553         // special case, speed effect is not really inserted, we just update the other effects index (kdenlive_ix)
2554         ct = 0;
2555         filter = service.filter(ct);
2556         while (filter) {
2557             if (filter->get_int("kdenlive_ix") >= filter_ix) {
2558                 if (updateIndex) filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") + 1);
2559             }
2560             ct++;
2561             filter = service.filter(ct);
2562         }
2563         service.unlock();
2564         if (doRefresh) refresh();
2565         return true;
2566     }
2567
2568
2569     // temporarily remove all effects after insert point
2570     QList <Mlt::Filter *> filtersList;
2571     ct = 0;
2572     filter = service.filter(ct);
2573     while (filter) {
2574         if (filter->get_int("kdenlive_ix") >= filter_ix) {
2575             filtersList.append(filter);
2576             service.detach(*filter);
2577         } else ct++;
2578         filter = service.filter(ct);
2579     }
2580
2581     // create filter
2582     QString tag =  params.paramValue("tag");
2583     //kDebug() << " / / INSERTING EFFECT: " << tag << ", REGI: " << region;
2584     char *filterTag = qstrdup(tag.toUtf8().constData());
2585     char *filterId = qstrdup(params.paramValue("id").toUtf8().constData());
2586     QHash<QString, QString>::Iterator it;
2587     QString kfr = params.paramValue("keyframes");
2588
2589     if (!kfr.isEmpty()) {
2590         QStringList keyFrames = kfr.split(';', QString::SkipEmptyParts);
2591         //kDebug() << "// ADDING KEYFRAME EFFECT: " << params.paramValue("keyframes");
2592         char *starttag = qstrdup(params.paramValue("starttag", "start").toUtf8().constData());
2593         char *endtag = qstrdup(params.paramValue("endtag", "end").toUtf8().constData());
2594         //kDebug() << "// ADDING KEYFRAME TAGS: " << starttag << ", " << endtag;
2595         //double max = params.paramValue("max").toDouble();
2596         double min = params.paramValue("min").toDouble();
2597         double factor = params.paramValue("factor", "1").toDouble();
2598         double paramOffset = params.paramValue("offset", "0").toDouble();
2599         params.removeParam("starttag");
2600         params.removeParam("endtag");
2601         params.removeParam("keyframes");
2602         params.removeParam("min");
2603         params.removeParam("max");
2604         params.removeParam("factor");
2605         params.removeParam("offset");
2606         int offset = 0;
2607         // Special case, only one keyframe, means we want a constant value
2608         if (keyFrames.count() == 1) {
2609             Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, filterTag);
2610             if (filter && filter->is_valid()) {
2611                 filter->set("kdenlive_id", filterId);
2612                 int x1 = keyFrames.at(0).section(':', 0, 0).toInt();
2613                 double y1 = keyFrames.at(0).section(':', 1, 1).toDouble();
2614                 for (int j = 0; j < params.count(); j++) {
2615                     filter->set(params.at(j).name().toUtf8().constData(), params.at(j).value().toUtf8().constData());
2616                 }
2617                 filter->set("in", x1);
2618                 //kDebug() << "// ADDING KEYFRAME vals: " << min<<" / "<<max<<", "<<y1<<", factor: "<<factor;
2619                 filter->set(starttag, m_locale.toString(((min + y1) - paramOffset) / factor).toUtf8().data());
2620                 service.attach(*filter);
2621             }
2622         } else for (int i = 0; i < keyFrames.size() - 1; ++i) {
2623                 Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, filterTag);
2624                 if (filter && filter->is_valid()) {
2625                     filter->set("kdenlive_id", filterId);
2626                     int x1 = keyFrames.at(i).section(':', 0, 0).toInt() + offset;
2627                     double y1 = keyFrames.at(i).section(':', 1, 1).toDouble();
2628                     int x2 = keyFrames.at(i + 1).section(':', 0, 0).toInt();
2629                     double y2 = keyFrames.at(i + 1).section(':', 1, 1).toDouble();
2630                     if (x2 == -1) x2 = duration;
2631
2632                     for (int j = 0; j < params.count(); j++) {
2633                         filter->set(params.at(j).name().toUtf8().constData(), params.at(j).value().toUtf8().constData());
2634                     }
2635
2636                     filter->set("in", x1);
2637                     filter->set("out", x2);
2638                     //kDebug() << "// ADDING KEYFRAME vals: " << min<<" / "<<max<<", "<<y1<<", factor: "<<factor;
2639                     filter->set(starttag, m_locale.toString(((min + y1) - paramOffset) / factor).toUtf8().data());
2640                     filter->set(endtag, m_locale.toString(((min + y2) - paramOffset) / factor).toUtf8().data());
2641                     service.attach(*filter);
2642                     offset = 1;
2643                 }
2644             }
2645         delete[] starttag;
2646         delete[] endtag;
2647     } else {
2648         Mlt::Filter *filter;
2649         QString prefix;
2650         if (!region.isEmpty()) {
2651             filter = new Mlt::Filter(*m_mltProfile, "region");
2652         } else filter = new Mlt::Filter(*m_mltProfile, filterTag);
2653         if (filter && filter->is_valid()) {
2654             filter->set("kdenlive_id", filterId);
2655             if (!region.isEmpty()) {
2656                 filter->set("resource", region.toUtf8().constData());
2657                 filter->set("kdenlive_ix", params.paramValue("kdenlive_ix").toUtf8().constData());
2658                 filter->set("filter0", filterTag);
2659                 prefix = "filter0.";
2660                 params.removeParam("id");
2661                 params.removeParam("region");
2662                 params.removeParam("kdenlive_ix");
2663             }
2664         } else {
2665             kDebug() << "filter is NULL";
2666             service.unlock();
2667             return false;
2668         }
2669         params.removeParam("kdenlive_id");
2670         if (params.hasParam("_sync_in_out")) {
2671             // This effect must sync in / out with parent clip
2672             params.removeParam("_sync_in_out");
2673             filter->set_in_and_out(service.get_int("in"), service.get_int("out"));
2674         }
2675
2676         for (int j = 0; j < params.count(); j++) {
2677             filter->set((prefix + params.at(j).name()).toUtf8().constData(), params.at(j).value().toUtf8().constData());
2678         }
2679
2680         if (tag == "sox") {
2681             QString effectArgs = params.paramValue("id").section('_', 1);
2682
2683             params.removeParam("id");
2684             params.removeParam("kdenlive_ix");
2685             params.removeParam("tag");
2686             params.removeParam("disable");
2687             params.removeParam("region");
2688
2689             for (int j = 0; j < params.count(); j++) {
2690                 effectArgs.append(' ' + params.at(j).value());
2691             }
2692             //kDebug() << "SOX EFFECTS: " << effectArgs.simplified();
2693             filter->set("effect", effectArgs.simplified().toUtf8().constData());
2694         }
2695
2696         // attach filter to the clip
2697         service.attach(*filter);
2698     }
2699     delete[] filterId;
2700     delete[] filterTag;
2701
2702     // re-add following filters
2703     for (int i = 0; i < filtersList.count(); i++) {
2704         Mlt::Filter *filter = filtersList.at(i);
2705         if (updateIndex)
2706             filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") + 1);
2707         service.attach(*filter);
2708     }
2709     service.unlock();
2710     if (doRefresh) refresh();
2711     return true;
2712 }
2713
2714 bool Render::mltEditTrackEffect(int track, EffectsParameterList params)
2715 {
2716     Mlt::Service service(m_mltProducer->parent().get_service());
2717     Mlt::Tractor tractor(service);
2718     Mlt::Producer trackProducer(tractor.track(track));
2719     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2720     Mlt::Service clipService(trackPlaylist.get_service());
2721     int ct = 0;
2722     QString index = params.paramValue("kdenlive_ix");
2723     QString tag =  params.paramValue("tag");
2724
2725     Mlt::Filter *filter = clipService.filter(ct);
2726     while (filter) {
2727         if (filter->get_int("kdenlive_ix") == index.toInt()) {
2728             break;
2729         }
2730         ct++;
2731         filter = clipService.filter(ct);
2732     }
2733
2734     if (!filter) {
2735         kDebug() << "WARINIG, FILTER FOR EDITING NOT FOUND, ADDING IT! " << index << ", " << tag;
2736         // filter was not found, it was probably a disabled filter, so add it to the correct place...
2737
2738         bool success = false;//mltAddTrackEffect(track, params);
2739         return success;
2740     }
2741     QString prefix;
2742     QString ser = filter->get("mlt_service");
2743     if (ser == "region") prefix = "filter0.";
2744     service.lock();
2745     for (int j = 0; j < params.count(); j++) {
2746         filter->set((prefix + params.at(j).name()).toUtf8().constData(), params.at(j).value().toUtf8().constData());
2747     }
2748     service.unlock();
2749
2750     refresh();
2751     return true;
2752
2753 }
2754
2755 bool Render::mltEditEffect(int track, GenTime position, EffectsParameterList params)
2756 {
2757     int index = params.paramValue("kdenlive_ix").toInt();
2758     QString tag =  params.paramValue("tag");
2759
2760     if (!params.paramValue("keyframes").isEmpty() || /*it.key().startsWith("#") || */tag.startsWith("ladspa") || tag == "sox" || tag == "autotrack_rectangle" || params.hasParam("region")) {
2761         // This is a keyframe effect, to edit it, we remove it and re-add it.
2762         bool success = mltRemoveEffect(track, position, index, false);
2763 //         if (!success) kDebug() << "// ERROR Removing effect : " << index;
2764         if (position < GenTime())
2765             success = mltAddTrackEffect(track, params);
2766         else
2767             success = mltAddEffect(track, position, params);
2768 //         if (!success) kDebug() << "// ERROR Adding effect : " << index;
2769         return success;
2770     }
2771     if (position < GenTime()) {
2772         return mltEditTrackEffect(track, params);
2773     }
2774     // find filter
2775     Mlt::Service service(m_mltProducer->parent().get_service());
2776     Mlt::Tractor tractor(service);
2777     Mlt::Producer trackProducer(tractor.track(track));
2778     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2779
2780     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2781     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2782     if (!clip) {
2783         kDebug() << "WARINIG, CANNOT FIND CLIP ON track: " << track << ", AT POS: " << position.frames(m_fps);
2784         return false;
2785     }
2786
2787     int duration = clip->get_playtime();
2788     bool doRefresh = true;
2789     // Check if clip is visible in monitor
2790     int diff = trackPlaylist.clip_start(clipIndex) + duration - m_mltProducer->position();
2791     if (diff < 0 || diff > duration)
2792         doRefresh = false;
2793     int ct = 0;
2794
2795     Mlt::Filter *filter = clip->filter(ct);
2796     while (filter) {
2797         if (filter->get_int("kdenlive_ix") == index) {
2798             break;
2799         }
2800         ct++;
2801         filter = clip->filter(ct);
2802     }
2803
2804     if (!filter) {
2805         kDebug() << "WARINIG, FILTER FOR EDITING NOT FOUND, ADDING IT! " << index << ", " << tag;
2806         // filter was not found, it was probably a disabled filter, so add it to the correct place...
2807
2808         bool success = mltAddEffect(track, position, params);
2809         return success;
2810     }
2811     QString prefix;
2812     QString ser = filter->get("mlt_service");
2813     if (ser == "region") prefix = "filter0.";
2814     if (params.hasParam("_sync_in_out")) {
2815         // This effect must sync in / out with parent clip
2816         params.removeParam("_sync_in_out");
2817         filter->set_in_and_out(clip->get_in(), clip->get_out());
2818     }
2819     service.lock();
2820     for (int j = 0; j < params.count(); j++) {
2821         filter->set((prefix + params.at(j).name()).toUtf8().constData(), params.at(j).value().toUtf8().constData());
2822     }
2823
2824     delete clip;
2825     service.unlock();
2826
2827     if (doRefresh) refresh();
2828     return true;
2829 }
2830
2831 void Render::mltUpdateEffectPosition(int track, GenTime position, int oldPos, int newPos)
2832 {
2833     Mlt::Service service(m_mltProducer->parent().get_service());
2834     Mlt::Tractor tractor(service);
2835     Mlt::Producer trackProducer(tractor.track(track));
2836     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2837
2838     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2839     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2840     if (!clip) {
2841         kDebug() << "WARINIG, CANNOT FIND CLIP ON track: " << track << ", AT POS: " << position.frames(m_fps);
2842         return;
2843     }
2844
2845     Mlt::Service clipService(clip->get_service());
2846     int duration = clip->get_playtime();
2847     bool doRefresh = true;
2848     // Check if clip is visible in monitor
2849     int diff = trackPlaylist.clip_start(clipIndex) + duration - m_mltProducer->position();
2850     if (diff < 0 || diff > duration) doRefresh = false;
2851     delete clip;
2852
2853     int ct = 0;
2854     Mlt::Filter *filter = clipService.filter(ct);
2855     while (filter) {
2856         int pos = filter->get_int("kdenlive_ix");
2857         if (pos == oldPos) {
2858             filter->set("kdenlive_ix", newPos);
2859         } else ct++;
2860         filter = clipService.filter(ct);
2861     }
2862     if (doRefresh) refresh();
2863 }
2864
2865 void Render::mltMoveEffect(int track, GenTime position, int oldPos, int newPos)
2866 {
2867     if (position < GenTime()) {
2868         mltMoveTrackEffect(track, oldPos, newPos);
2869         return;
2870     }
2871     Mlt::Service service(m_mltProducer->parent().get_service());
2872     Mlt::Tractor tractor(service);
2873     Mlt::Producer trackProducer(tractor.track(track));
2874     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2875
2876     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
2877     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2878     if (!clip) {
2879         kDebug() << "WARINIG, CANNOT FIND CLIP ON track: " << track << ", AT POS: " << position.frames(m_fps);
2880         return;
2881     }
2882
2883     Mlt::Service clipService(clip->get_service());
2884     int duration = clip->get_playtime();
2885     bool doRefresh = true;
2886     // Check if clip is visible in monitor
2887     int diff = trackPlaylist.clip_start(clipIndex) + duration - m_mltProducer->position();
2888     if (diff < 0 || diff > duration) doRefresh = false;
2889     delete clip;
2890
2891     int ct = 0;
2892     QList <Mlt::Filter *> filtersList;
2893     Mlt::Filter *filter = clipService.filter(ct);
2894     bool found = false;
2895     if (newPos > oldPos) {
2896         while (filter) {
2897             if (!found && filter->get_int("kdenlive_ix") == oldPos) {
2898                 filter->set("kdenlive_ix", newPos);
2899                 filtersList.append(filter);
2900                 clipService.detach(*filter);
2901                 filter = clipService.filter(ct);
2902                 while (filter && filter->get_int("kdenlive_ix") <= newPos) {
2903                     filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") - 1);
2904                     ct++;
2905                     filter = clipService.filter(ct);
2906                 }
2907                 found = true;
2908             }
2909             if (filter && filter->get_int("kdenlive_ix") > newPos) {
2910                 filtersList.append(filter);
2911                 clipService.detach(*filter);
2912             } else ct++;
2913             filter = clipService.filter(ct);
2914         }
2915     } else {
2916         while (filter) {
2917             if (filter->get_int("kdenlive_ix") == oldPos) {
2918                 filter->set("kdenlive_ix", newPos);
2919                 filtersList.append(filter);
2920                 clipService.detach(*filter);
2921             } else ct++;
2922             filter = clipService.filter(ct);
2923         }
2924
2925         ct = 0;
2926         filter = clipService.filter(ct);
2927         while (filter) {
2928             int pos = filter->get_int("kdenlive_ix");
2929             if (pos >= newPos) {
2930                 if (pos < oldPos) filter->set("kdenlive_ix", pos + 1);
2931                 filtersList.append(filter);
2932                 clipService.detach(*filter);
2933             } else ct++;
2934             filter = clipService.filter(ct);
2935         }
2936     }
2937
2938     for (int i = 0; i < filtersList.count(); i++) {
2939         clipService.attach(*(filtersList.at(i)));
2940     }
2941
2942     if (doRefresh) refresh();
2943 }
2944
2945 void Render::mltMoveTrackEffect(int track, int oldPos, int newPos)
2946 {
2947     Mlt::Service service(m_mltProducer->parent().get_service());
2948     Mlt::Tractor tractor(service);
2949     Mlt::Producer trackProducer(tractor.track(track));
2950     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2951     Mlt::Service clipService(trackPlaylist.get_service());
2952     int ct = 0;
2953     QList <Mlt::Filter *> filtersList;
2954     Mlt::Filter *filter = clipService.filter(ct);
2955     bool found = false;
2956     if (newPos > oldPos) {
2957         while (filter) {
2958             if (!found && filter->get_int("kdenlive_ix") == oldPos) {
2959                 filter->set("kdenlive_ix", newPos);
2960                 filtersList.append(filter);
2961                 clipService.detach(*filter);
2962                 filter = clipService.filter(ct);
2963                 while (filter && filter->get_int("kdenlive_ix") <= newPos) {
2964                     filter->set("kdenlive_ix", filter->get_int("kdenlive_ix") - 1);
2965                     ct++;
2966                     filter = clipService.filter(ct);
2967                 }
2968                 found = true;
2969             }
2970             if (filter && filter->get_int("kdenlive_ix") > newPos) {
2971                 filtersList.append(filter);
2972                 clipService.detach(*filter);
2973             } else ct++;
2974             filter = clipService.filter(ct);
2975         }
2976     } else {
2977         while (filter) {
2978             if (filter->get_int("kdenlive_ix") == oldPos) {
2979                 filter->set("kdenlive_ix", newPos);
2980                 filtersList.append(filter);
2981                 clipService.detach(*filter);
2982             } else ct++;
2983             filter = clipService.filter(ct);
2984         }
2985
2986         ct = 0;
2987         filter = clipService.filter(ct);
2988         while (filter) {
2989             int pos = filter->get_int("kdenlive_ix");
2990             if (pos >= newPos) {
2991                 if (pos < oldPos) filter->set("kdenlive_ix", pos + 1);
2992                 filtersList.append(filter);
2993                 clipService.detach(*filter);
2994             } else ct++;
2995             filter = clipService.filter(ct);
2996         }
2997     }
2998
2999     for (int i = 0; i < filtersList.count(); i++) {
3000         clipService.attach(*(filtersList.at(i)));
3001     }
3002     refresh();
3003 }
3004
3005 bool Render::mltResizeClipEnd(ItemInfo info, GenTime clipDuration)
3006 {
3007     Mlt::Service service(m_mltProducer->parent().get_service());
3008     Mlt::Tractor tractor(service);
3009     Mlt::Producer trackProducer(tractor.track(info.track));
3010     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3011
3012     /* // Display playlist info
3013     kDebug()<<"////////////  BEFORE RESIZE";
3014     for (int i = 0; i < trackPlaylist.count(); i++) {
3015     int blankStart = trackPlaylist.clip_start(i);
3016     int blankDuration = trackPlaylist.clip_length(i) - 1;
3017     QString blk;
3018     if (trackPlaylist.is_blank(i)) blk = "(blank)";
3019     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<'x'<<blankStart + blankDuration<<")"<<blk;
3020     }*/
3021
3022     if (trackPlaylist.is_blank_at((int) info.startPos.frames(m_fps))) {
3023         kDebug() << "////////  ERROR RSIZING BLANK CLIP!!!!!!!!!!!";
3024         return false;
3025     }
3026     service.lock();
3027     int clipIndex = trackPlaylist.get_clip_index_at((int) info.startPos.frames(m_fps));
3028     //kDebug() << "// SELECTED CLIP START: " << trackPlaylist.clip_start(clipIndex);
3029     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
3030
3031     int previousStart = clip->get_in();
3032     int newDuration = (int) clipDuration.frames(m_fps) - 1;
3033     int diff = newDuration - (trackPlaylist.clip_length(clipIndex) - 1);
3034
3035     int currentOut = newDuration + previousStart;
3036     if (currentOut > clip->get_length()) {
3037         clip->parent().set("length", currentOut + 1);
3038         clip->parent().set("out", currentOut);
3039         clip->set("length", currentOut + 1);
3040     }
3041
3042     /*if (newDuration > clip->get_out()) {
3043         clip->parent().set_in_and_out(0, newDuration + 1);
3044         clip->set_in_and_out(0, newDuration + 1);
3045     }*/
3046     delete clip;
3047     trackPlaylist.resize_clip(clipIndex, previousStart, newDuration + previousStart);
3048     trackPlaylist.consolidate_blanks(0);
3049     // skip to next clip
3050     clipIndex++;
3051     //kDebug() << "////////  RESIZE CLIP: " << clipIndex << "( pos: " << info.startPos.frames(25) << "), DIFF: " << diff << ", CURRENT DUR: " << previousDuration << ", NEW DUR: " << newDuration << ", IX: " << clipIndex << ", MAX: " << trackPlaylist.count();
3052     if (diff > 0) {
3053         // clip was made longer, trim next blank if there is one.
3054         if (clipIndex < trackPlaylist.count()) {
3055             // If this is not the last clip in playlist
3056             if (trackPlaylist.is_blank(clipIndex)) {
3057                 int blankStart = trackPlaylist.clip_start(clipIndex);
3058                 int blankDuration = trackPlaylist.clip_length(clipIndex);
3059                 if (diff > blankDuration) {
3060                     kDebug() << "// ERROR blank clip is not large enough to get back required space!!!";
3061                 }
3062                 if (diff - blankDuration == 0) {
3063                     trackPlaylist.remove(clipIndex);
3064                 } else trackPlaylist.remove_region(blankStart, diff);
3065             } else {
3066                 kDebug() << "/// RESIZE ERROR, NXT CLIP IS NOT BLK: " << clipIndex;
3067             }
3068         }
3069     } else if (clipIndex != trackPlaylist.count()) trackPlaylist.insert_blank(clipIndex, 0 - diff - 1);
3070     trackPlaylist.consolidate_blanks(0);
3071     service.unlock();
3072
3073     if (info.track != 0 && clipIndex == trackPlaylist.count()) mltCheckLength(&tractor);
3074     /*if (QString(clip->parent().get("transparency")).toInt() == 1) {
3075         //mltResizeTransparency(previousStart, previousStart, previousStart + newDuration, track, QString(clip->parent().get("id")).toInt());
3076         mltDeleteTransparency(info.startPos.frames(m_fps), info.track, QString(clip->parent().get("id")).toInt());
3077         ItemInfo transpinfo;
3078         transpinfo.startPos = info.startPos;
3079         transpinfo.endPos = info.startPos + clipDuration;
3080         transpinfo.track = info.track;
3081         mltAddClipTransparency(transpinfo, info.track - 1, QString(clip->parent().get("id")).toInt());
3082     }*/
3083     m_mltConsumer->set("refresh", 1);
3084     return true;
3085 }
3086
3087 void Render::mltChangeTrackState(int track, bool mute, bool blind)
3088 {
3089     Mlt::Service service(m_mltProducer->parent().get_service());
3090     Mlt::Tractor tractor(service);
3091     Mlt::Producer trackProducer(tractor.track(track));
3092
3093     // Make sure muting will not produce problems with our audio mixing transition,
3094     // because audio mixing is done between each track and the lowest one
3095     bool audioMixingBroken = false;
3096     if (mute && trackProducer.get_int("hide") < 2 ) {
3097             // We mute a track with sound
3098             if (track == getLowestNonMutedAudioTrack(tractor)) audioMixingBroken = true;
3099             kDebug()<<"Muting track: "<<track <<" / "<<getLowestNonMutedAudioTrack(tractor);
3100     }
3101     else if (!mute && trackProducer.get_int("hide") > 1 ) {
3102             // We un-mute a previously muted track
3103             if (track < getLowestNonMutedAudioTrack(tractor)) audioMixingBroken = true;
3104     }
3105
3106     if (mute) {
3107         if (blind) trackProducer.set("hide", 3);
3108         else trackProducer.set("hide", 2);
3109     } else if (blind) {
3110         trackProducer.set("hide", 1);
3111     } else {
3112         trackProducer.set("hide", 0);
3113     }
3114     if (audioMixingBroken) fixAudioMixing(tractor);
3115
3116     tractor.multitrack()->refresh();
3117     tractor.refresh();
3118     refresh();
3119 }
3120
3121 int Render::getLowestNonMutedAudioTrack(Mlt::Tractor tractor)
3122 {
3123     for (int i = 1; i < tractor.count(); i++) {
3124         Mlt::Producer trackProducer(tractor.track(i));
3125         if (trackProducer.get_int("hide") < 2) return i;
3126     }
3127     return tractor.count() - 1;
3128 }
3129
3130 void Render::fixAudioMixing(Mlt::Tractor tractor)
3131 {
3132     // Make sure the audio mixing transitions are applied to the lowest audible (non muted) track
3133     int lowestTrack = getLowestNonMutedAudioTrack(tractor);
3134
3135     mlt_service serv = m_mltProducer->parent().get_service();
3136     Mlt::Field *field = tractor.field();
3137     mlt_service_lock(serv);
3138
3139     mlt_service nextservice = mlt_service_get_producer(serv);
3140     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3141     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3142     QString resource = mlt_properties_get(properties, "mlt_service");
3143
3144     mlt_service nextservicetodisconnect;
3145      // Delete all audio mixing transitions
3146     while (mlt_type == "transition") {
3147         if (resource == "mix") {
3148             nextservicetodisconnect = nextservice;
3149             nextservice = mlt_service_producer(nextservice);
3150             mlt_field_disconnect_service(field->get_field(), nextservicetodisconnect);
3151         }
3152         else nextservice = mlt_service_producer(nextservice);
3153         if (nextservice == NULL) break;
3154         properties = MLT_SERVICE_PROPERTIES(nextservice);
3155         mlt_type = mlt_properties_get(properties, "mlt_type");
3156         resource = mlt_properties_get(properties, "mlt_service");
3157     }
3158
3159     // Re-add correct audio transitions
3160     for (int i = lowestTrack + 1; i < tractor.count(); i++) {
3161         Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "mix");
3162         transition->set("always_active", 1);
3163         transition->set("combine", 1);
3164         transition->set("internal_added", 237);
3165         field->plant_transition(*transition, lowestTrack, i);
3166     }
3167     mlt_service_unlock(serv);
3168 }
3169
3170 bool Render::mltResizeClipCrop(ItemInfo info, GenTime diff)
3171 {
3172     Mlt::Service service(m_mltProducer->parent().get_service());
3173     int frameOffset = (int) diff.frames(m_fps);
3174     Mlt::Tractor tractor(service);
3175     Mlt::Producer trackProducer(tractor.track(info.track));
3176     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3177     if (trackPlaylist.is_blank_at(info.startPos.frames(m_fps))) {
3178         kDebug() << "////////  ERROR RSIZING BLANK CLIP!!!!!!!!!!!";
3179         return false;
3180     }
3181     service.lock();
3182     int clipIndex = trackPlaylist.get_clip_index_at(info.startPos.frames(m_fps));
3183     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
3184     if (clip == NULL) {
3185         kDebug() << "////////  ERROR RSIZING NULL CLIP!!!!!!!!!!!";
3186         service.unlock();
3187         return false;
3188     }
3189     int previousStart = clip->get_in();
3190     int previousOut = clip->get_out();
3191     delete clip;
3192     trackPlaylist.resize_clip(clipIndex, previousStart + frameOffset, previousOut + frameOffset);
3193     service.unlock();
3194     m_mltConsumer->set("refresh", 1);
3195     return true;
3196 }
3197
3198 bool Render::mltResizeClipStart(ItemInfo info, GenTime diff)
3199 {
3200     //kDebug() << "////////  RSIZING CLIP from: "<<info.startPos.frames(25)<<" to "<<diff.frames(25);
3201     Mlt::Service service(m_mltProducer->parent().get_service());
3202     int moveFrame = (int) diff.frames(m_fps);
3203     Mlt::Tractor tractor(service);
3204     Mlt::Producer trackProducer(tractor.track(info.track));
3205     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3206     if (trackPlaylist.is_blank_at(info.startPos.frames(m_fps))) {
3207         kDebug() << "////////  ERROR RSIZING BLANK CLIP!!!!!!!!!!!";
3208         return false;
3209     }
3210     service.lock();
3211     int clipIndex = trackPlaylist.get_clip_index_at(info.startPos.frames(m_fps));
3212     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
3213     if (clip == NULL || clip->is_blank()) {
3214         kDebug() << "////////  ERROR RSIZING NULL CLIP!!!!!!!!!!!";
3215         service.unlock();
3216         return false;
3217     }
3218     int previousStart = clip->get_in();
3219     int previousOut = clip->get_out();
3220
3221     previousStart += moveFrame;
3222
3223     if (previousStart < 0) {
3224         // this is possible for images and color clips
3225         previousOut -= previousStart;
3226         previousStart = 0;
3227     }
3228
3229     int length = previousOut + 1;
3230     if (length > clip->get_length()) {
3231         clip->parent().set("length", length + 1);
3232         clip->parent().set("out", length);
3233         clip->set("length", length + 1);
3234     }
3235     delete clip;
3236
3237     // kDebug() << "RESIZE, new start: " << previousStart << ", " << previousOut;
3238     trackPlaylist.resize_clip(clipIndex, previousStart, previousOut);
3239     if (moveFrame > 0) {
3240         trackPlaylist.insert_blank(clipIndex, moveFrame - 1);
3241     } else {
3242         //int midpos = info.startPos.frames(m_fps) + moveFrame - 1;
3243         int blankIndex = clipIndex - 1;
3244         int blankLength = trackPlaylist.clip_length(blankIndex);
3245         // kDebug() << " + resizing blank length " <<  blankLength << ", SIZE DIFF: " << moveFrame;
3246         if (! trackPlaylist.is_blank(blankIndex)) {
3247             kDebug() << "WARNING, CLIP TO RESIZE IS NOT BLANK";
3248         }
3249         if (blankLength + moveFrame == 0)
3250             trackPlaylist.remove(blankIndex);
3251         else
3252             trackPlaylist.resize_clip(blankIndex, 0, blankLength + moveFrame - 1);
3253     }
3254     trackPlaylist.consolidate_blanks(0);
3255     /*if (QString(clip->parent().get("transparency")).toInt() == 1) {
3256         //mltResizeTransparency(previousStart, (int) moveEnd.frames(m_fps), (int) (moveEnd + out - in).frames(m_fps), track, QString(clip->parent().get("id")).toInt());
3257         mltDeleteTransparency(info.startPos.frames(m_fps), info.track, QString(clip->parent().get("id")).toInt());
3258         ItemInfo transpinfo;
3259         transpinfo.startPos = info.startPos + diff;
3260         transpinfo.endPos = info.startPos + diff + (info.endPos - info.startPos);
3261         transpinfo.track = info.track;
3262         mltAddClipTransparency(transpinfo, info.track - 1, QString(clip->parent().get("id")).toInt());
3263     }*/
3264     //m_mltConsumer->set("refresh", 1);
3265     service.unlock();
3266     m_mltConsumer->set("refresh", 1);
3267     return true;
3268 }
3269
3270 bool Render::mltMoveClip(int startTrack, int endTrack, GenTime moveStart, GenTime moveEnd, Mlt::Producer *prod, bool overwrite, bool insert)
3271 {
3272     return mltMoveClip(startTrack, endTrack, (int) moveStart.frames(m_fps), (int) moveEnd.frames(m_fps), prod, overwrite, insert);
3273 }
3274
3275
3276 bool Render::mltUpdateClipProducer(Mlt::Tractor *tractor, int track, int pos, Mlt::Producer *prod)
3277 {
3278     if (prod == NULL || !prod->is_valid() || tractor == NULL || !tractor->is_valid()) {
3279         kDebug() << "// Warning, CLIP on track " << track << ", at: " << pos << " is invalid, cannot update it!!!";
3280         return false;
3281     }
3282
3283     Mlt::Producer trackProducer(tractor->track(track));
3284     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3285     int clipIndex = trackPlaylist.get_clip_index_at(pos);
3286     Mlt::Producer *clipProducer = trackPlaylist.replace_with_blank(clipIndex);
3287     if (clipProducer == NULL || clipProducer->is_blank()) {
3288         kDebug() << "// ERROR UPDATING CLIP PROD";
3289         delete clipProducer;
3290         return false;
3291     }
3292     Mlt::Producer *clip = prod->cut(clipProducer->get_in(), clipProducer->get_out());
3293     if (!clip || !clip->is_valid()) {
3294         if (clip) delete clip;
3295         delete clipProducer;
3296         return false;
3297     }
3298     // move all effects to the correct producer
3299     mltPasteEffects(clipProducer, clip);
3300     trackPlaylist.insert_at(pos, clip, 1);
3301     delete clip;
3302     delete clipProducer;
3303     return true;
3304 }
3305
3306 bool Render::mltMoveClip(int startTrack, int endTrack, int moveStart, int moveEnd, Mlt::Producer *prod, bool overwrite, bool /*insert*/)
3307 {
3308     Mlt::Service service(m_mltProducer->parent().get_service());
3309     if (service.type() != tractor_type) {
3310         kWarning() << "// TRACTOR PROBLEM";
3311         return false;
3312     }
3313
3314     Mlt::Tractor tractor(service);
3315     service.lock();
3316     Mlt::Producer trackProducer(tractor.track(startTrack));
3317     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3318     int clipIndex = trackPlaylist.get_clip_index_at(moveStart);
3319     //kDebug() << "//////  LOOKING FOR CLIP TO MOVE, INDEX: " << clipIndex;
3320     bool checkLength = false;
3321     if (endTrack == startTrack) {
3322         Mlt::Producer *clipProducer = trackPlaylist.replace_with_blank(clipIndex);
3323         if ((!overwrite && !trackPlaylist.is_blank_at(moveEnd)) || !clipProducer || !clipProducer->is_valid() || clipProducer->is_blank()) {
3324             // error, destination is not empty
3325             if (clipProducer) {
3326                 if (!trackPlaylist.is_blank_at(moveEnd) && clipProducer->is_valid()) trackPlaylist.insert_at(moveStart, clipProducer, 1);
3327                 delete clipProducer;
3328             }
3329             //int ix = trackPlaylist.get_clip_index_at(moveEnd);
3330             kDebug() << "// ERROR MOVING CLIP TO : " << moveEnd;
3331             service.unlock();
3332             return false;
3333         } else {
3334             trackPlaylist.consolidate_blanks(0);
3335             if (overwrite) {
3336                 trackPlaylist.remove_region(moveEnd, clipProducer->get_playtime());
3337                 int clipIndex = trackPlaylist.get_clip_index_at(moveEnd);
3338                 trackPlaylist.insert_blank(clipIndex, clipProducer->get_playtime() - 1);
3339             }
3340             int newIndex = trackPlaylist.insert_at(moveEnd, clipProducer, 1);
3341             trackPlaylist.consolidate_blanks(1);
3342             delete clipProducer;
3343             /*if (QString(clipProducer.parent().get("transparency")).toInt() == 1) {
3344             mltMoveTransparency(moveStart, moveEnd, startTrack, endTrack, QString(clipProducer.parent().get("id")).toInt());
3345             }*/
3346             if (newIndex + 1 == trackPlaylist.count()) checkLength = true;
3347         }
3348         //service.unlock();
3349     } else {
3350         Mlt::Producer destTrackProducer(tractor.track(endTrack));
3351         Mlt::Playlist destTrackPlaylist((mlt_playlist) destTrackProducer.get_service());
3352         if (!overwrite && !destTrackPlaylist.is_blank_at(moveEnd)) {
3353             // error, destination is not empty
3354             service.unlock();
3355             return false;
3356         } else {
3357             Mlt::Producer *clipProducer = trackPlaylist.replace_with_blank(clipIndex);
3358             if (!clipProducer || clipProducer->is_blank()) {
3359                 // error, destination is not empty
3360                 //int ix = trackPlaylist.get_clip_index_at(moveEnd);
3361                 if (clipProducer) delete clipProducer;
3362                 kDebug() << "// ERROR MOVING CLIP TO : " << moveEnd;
3363                 service.unlock();
3364                 return false;
3365             }
3366             trackPlaylist.consolidate_blanks(0);
3367             destTrackPlaylist.consolidate_blanks(1);
3368             Mlt::Producer *clip;
3369             // check if we are moving a slowmotion producer
3370             QString serv = clipProducer->parent().get("mlt_service");
3371             QString currentid = clipProducer->parent().get("id");
3372             if (serv == "framebuffer" || currentid.endsWith("_video")) {
3373                 clip = clipProducer;
3374             } else {
3375                 if (prod == NULL) {
3376                     // Special case: prod is null when using placeholder clips.
3377                     // in that case, use the producer existing in playlist. Note that
3378                     // it will bypass the one producer per track logic and might cause
3379                     // Sound cracks if clip is moved so that it overlaps another copy of itself
3380                     clip = clipProducer->cut(clipProducer->get_in(), clipProducer->get_out());
3381                 } else clip = prod->cut(clipProducer->get_in(), clipProducer->get_out());
3382             }
3383
3384             // move all effects to the correct producer
3385             mltPasteEffects(clipProducer, clip);
3386
3387             if (overwrite) {
3388                 destTrackPlaylist.remove_region(moveEnd, clip->get_playtime());
3389                 int clipIndex = destTrackPlaylist.get_clip_index_at(moveEnd);
3390                 destTrackPlaylist.insert_blank(clipIndex, clip->get_playtime() - 1);
3391             }
3392
3393             int newIndex = destTrackPlaylist.insert_at(moveEnd, clip, 1);
3394
3395             if (clip == clipProducer) {
3396                 delete clip;
3397                 clip = NULL;
3398             } else {
3399                 delete clip;
3400                 delete clipProducer;
3401             }
3402             destTrackPlaylist.consolidate_blanks(0);
3403             /*if (QString(clipProducer.parent().get("transparency")).toInt() == 1) {
3404                 kDebug() << "//////// moving clip transparency";
3405                 mltMoveTransparency(moveStart, moveEnd, startTrack, endTrack, QString(clipProducer.parent().get("id")).toInt());
3406             }*/
3407             if (clipIndex > trackPlaylist.count()) checkLength = true;
3408             else if (newIndex + 1 == destTrackPlaylist.count()) checkLength = true;
3409         }
3410     }
3411     service.unlock();
3412     if (checkLength) mltCheckLength(&tractor);
3413     //askForRefresh();
3414     //m_mltConsumer->set("refresh", 1);
3415     return true;
3416 }
3417
3418
3419 QList <int> Render::checkTrackSequence(int track)
3420 {
3421     QList <int> list;
3422     Mlt::Service service(m_mltProducer->parent().get_service());
3423     if (service.type() != tractor_type) {
3424         kWarning() << "// TRACTOR PROBLEM";
3425         return list;
3426     }
3427     Mlt::Tractor tractor(service);
3428     service.lock();
3429     Mlt::Producer trackProducer(tractor.track(track));
3430     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3431     int clipNb = trackPlaylist.count();
3432     //kDebug() << "// PARSING SCENE TRACK: " << t << ", CLIPS: " << clipNb;
3433     for (int i = 0; i < clipNb; i++) {
3434         Mlt::Producer *c = trackPlaylist.get_clip(i);
3435         int pos = trackPlaylist.clip_start(i);
3436         if (!list.contains(pos)) list.append(pos);
3437         pos += c->get_playtime();
3438         if (!list.contains(pos)) list.append(pos);
3439         delete c;
3440     }
3441     return list;
3442 }
3443
3444 bool Render::mltMoveTransition(QString type, int startTrack, int newTrack, int newTransitionTrack, GenTime oldIn, GenTime oldOut, GenTime newIn, GenTime newOut)
3445 {
3446     int new_in = (int)newIn.frames(m_fps);
3447     int new_out = (int)newOut.frames(m_fps) - 1;
3448     if (new_in >= new_out) return false;
3449     int old_in = (int)oldIn.frames(m_fps);
3450     int old_out = (int)oldOut.frames(m_fps) - 1;
3451
3452     Mlt::Service service(m_mltProducer->parent().get_service());
3453     Mlt::Tractor tractor(service);
3454     Mlt::Field *field = tractor.field();
3455
3456     bool doRefresh = true;
3457     // Check if clip is visible in monitor
3458     int diff = old_out - m_mltProducer->position();
3459     if (diff < 0 || diff > old_out - old_in) doRefresh = false;
3460     if (doRefresh) {
3461         diff = new_out - m_mltProducer->position();
3462         if (diff < 0 || diff > new_out - new_in) doRefresh = false;
3463     }
3464     service.lock();
3465
3466     mlt_service nextservice = mlt_service_get_producer(service.get_service());
3467     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3468     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3469     QString resource = mlt_properties_get(properties, "mlt_service");
3470     int old_pos = (int)(old_in + old_out) / 2;
3471     bool found = false;
3472
3473     while (mlt_type == "transition") {
3474         Mlt::Transition transition((mlt_transition) nextservice);
3475         int currentTrack = transition.get_b_track();
3476         int currentIn = (int) transition.get_in();
3477         int currentOut = (int) transition.get_out();
3478
3479         if (resource == type && startTrack == currentTrack && currentIn <= old_pos && currentOut >= old_pos) {
3480             found = true;
3481             if (newTrack - startTrack != 0) {
3482                 Mlt::Properties trans_props(transition.get_properties());
3483                 Mlt::Transition new_transition(*m_mltProfile, transition.get("mlt_service"));
3484                 Mlt::Properties new_trans_props(new_transition.get_properties());
3485                 new_trans_props.inherit(trans_props);
3486                 new_transition.set_in_and_out(new_in, new_out);
3487                 field->disconnect_service(transition);
3488                 mltPlantTransition(field, new_transition, newTransitionTrack, newTrack);
3489                 //field->plant_transition(new_transition, newTransitionTrack, newTrack);
3490             } else transition.set_in_and_out(new_in, new_out);
3491             break;
3492         }
3493         nextservice = mlt_service_producer(nextservice);
3494         if (nextservice == NULL) break;
3495         properties = MLT_SERVICE_PROPERTIES(nextservice);
3496         mlt_type = mlt_properties_get(properties, "mlt_type");
3497         resource = mlt_properties_get(properties, "mlt_service");
3498     }
3499     service.unlock();
3500     if (doRefresh) refresh();
3501     //if (m_isBlocked == 0) m_mltConsumer->set("refresh", 1);
3502     return found;
3503 }
3504
3505
3506 void Render::mltPlantTransition(Mlt::Field *field, Mlt::Transition &tr, int a_track, int b_track)
3507 {
3508     mlt_service nextservice = mlt_service_get_producer(field->get_service());
3509     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3510     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3511     QString resource = mlt_properties_get(properties, "mlt_service");
3512     QList <Mlt::Transition *> trList;
3513
3514     while (mlt_type == "transition") {
3515         Mlt::Transition transition((mlt_transition) nextservice);
3516         int aTrack = transition.get_a_track();
3517         int bTrack = transition.get_b_track();
3518         if (resource != "mix" && (aTrack < a_track || (aTrack == a_track && bTrack > b_track))) {
3519             Mlt::Properties trans_props(transition.get_properties());
3520             Mlt::Transition *cp = new Mlt::Transition(*m_mltProfile, transition.get("mlt_service"));
3521             Mlt::Properties new_trans_props(cp->get_properties());
3522             new_trans_props.inherit(trans_props);
3523             trList.append(cp);
3524             field->disconnect_service(transition);
3525         }
3526         //else kDebug() << "// FOUND TRANS OK, "<<resource<< ", A_: " << aTrack << ", B_ "<<bTrack;
3527
3528         nextservice = mlt_service_producer(nextservice);
3529         if (nextservice == NULL) break;
3530         properties = MLT_SERVICE_PROPERTIES(nextservice);
3531         mlt_type = mlt_properties_get(properties, "mlt_type");
3532         resource = mlt_properties_get(properties, "mlt_service");
3533     }
3534     field->plant_transition(tr, a_track, b_track);
3535
3536     // re-add upper transitions
3537     for (int i = trList.count() - 1; i >= 0; i--) {
3538         //kDebug()<< "REPLANT ON TK: "<<trList.at(i)->get_a_track()<<", "<<trList.at(i)->get_b_track();
3539         field->plant_transition(*trList.at(i), trList.at(i)->get_a_track(), trList.at(i)->get_b_track());
3540     }
3541 }
3542
3543 void Render::mltUpdateTransition(QString oldTag, QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool force)
3544 {
3545     if (oldTag == tag && !force) mltUpdateTransitionParams(tag, a_track, b_track, in, out, xml);
3546     else {
3547         //kDebug()<<"// DELETING TRANS: "<<a_track<<"-"<<b_track;
3548         mltDeleteTransition(oldTag, a_track, b_track, in, out, xml, false);
3549         mltAddTransition(tag, a_track, b_track, in, out, xml, false);
3550     }
3551
3552     if (m_mltProducer->position() >= in.frames(m_fps) && m_mltProducer->position() <= out.frames(m_fps)) refresh();
3553 }
3554
3555 void Render::mltUpdateTransitionParams(QString type, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml)
3556 {
3557     mlt_service serv = m_mltProducer->parent().get_service();
3558     mlt_service_lock(serv);
3559
3560     mlt_service nextservice = mlt_service_get_producer(serv);
3561     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3562     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3563     QString resource = mlt_properties_get(properties, "mlt_service");
3564     int in_pos = (int) in.frames(m_fps);
3565     int out_pos = (int) out.frames(m_fps) - 1;
3566
3567     while (mlt_type == "transition") {
3568         mlt_transition tr = (mlt_transition) nextservice;
3569         int currentTrack = mlt_transition_get_b_track(tr);
3570         int currentBTrack = mlt_transition_get_a_track(tr);
3571         int currentIn = (int) mlt_transition_get_in(tr);
3572         int currentOut = (int) mlt_transition_get_out(tr);
3573
3574         // kDebug()<<"Looking for transition : " << currentIn <<'x'<<currentOut<< ", OLD oNE: "<<in_pos<<'x'<<out_pos;
3575         if (resource == type && b_track == currentTrack && currentIn == in_pos && currentOut == out_pos) {
3576             QMap<QString, QString> map = mltGetTransitionParamsFromXml(xml);
3577             QMap<QString, QString>::Iterator it;
3578             QString key;
3579             mlt_properties transproperties = MLT_TRANSITION_PROPERTIES(tr);
3580
3581             QString currentId = mlt_properties_get(transproperties, "kdenlive_id");
3582             if (currentId != xml.attribute("id")) {
3583                 // The transition ID is not the same, so reset all properties
3584                 mlt_properties_set(transproperties, "kdenlive_id", xml.attribute("id").toUtf8().constData());
3585                 // Cleanup previous properties
3586                 QStringList permanentProps;
3587                 permanentProps << "factory" << "kdenlive_id" << "mlt_service" << "mlt_type" << "in";
3588                 permanentProps << "out" << "a_track" << "b_track";
3589                 for (int i = 0; i < mlt_properties_count(transproperties); i++) {
3590                     QString propName = mlt_properties_get_name(transproperties, i);
3591                     if (!propName.startsWith('_') && ! permanentProps.contains(propName)) {
3592                         mlt_properties_set(transproperties, propName.toUtf8().constData(), "");
3593                     }
3594                 }
3595             }
3596
3597             mlt_properties_set_int(transproperties, "force_track", xml.attribute("force_track").toInt());
3598             mlt_properties_set_int(transproperties, "automatic", xml.attribute("automatic", "0").toInt());
3599
3600             if (currentBTrack != a_track) {
3601                 mlt_properties_set_int(transproperties, "a_track", a_track);
3602             }
3603             for (it = map.begin(); it != map.end(); ++it) {
3604                 key = it.key();
3605                 mlt_properties_set(transproperties, key.toUtf8().constData(), it.value().toUtf8().constData());
3606                 //kDebug() << " ------  UPDATING TRANS PARAM: " << key.toUtf8().constData() << ": " << it.value().toUtf8().constData();
3607                 //filter->set("kdenlive_id", id);
3608             }
3609             break;
3610         }
3611         nextservice = mlt_service_producer(nextservice);
3612         if (nextservice == NULL) break;
3613         properties = MLT_SERVICE_PROPERTIES(nextservice);
3614         mlt_type = mlt_properties_get(properties, "mlt_type");
3615         resource = mlt_properties_get(properties, "mlt_service");
3616     }
3617     mlt_service_unlock(serv);
3618     //askForRefresh();
3619     //if (m_isBlocked == 0) m_mltConsumer->set("refresh", 1);
3620 }
3621
3622 void Render::mltDeleteTransition(QString tag, int /*a_track*/, int b_track, GenTime in, GenTime out, QDomElement /*xml*/, bool /*do_refresh*/)
3623 {
3624     mlt_service serv = m_mltProducer->parent().get_service();
3625     mlt_service_lock(serv);
3626
3627     Mlt::Service service(serv);
3628     Mlt::Tractor tractor(service);
3629     Mlt::Field *field = tractor.field();
3630
3631     //if (do_refresh) m_mltConsumer->set("refresh", 0);
3632
3633     mlt_service nextservice = mlt_service_get_producer(serv);
3634     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3635     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3636     QString resource = mlt_properties_get(properties, "mlt_service");
3637
3638     const int old_pos = (int)((in + out).frames(m_fps) / 2);
3639     //kDebug() << " del trans pos: " << in.frames(25) << "-" << out.frames(25);
3640
3641     while (mlt_type == "transition") {
3642         mlt_transition tr = (mlt_transition) nextservice;
3643         int currentTrack = mlt_transition_get_b_track(tr);
3644         int currentIn = (int) mlt_transition_get_in(tr);
3645         int currentOut = (int) mlt_transition_get_out(tr);
3646         //kDebug() << "// FOUND EXISTING TRANS, IN: " << currentIn << ", OUT: " << currentOut << ", TRACK: " << currentTrack;
3647
3648         if (resource == tag && b_track == currentTrack && currentIn <= old_pos && currentOut >= old_pos) {
3649             mlt_field_disconnect_service(field->get_field(), nextservice);
3650             break;
3651         }
3652         nextservice = mlt_service_producer(nextservice);
3653         if (nextservice == NULL) break;
3654         properties = MLT_SERVICE_PROPERTIES(nextservice);
3655         mlt_type = mlt_properties_get(properties, "mlt_type");
3656         resource = mlt_properties_get(properties, "mlt_service");
3657     }
3658     mlt_service_unlock(serv);
3659     //askForRefresh();
3660     //if (m_isBlocked == 0) m_mltConsumer->set("refresh", 1);
3661 }
3662
3663 QMap<QString, QString> Render::mltGetTransitionParamsFromXml(QDomElement xml)
3664 {
3665     QDomNodeList attribs = xml.elementsByTagName("parameter");
3666     QMap<QString, QString> map;
3667     for (int i = 0; i < attribs.count(); i++) {
3668         QDomElement e = attribs.item(i).toElement();
3669         QString name = e.attribute("name");
3670         //kDebug()<<"-- TRANSITION PARAM: "<<name<<" = "<< e.attribute("name")<<" / " << e.attribute("value");
3671         map[name] = e.attribute("default");
3672         if (!e.attribute("value").isEmpty()) {
3673             map[name] = e.attribute("value");
3674         }
3675         if (e.attribute("type") != "addedgeometry" && (e.attribute("factor", "1") != "1" || e.attribute("offset", "0") != "0")) {
3676             map[name] = m_locale.toString((map.value(name).toDouble() - e.attribute("offset", "0").toDouble()) / e.attribute("factor", "1").toDouble());
3677             //map[name]=map[name].replace(".",","); //FIXME how to solve locale conversion of . ,
3678         }
3679
3680         if (e.attribute("namedesc").contains(';')) {
3681             QString format = e.attribute("format");
3682             QStringList separators = format.split("%d", QString::SkipEmptyParts);
3683             QStringList values = e.attribute("value").split(QRegExp("[,:;x]"));
3684             QString neu;
3685             QTextStream txtNeu(&neu);
3686             if (values.size() > 0)
3687                 txtNeu << (int)values[0].toDouble();
3688             int i = 0;
3689             for (i = 0; i < separators.size() && i + 1 < values.size(); i++) {
3690                 txtNeu << separators[i];
3691                 txtNeu << (int)(values[i+1].toDouble());
3692             }
3693             if (i < separators.size())
3694                 txtNeu << separators[i];
3695             map[e.attribute("name")] = neu;
3696         }
3697
3698     }
3699     return map;
3700 }
3701
3702 void Render::mltAddClipTransparency(ItemInfo info, int transitiontrack, int id)
3703 {
3704     kDebug() << "/////////  ADDING CLIP TRANSPARENCY AT: " << info.startPos.frames(25);
3705     Mlt::Service service(m_mltProducer->parent().get_service());
3706     Mlt::Tractor tractor(service);
3707     Mlt::Field *field = tractor.field();
3708
3709     Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "composite");
3710     transition->set_in_and_out((int) info.startPos.frames(m_fps), (int) info.endPos.frames(m_fps) - 1);
3711     transition->set("transparency", id);
3712     transition->set("fill", 1);
3713     transition->set("internal_added", 237);
3714     field->plant_transition(*transition, transitiontrack, info.track);
3715     refresh();
3716 }
3717
3718 void Render::mltDeleteTransparency(int pos, int track, int id)
3719 {
3720     Mlt::Service service(m_mltProducer->parent().get_service());
3721     Mlt::Tractor tractor(service);
3722     Mlt::Field *field = tractor.field();
3723
3724     //if (do_refresh) m_mltConsumer->set("refresh", 0);
3725     mlt_service serv = m_mltProducer->parent().get_service();
3726
3727     mlt_service nextservice = mlt_service_get_producer(serv);
3728     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3729     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3730     QString resource = mlt_properties_get(properties, "mlt_service");
3731
3732     while (mlt_type == "transition") {
3733         mlt_transition tr = (mlt_transition) nextservice;
3734         int currentTrack = mlt_transition_get_b_track(tr);
3735         int currentIn = (int) mlt_transition_get_in(tr);
3736         int currentOut = (int) mlt_transition_get_out(tr);
3737         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
3738         kDebug() << "// FOUND EXISTING TRANS, IN: " << currentIn << ", OUT: " << currentOut << ", TRACK: " << currentTrack;
3739
3740         if (resource == "composite" && track == currentTrack && currentIn == pos && transitionId == id) {
3741             //kDebug() << " / / / / /DELETE TRANS DOOOMNE";
3742             mlt_field_disconnect_service(field->get_field(), nextservice);
3743             break;
3744         }
3745         nextservice = mlt_service_producer(nextservice);
3746         if (nextservice == NULL) break;
3747         properties = MLT_SERVICE_PROPERTIES(nextservice);
3748         mlt_type = mlt_properties_get(properties, "mlt_type");
3749         resource = mlt_properties_get(properties, "mlt_service");
3750     }
3751     //if (do_refresh) m_mltConsumer->set("refresh", 1);
3752 }
3753
3754 void Render::mltResizeTransparency(int oldStart, int newStart, int newEnd, int track, int id)
3755 {
3756     Mlt::Service service(m_mltProducer->parent().get_service());
3757     Mlt::Tractor tractor(service);
3758
3759     service.lock();
3760     m_mltConsumer->set("refresh", 0);
3761
3762     mlt_service serv = m_mltProducer->parent().get_service();
3763     mlt_service nextservice = mlt_service_get_producer(serv);
3764     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3765     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3766     QString resource = mlt_properties_get(properties, "mlt_service");
3767     kDebug() << "// resize transpar from: " << oldStart << ", TO: " << newStart << 'x' << newEnd << ", " << track << ", " << id;
3768     while (mlt_type == "transition") {
3769         mlt_transition tr = (mlt_transition) nextservice;
3770         int currentTrack = mlt_transition_get_b_track(tr);
3771         int currentIn = (int) mlt_transition_get_in(tr);
3772         //mlt_properties props = MLT_TRANSITION_PROPERTIES(tr);
3773         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
3774         kDebug() << "// resize transpar current in: " << currentIn << ", Track: " << currentTrack << ", id: " << id << 'x' << transitionId ;
3775         if (resource == "composite" && track == currentTrack && currentIn == oldStart && transitionId == id) {
3776             kDebug() << " / / / / /RESIZE TRANS TO: " << newStart << 'x' << newEnd;
3777             mlt_transition_set_in_and_out(tr, newStart, newEnd);
3778             break;
3779         }
3780         nextservice = mlt_service_producer(nextservice);
3781         if (nextservice == NULL) break;
3782         properties = MLT_SERVICE_PROPERTIES(nextservice);
3783         mlt_type = mlt_properties_get(properties, "mlt_type");
3784         resource = mlt_properties_get(properties, "mlt_service");
3785     }
3786     service.unlock();
3787     m_mltConsumer->set("refresh", 1);
3788
3789 }
3790
3791 void Render::mltMoveTransparency(int startTime, int endTime, int startTrack, int endTrack, int id)
3792 {
3793     Mlt::Service service(m_mltProducer->parent().get_service());
3794     Mlt::Tractor tractor(service);
3795
3796     service.lock();
3797     m_mltConsumer->set("refresh", 0);
3798
3799     mlt_service serv = m_mltProducer->parent().get_service();
3800     mlt_service nextservice = mlt_service_get_producer(serv);
3801     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3802     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3803     QString resource = mlt_properties_get(properties, "mlt_service");
3804
3805     while (mlt_type == "transition") {
3806         mlt_transition tr = (mlt_transition) nextservice;
3807         int currentTrack = mlt_transition_get_b_track(tr);
3808         int currentaTrack = mlt_transition_get_a_track(tr);
3809         int currentIn = (int) mlt_transition_get_in(tr);
3810         int currentOut = (int) mlt_transition_get_out(tr);
3811         //mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
3812         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
3813         //kDebug()<<" + TRANSITION "<<id<<" == "<<transitionId<<", START TMIE: "<<currentIn<<", LOOK FR: "<<startTime<<", TRACK: "<<currentTrack<<'x'<<startTrack;
3814         if (resource == "composite" && transitionId == id && startTime == currentIn && startTrack == currentTrack) {
3815             kDebug() << "//////MOVING";
3816             mlt_transition_set_in_and_out(tr, endTime, endTime + currentOut - currentIn);
3817             if (endTrack != startTrack) {
3818                 mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
3819                 mlt_properties_set_int(properties, "a_track", currentaTrack + endTrack - currentTrack);
3820                 mlt_properties_set_int(properties, "b_track", endTrack);
3821             }
3822             break;
3823         }
3824         nextservice = mlt_service_producer(nextservice);
3825         if (nextservice == NULL) break;
3826         properties = MLT_SERVICE_PROPERTIES(nextservice);
3827         mlt_type = mlt_properties_get(properties, "mlt_type");
3828         resource = mlt_properties_get(properties, "mlt_service");
3829     }
3830     service.unlock();
3831     m_mltConsumer->set("refresh", 1);
3832 }
3833
3834
3835 bool Render::mltAddTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool do_refresh)
3836 {
3837     if (in >= out) return false;
3838     QMap<QString, QString> args = mltGetTransitionParamsFromXml(xml);
3839     Mlt::Service service(m_mltProducer->parent().get_service());
3840
3841     Mlt::Tractor tractor(service);
3842     Mlt::Field *field = tractor.field();
3843
3844     Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, tag.toUtf8().constData());
3845     if (out != GenTime())
3846         transition->set_in_and_out((int) in.frames(m_fps), (int) out.frames(m_fps) - 1);
3847
3848     if (do_refresh && (m_mltProducer->position() < in.frames(m_fps) || m_mltProducer->position() > out.frames(m_fps))) do_refresh = false;
3849     QMap<QString, QString>::Iterator it;
3850     QString key;
3851     if (xml.attribute("automatic") == "1") transition->set("automatic", 1);
3852     //kDebug() << " ------  ADDING TRANSITION PARAMs: " << args.count();
3853     if (xml.hasAttribute("id"))
3854         transition->set("kdenlive_id", xml.attribute("id").toUtf8().constData());
3855     if (xml.hasAttribute("force_track"))
3856         transition->set("force_track", xml.attribute("force_track").toInt());
3857
3858     for (it = args.begin(); it != args.end(); ++it) {
3859         key = it.key();
3860         if (!it.value().isEmpty())
3861             transition->set(key.toUtf8().constData(), it.value().toUtf8().constData());
3862         //kDebug() << " ------  ADDING TRANS PARAM: " << key << ": " << it.value();
3863     }
3864     // attach transition
3865     service.lock();
3866     mltPlantTransition(field, *transition, a_track, b_track);
3867     // field->plant_transition(*transition, a_track, b_track);
3868     service.unlock();
3869     if (do_refresh) refresh();
3870     return true;
3871 }
3872
3873 void Render::mltSavePlaylist()
3874 {
3875     kWarning() << "// UPDATING PLAYLIST TO DISK++++++++++++++++";
3876     Mlt::Consumer fileConsumer(*m_mltProfile, "xml");
3877     fileConsumer.set("resource", "/tmp/playlist.mlt");
3878
3879     Mlt::Service service(m_mltProducer->get_service());
3880
3881     fileConsumer.connect(service);
3882     fileConsumer.start();
3883 }
3884
3885 const QList <Mlt::Producer *> Render::producersList()
3886 {
3887     QList <Mlt::Producer *> prods;
3888     if (m_mltProducer == NULL) return prods;
3889     Mlt::Service service(m_mltProducer->parent().get_service());
3890     if (service.type() != tractor_type) return prods;
3891     Mlt::Tractor tractor(service);
3892     QStringList ids;
3893
3894     int trackNb = tractor.count();
3895     for (int t = 1; t < trackNb; t++) {
3896         Mlt::Producer *tt = tractor.track(t);
3897         Mlt::Producer trackProducer(tt);
3898         delete tt;
3899         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3900         int clipNb = trackPlaylist.count();
3901         for (int i = 0; i < clipNb; i++) {
3902             Mlt::Producer *c = trackPlaylist.get_clip(i);
3903             if (c == NULL) continue;
3904             QString prodId = c->parent().get("id");
3905             if (!c->is_blank() && !ids.contains(prodId) && !prodId.startsWith("slowmotion") && !prodId.isEmpty()) {
3906                 Mlt::Producer *nprod = new Mlt::Producer(c->get_parent());
3907                 if (nprod) {
3908                     ids.append(prodId);
3909                     prods.append(nprod);
3910                 }
3911             }
3912             delete c;
3913         }
3914     }
3915     return prods;
3916 }
3917
3918 void Render::fillSlowMotionProducers()
3919 {
3920     if (m_mltProducer == NULL) return;
3921     Mlt::Service service(m_mltProducer->parent().get_service());
3922     if (service.type() != tractor_type) return;
3923
3924     Mlt::Tractor tractor(service);
3925
3926     int trackNb = tractor.count();
3927     for (int t = 1; t < trackNb; t++) {
3928         Mlt::Producer *tt = tractor.track(t);
3929         Mlt::Producer trackProducer(tt);
3930         delete tt;
3931         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
3932         int clipNb = trackPlaylist.count();
3933         for (int i = 0; i < clipNb; i++) {
3934             Mlt::Producer *c = trackPlaylist.get_clip(i);
3935             Mlt::Producer *nprod = new Mlt::Producer(c->get_parent());
3936             if (nprod) {
3937                 QString id = nprod->parent().get("id");
3938                 if (id.startsWith("slowmotion:") && !nprod->is_blank()) {
3939                     // this is a slowmotion producer, add it to the list
3940                     QString url = QString::fromUtf8(nprod->get("resource"));
3941                     int strobe = nprod->get_int("strobe");
3942                     if (strobe > 1) url.append("&strobe=" + QString::number(strobe));
3943                     if (!m_slowmotionProducers.contains(url)) {
3944                         m_slowmotionProducers.insert(url, nprod);
3945                     }
3946                 } else delete nprod;
3947             }
3948             delete c;
3949         }
3950     }
3951 }
3952
3953 void Render::mltInsertTrack(int ix, bool videoTrack)
3954 {
3955     blockSignals(true);
3956
3957     Mlt::Service service(m_mltProducer->parent().get_service());
3958     service.lock();
3959     if (service.type() != tractor_type) {
3960         kWarning() << "// TRACTOR PROBLEM";
3961         return;
3962     }
3963
3964     Mlt::Tractor tractor(service);
3965
3966     Mlt::Playlist playlist;
3967     int ct = tractor.count();
3968     if (ix > ct) {
3969         kDebug() << "// ERROR, TRYING TO insert TRACK " << ix << ", max: " << ct;
3970         ix = ct;
3971     }
3972
3973     int pos = ix;
3974     if (pos < ct) {
3975         Mlt::Producer *prodToMove = new Mlt::Producer(tractor.track(pos));
3976         tractor.set_track(playlist, pos);
3977         Mlt::Producer newProd(tractor.track(pos));
3978         if (!videoTrack) newProd.set("hide", 1);
3979         pos++;
3980         for (; pos <= ct; pos++) {
3981             Mlt::Producer *prodToMove2 = new Mlt::Producer(tractor.track(pos));
3982             tractor.set_track(*prodToMove, pos);
3983             prodToMove = prodToMove2;
3984         }
3985     } else {
3986         tractor.set_track(playlist, ix);
3987         Mlt::Producer newProd(tractor.track(ix));
3988         if (!videoTrack) newProd.set("hide", 1);
3989     }
3990     checkMaxThreads();
3991
3992     // Move transitions
3993     mlt_service serv = m_mltProducer->parent().get_service();
3994     mlt_service nextservice = mlt_service_get_producer(serv);
3995     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
3996     QString mlt_type = mlt_properties_get(properties, "mlt_type");
3997     QString resource = mlt_properties_get(properties, "mlt_service");
3998
3999     while (mlt_type == "transition") {
4000         if (resource != "mix") {
4001             mlt_transition tr = (mlt_transition) nextservice;
4002             int currentTrack = mlt_transition_get_b_track(tr);
4003             int currentaTrack = mlt_transition_get_a_track(tr);
4004             mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
4005
4006             if (currentTrack >= ix) {
4007                 mlt_properties_set_int(properties, "b_track", currentTrack + 1);
4008                 mlt_properties_set_int(properties, "a_track", currentaTrack + 1);
4009             }
4010         }
4011         nextservice = mlt_service_producer(nextservice);
4012         if (nextservice == NULL) break;
4013         properties = MLT_SERVICE_PROPERTIES(nextservice);
4014         mlt_type = mlt_properties_get(properties, "mlt_type");
4015         resource = mlt_properties_get(properties, "mlt_service");
4016     }
4017
4018     // Add audio mix transition to last track
4019     Mlt::Field *field = tractor.field();
4020     Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "mix");
4021     transition->set("a_track", 1);
4022     transition->set("b_track", ct);
4023     transition->set("always_active", 1);
4024     transition->set("internal_added", 237);
4025     transition->set("combine", 1);
4026     field->plant_transition(*transition, 1, ct);
4027     //mlt_service_unlock(m_mltConsumer->get_service());
4028     service.unlock();
4029     //tractor.multitrack()->refresh();
4030     //tractor.refresh();
4031     blockSignals(false);
4032 }
4033
4034
4035 void Render::mltDeleteTrack(int ix)
4036 {
4037     QDomDocument doc;
4038     doc.setContent(sceneList(), false);
4039     int tracksCount = doc.elementsByTagName("track").count() - 1;
4040     QDomNode track = doc.elementsByTagName("track").at(ix);
4041     QDomNode tractor = doc.elementsByTagName("tractor").at(0);
4042     QDomNodeList transitions = doc.elementsByTagName("transition");
4043     for (int i = 0; i < transitions.count(); i++) {
4044         QDomElement e = transitions.at(i).toElement();
4045         QDomNodeList props = e.elementsByTagName("property");
4046         QMap <QString, QString> mappedProps;
4047         for (int j = 0; j < props.count(); j++) {
4048             QDomElement f = props.at(j).toElement();
4049             mappedProps.insert(f.attribute("name"), f.firstChild().nodeValue());
4050         }
4051         if (mappedProps.value("mlt_service") == "mix" && mappedProps.value("b_track").toInt() == tracksCount) {
4052             tractor.removeChild(transitions.at(i));
4053             i--;
4054         } else if (mappedProps.value("mlt_service") != "mix" && (mappedProps.value("b_track").toInt() >= ix || mappedProps.value("a_track").toInt() >= ix)) {
4055             // Transition needs to be moved
4056             int a_track = mappedProps.value("a_track").toInt();
4057             int b_track = mappedProps.value("b_track").toInt();
4058             if (a_track > 0 && a_track >= ix) a_track --;
4059             if (b_track == ix) {
4060                 // transition was on the deleted track, so remove it
4061                 tractor.removeChild(transitions.at(i));
4062                 i--;
4063                 continue;
4064             }
4065             if (b_track > 0 && b_track > ix) b_track --;
4066             for (int j = 0; j < props.count(); j++) {
4067                 QDomElement f = props.at(j).toElement();
4068                 if (f.attribute("name") == "a_track") f.firstChild().setNodeValue(QString::number(a_track));
4069                 else if (f.attribute("name") == "b_track") f.firstChild().setNodeValue(QString::number(b_track));
4070             }
4071
4072         }
4073     }
4074     tractor.removeChild(track);
4075     //kDebug() << "/////////// RESULT SCENE: \n" << doc.toString();
4076     setSceneList(doc.toString(), m_mltConsumer->position());
4077     emit refreshDocumentProducers(false, false);
4078 }
4079
4080
4081 void Render::updatePreviewSettings()
4082 {
4083     kDebug() << "////// RESTARTING CONSUMER";
4084     if (!m_mltConsumer || !m_mltProducer) return;
4085     if (m_mltProducer->get_playtime() == 0) return;
4086     QMutexLocker locker(&m_mutex);
4087     Mlt::Service service(m_mltProducer->parent().get_service());
4088     if (service.type() != tractor_type) return;
4089
4090     //m_mltConsumer->set("refresh", 0);
4091     if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
4092     m_mltConsumer->purge();
4093     QString scene = sceneList();
4094     int pos = 0;
4095     if (m_mltProducer) {
4096         pos = m_mltProducer->position();
4097     }
4098
4099     setSceneList(scene, pos);
4100 }
4101
4102
4103 QString Render::updateSceneListFps(double current_fps, double new_fps, QString scene)
4104 {
4105     // Update all frame positions to the new fps value
4106     //WARNING: there are probably some effects or other that hold a frame value
4107     // as parameter and will also need to be updated here!
4108     QDomDocument doc;
4109     doc.setContent(scene);
4110
4111     double factor = new_fps / current_fps;
4112     QDomNodeList producers = doc.elementsByTagName("producer");
4113     for (int i = 0; i < producers.count(); i++) {
4114         QDomElement prod = producers.at(i).toElement();
4115         prod.removeAttribute("in");
4116         prod.removeAttribute("out");
4117
4118         QDomNodeList props = prod.childNodes();
4119         for (int j = 0; j < props.count(); j++) {
4120             QDomElement param =  props.at(j).toElement();
4121             QString paramName = param.attribute("name");
4122             if (paramName.startsWith("meta.") || paramName == "length") {
4123                 prod.removeChild(props.at(j));
4124                 j--;
4125             }
4126         }
4127     }
4128
4129     QDomNodeList entries = doc.elementsByTagName("entry");
4130     for (int i = 0; i < entries.count(); i++) {
4131         QDomElement entry = entries.at(i).toElement();
4132         int in = entry.attribute("in").toInt();
4133         int out = entry.attribute("out").toInt();
4134         in = factor * in + 0.5;
4135         out = factor * out + 0.5;
4136         entry.setAttribute("in", in);
4137         entry.setAttribute("out", out);
4138     }
4139
4140     QDomNodeList blanks = doc.elementsByTagName("blank");
4141     for (int i = 0; i < blanks.count(); i++) {
4142         QDomElement blank = blanks.at(i).toElement();
4143         int length = blank.attribute("length").toInt();
4144         length = factor * length + 0.5;
4145         blank.setAttribute("length", QString::number(length));
4146     }
4147
4148     QDomNodeList filters = doc.elementsByTagName("filter");
4149     for (int i = 0; i < filters.count(); i++) {
4150         QDomElement filter = filters.at(i).toElement();
4151         int in = filter.attribute("in").toInt();
4152         int out = filter.attribute("out").toInt();
4153         in = factor * in + 0.5;
4154         out = factor * out + 0.5;
4155         filter.setAttribute("in", in);
4156         filter.setAttribute("out", out);
4157     }
4158
4159     QDomNodeList transitions = doc.elementsByTagName("transition");
4160     for (int i = 0; i < transitions.count(); i++) {
4161         QDomElement transition = transitions.at(i).toElement();
4162         int in = transition.attribute("in").toInt();
4163         int out = transition.attribute("out").toInt();
4164         in = factor * in + 0.5;
4165         out = factor * out + 0.5;
4166         transition.setAttribute("in", in);
4167         transition.setAttribute("out", out);
4168         QDomNodeList props = transition.childNodes();
4169         for (int j = 0; j < props.count(); j++) {
4170             QDomElement param =  props.at(j).toElement();
4171             QString paramName = param.attribute("name");
4172             if (paramName == "geometry") {
4173                 QString geom = param.firstChild().nodeValue();
4174                 QStringList keys = geom.split(';');
4175                 QStringList newKeys;
4176                 for (int k = 0; k < keys.size(); ++k) {
4177                     if (keys.at(k).contains('=')) {
4178                         int pos = keys.at(k).section('=', 0, 0).toInt();
4179                         pos = factor * pos + 0.5;
4180                         newKeys.append(QString::number(pos) + '=' + keys.at(k).section('=', 1));
4181                     } else newKeys.append(keys.at(k));
4182                 }
4183                 param.firstChild().setNodeValue(newKeys.join(";"));
4184             }
4185         }
4186     }
4187     QDomElement root = doc.documentElement();
4188     if (!root.isNull()) {
4189         QDomElement tractor = root.firstChildElement("tractor");
4190         int out = tractor.attribute("out").toInt();
4191         out = factor * out + 0.5;
4192         tractor.setAttribute("out", out);
4193         emit durationChanged(out);
4194     }
4195
4196     //kDebug() << "///////////////////////////// " << out << " \n" << doc.toString() << "\n-------------------------";
4197     return doc.toString();
4198 }
4199
4200
4201 void Render::sendFrameUpdate()
4202 {
4203     if (m_mltProducer) {
4204         Mlt::Frame * frame = m_mltProducer->get_frame();
4205         emitFrameUpdated(*frame);
4206         delete frame;
4207     }
4208 }
4209
4210 Mlt::Producer* Render::getProducer()
4211 {
4212     return m_mltProducer;
4213 }
4214
4215 const QString Render::activeClipId()
4216 {
4217     if (m_mltProducer) return m_mltProducer->get("id");
4218     return QString();
4219 }
4220
4221 #include "renderer.moc"
4222