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