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