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