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