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