]> git.sesse.net Git - kdenlive/blob - src/renderer.cpp
Fix several issues with spacer tool + some indent fixes
[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 // ffmpeg Header files
26
27 extern "C" {
28 #include <avformat.h>
29 }
30
31 #include <stdlib.h>
32
33 #include <QTimer>
34 #include <QDir>
35 #include <QApplication>
36
37 #include <KDebug>
38 #include <KStandardDirs>
39 #include <KMessageBox>
40 #include <KLocale>
41 #include <KTemporaryFile>
42
43 #include "renderer.h"
44 #include "kdenlivesettings.h"
45 #include "kthumb.h"
46 #include "definitions.h"
47
48 #include <mlt++/Mlt.h>
49
50 #if LIBAVCODEC_VERSION_MAJOR > 51 || (LIBAVCODEC_VERSION_MAJOR > 50 && LIBAVCODEC_VERSION_MINOR > 54)
51 // long_name was added in FFmpeg avcodec version 51.55
52 #define ENABLE_FFMPEG_CODEC_DESCRIPTION 1
53 #endif
54
55
56
57 static void consumer_frame_show(mlt_consumer, Render * self, mlt_frame frame_ptr) {
58     // detect if the producer has finished playing. Is there a better way to do it ?
59     if (self->m_isBlocked) return;
60     if (mlt_properties_get_double(MLT_FRAME_PROPERTIES(frame_ptr), "_speed") == 0.0) {
61         self->emitConsumerStopped();
62     } else {
63         self->emitFrameNumber(mlt_frame_get_position(frame_ptr));
64     }
65 }
66
67 Render::Render(const QString & rendererName, int winid, int extid, QWidget *parent): QObject(parent), m_name(rendererName), m_mltConsumer(NULL), m_mltProducer(NULL), m_mltTextProducer(NULL), m_winid(winid), m_externalwinid(extid),  m_framePosition(0), m_isBlocked(true), m_blackClip(NULL), m_isSplitView(false), m_isZoneMode(false), m_isLoopMode(false) {
68     kDebug() << "//////////  USING PROFILE: " << (char*)KdenliveSettings::current_profile().toUtf8().data();
69     refreshTimer = new QTimer(this);
70     connect(refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
71
72     /*if (rendererName == "project") m_monitorId = 10000;
73     else m_monitorId = 10001;*/
74     osdTimer = new QTimer(this);
75     connect(osdTimer, SIGNAL(timeout()), this, SLOT(slotOsdTimeout()));
76
77     m_osdProfile =   KStandardDirs::locate("data", "kdenlive/profiles/metadata.properties");
78     buildConsumer();
79
80     Mlt::Producer *producer = new Mlt::Producer(*m_mltProfile , "colour", "black");
81     m_mltProducer = producer;
82     if (m_blackClip) delete m_blackClip;
83     m_blackClip = new Mlt::Producer(*m_mltProfile , "colour", "black");
84     m_blackClip->set("id", "black");
85     m_mltConsumer->connect(*m_mltProducer);
86     m_mltProducer->set_speed(0.0);
87 }
88
89 Render::~Render() {
90     closeMlt();
91 }
92
93
94 void Render::closeMlt() {
95     delete osdTimer;
96     delete refreshTimer;
97     if (m_mltConsumer)
98         delete m_mltConsumer;
99     if (m_mltProducer)
100         delete m_mltProducer;
101     if (m_blackClip) delete m_blackClip;
102     //delete m_osdInfo;
103 }
104
105
106 void Render::buildConsumer() {
107     char *tmp;
108     tmp = decodedString(KdenliveSettings::current_profile());
109     m_mltProfile = new Mlt::Profile(tmp);
110     delete[] tmp;
111
112
113     QString videoDriver = KdenliveSettings::videodrivername();
114     if (!videoDriver.isEmpty()) {
115         if (videoDriver == "x11_noaccel") {
116             setenv("SDL_VIDEO_YUV_HWACCEL", "0", 1);
117             videoDriver = "x11";
118         } else {
119             unsetenv("SDL_VIDEO_YUV_HWACCEL");
120         }
121     }
122     setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 1);
123
124     m_mltConsumer = new Mlt::Consumer(*m_mltProfile , "sdl_preview");
125     m_mltConsumer->set("resize", 1);
126     m_mltConsumer->set("window_id", m_winid);
127     m_mltConsumer->set("terminate_on_pause", 1);
128     //m_mltConsumer->set("fullscreen", 1);
129     m_mltConsumer->listen("consumer-frame-show", this, (mlt_listener) consumer_frame_show);
130     m_mltConsumer->set("rescale", "nearest");
131
132     QString audioDevice = KdenliveSettings::audiodevicename();
133     if (!audioDevice.isEmpty()) {
134         tmp = decodedString(audioDevice);
135         m_mltConsumer->set("audio_device", tmp);
136         delete[] tmp;
137     }
138
139     if (!videoDriver.isEmpty()) {
140         tmp = decodedString(videoDriver);
141         m_mltConsumer->set("video_driver", tmp);
142         delete[] tmp;
143     }
144
145     QString audioDriver = KdenliveSettings::audiodrivername();
146     if (!audioDriver.isEmpty()) {
147         tmp = decodedString(audioDriver);
148         m_mltConsumer->set("audio_driver", tmp);
149         delete[] tmp;
150     }
151
152
153     m_mltConsumer->set("progressive", 1);
154     m_mltConsumer->set("audio_buffer", 1024);
155     m_mltConsumer->set("frequency", 48000);
156 }
157
158 int Render::resetProfile() {
159     if (!m_mltConsumer) return 0;
160     QString currentProfile = getenv("MLT_PROFILE");
161     if (currentProfile == KdenliveSettings::current_profile()) {
162         kDebug() << "reset to same profile, nothing to do";
163         return 1;
164     }
165     if (m_isSplitView) slotSplitView(false);
166     if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
167     m_mltConsumer->purge();
168     delete m_mltConsumer;
169     m_mltConsumer = NULL;
170     QString scene = sceneList();
171     if (m_mltProducer) delete m_mltProducer;
172     m_mltProducer = NULL;
173     if (m_mltProfile) delete m_mltProfile;
174     m_mltProfile = NULL;
175     buildConsumer();
176
177     //kDebug() << "//RESET WITHSCENE: " << scene;
178     setSceneList(scene);
179
180     char *tmp = decodedString(scene);
181     Mlt::Producer *producer = new Mlt::Producer(*m_mltProfile , "westley-xml", tmp);
182     delete[] tmp;
183     m_mltProducer = producer;
184     if (m_blackClip) delete m_blackClip;
185     m_blackClip = new Mlt::Producer(*m_mltProfile , "colour", "black");
186     m_mltProducer->optimise();
187     m_mltProducer->set_speed(0);
188     connectPlaylist();
189
190     //delete m_mltProfile;
191     // mlt_properties properties = MLT_CONSUMER_PROPERTIES(m_mltConsumer->get_consumer());
192     //mlt_profile prof = m_mltProfile->get_profile();
193     //mlt_properties_set_data(properties, "_profile", prof, 0, (mlt_destructor)mlt_profile_close, NULL);
194     //mlt_properties_set(properties, "profile", "hdv_1080_50i");
195     //m_mltConsumer->set("profile", (char *) profile.toUtf8().data());
196     //m_mltProfile = new Mlt::Profile((char*) profile.toUtf8().data());
197
198     //apply_profile_properties( m_mltProfile, m_mltConsumer->get_consumer(), properties );
199     //refresh();
200     return 1;
201 }
202
203 /** Wraps the VEML command of the same name; Seeks the renderer clip to the given time. */
204 void Render::seek(GenTime time) {
205     if (!m_mltProducer)
206         return;
207     m_isBlocked = false;
208     m_mltProducer->seek((int)(time.frames(m_fps)));
209     refresh();
210 }
211
212 //static
213 char *Render::decodedString(QString str) {
214     /*QCString fn = QFile::encodeName(str);
215     char *t = new char[fn.length() + 1];
216     strcpy(t, (const char *)fn);*/
217
218     return (char *) qstrdup(str.toUtf8().data());   //toLatin1
219 }
220
221 //static
222 /*QPixmap Render::frameThumbnail(Mlt::Frame *frame, int width, int height, bool border) {
223     QPixmap pix(width, height);
224
225     mlt_image_format format = mlt_image_rgb24a;
226     uint8_t *thumb = frame->get_image(format, width, height);
227     QImage image(thumb, width, height, QImage::Format_ARGB32);
228
229     if (!image.isNull()) {
230         pix = pix.fromImage(image);
231         if (border) {
232             QPainter painter(&pix);
233             painter.drawRect(0, 0, width - 1, height - 1);
234         }
235     } else pix.fill(Qt::black);
236     return pix;
237 }
238 */
239 const int Render::renderWidth() const {
240     return (int)(m_mltProfile->height() * m_mltProfile->dar());
241 }
242
243 const int Render::renderHeight() const {
244     return m_mltProfile->height();
245 }
246
247 QPixmap Render::extractFrame(int frame_position, int width, int height) {
248     if (width == -1) {
249         width = renderWidth();
250         height = renderHeight();
251     }
252     QPixmap pix(width, height);
253     if (!m_mltProducer) {
254         pix.fill(Qt::black);
255         return pix;
256     }
257     return KThumb::getFrame(m_mltProducer, frame_position, width, height);
258 }
259
260 QPixmap Render::getImageThumbnail(KUrl url, int width, int height) {
261     QImage im;
262     QPixmap pixmap;
263     if (url.fileName().startsWith(".all.")) {  //  check for slideshow
264         QString fileType = url.fileName().right(3);
265         QStringList more;
266         QStringList::Iterator it;
267
268         QDir dir(url.directory());
269         QStringList filter;
270         filter << "*." + fileType;
271         filter << "*." + fileType.toUpper();
272         more = dir.entryList(filter, QDir::Files);
273         im.load(url.directory() + "/" + more.at(0));
274     } else im.load(url.path());
275     //pixmap = im.scaled(width, height);
276     return pixmap;
277 }
278 /*
279 //static
280 QPixmap Render::getVideoThumbnail(char *profile, QString file, int frame_position, int width, int height) {
281     QPixmap pix(width, height);
282     char *tmp = decodedString(file);
283     Mlt::Profile *prof = new Mlt::Profile(profile);
284     Mlt::Producer m_producer(*prof, tmp);
285     delete[] tmp;
286     if (m_producer.is_blank()) {
287         pix.fill(Qt::black);
288         return pix;
289     }
290
291     Mlt::Filter m_convert(*prof, "avcolour_space");
292     m_convert.set("forced", mlt_image_rgb24a);
293     m_producer.attach(m_convert);
294     m_producer.seek(frame_position);
295     Mlt::Frame * frame = m_producer.get_frame();
296     if (frame) {
297         pix = frameThumbnail(frame, width, height, true);
298         delete frame;
299     }
300     if (prof) delete prof;
301     return pix;
302 }
303 */
304 /*
305 void Render::getImage(KUrl url, int frame_position, QPoint size)
306 {
307     char *tmp = decodedString(url.path());
308     Mlt::Producer m_producer(tmp);
309     delete[] tmp;
310     if (m_producer.is_blank()) {
311  return;
312     }
313     Mlt::Filter m_convert("avcolour_space");
314     m_convert.set("forced", mlt_image_rgb24a);
315     m_producer.attach(m_convert);
316     m_producer.seek(frame_position);
317
318     Mlt::Frame * frame = m_producer.get_frame();
319
320     if (frame) {
321  QPixmap pix = frameThumbnail(frame, size.x(), size.y(), true);
322  delete frame;
323  emit replyGetImage(url, frame_position, pix, size.x(), size.y());
324     }
325 }*/
326
327 /* Create thumbnail for color */
328 /*void Render::getImage(int id, QString color, QPoint size)
329 {
330     QPixmap pixmap(size.x() - 2, size.y() - 2);
331     color = color.replace(0, 2, "#");
332     color = color.left(7);
333     pixmap.fill(QColor(color));
334     QPixmap result(size.x(), size.y());
335     result.fill(Qt::black);
336     //copyBlt(&result, 1, 1, &pixmap, 0, 0, size.x() - 2, size.y() - 2);
337     emit replyGetImage(id, result, size.x(), size.y());
338
339 }*/
340
341 /* Create thumbnail for image */
342 /*void Render::getImage(KUrl url, QPoint size)
343 {
344     QImage im;
345     QPixmap pixmap;
346     if (url.fileName().startsWith(".all.")) {  //  check for slideshow
347      QString fileType = url.fileName().right(3);
348          QStringList more;
349          QStringList::Iterator it;
350
351             QDir dir( url.directory() );
352             more = dir.entryList( QDir::Files );
353             for ( it = more.begin() ; it != more.end() ; ++it ) {
354                 if ((*it).endsWith("."+fileType, Qt::CaseInsensitive)) {
355    if (!im.load(url.directory() + "/" + *it))
356        kDebug()<<"++ ERROR LOADIN IMAGE: "<<url.directory() + "/" + *it;
357    break;
358   }
359      }
360     }
361     else im.load(url.path());
362
363     //pixmap = im.smoothScale(size.x() - 2, size.y() - 2);
364     QPixmap result(size.x(), size.y());
365     result.fill(Qt::black);
366     //copyBlt(&result, 1, 1, &pixmap, 0, 0, size.x() - 2, size.y() - 2);
367     emit replyGetImage(url, 1, result, size.x(), size.y());
368 }*/
369
370
371 double Render::consumerRatio() const {
372     if (!m_mltConsumer) return 1.0;
373     return (m_mltConsumer->get_double("aspect_ratio_num") / m_mltConsumer->get_double("aspect_ratio_den"));
374 }
375
376
377 int Render::getLength() {
378
379     if (m_mltProducer) {
380         // kDebug()<<"//////  LENGTH: "<<mlt_producer_get_playtime(m_mltProducer->get_producer());
381         return mlt_producer_get_playtime(m_mltProducer->get_producer());
382     }
383     return 0;
384 }
385
386 bool Render::isValid(KUrl url) {
387     char *tmp = decodedString(url.path());
388     Mlt::Producer producer(*m_mltProfile, tmp);
389     delete[] tmp;
390     if (producer.is_blank())
391         return false;
392
393     return true;
394 }
395
396 const double Render::dar() const {
397     return m_mltProfile->dar();
398 }
399
400 void Render::slotSplitView(bool doit) {
401     m_isSplitView = doit;
402     Mlt::Service service(m_mltProducer->parent().get_service());
403     Mlt::Tractor tractor(service);
404     if (service.type() != tractor_type || tractor.count() < 2) return;
405     Mlt::Field *field = tractor.field();
406     if (doit) {
407         int screen = 0;
408         for (int i = 1; i < tractor.count() && screen < 4; i++) {
409             Mlt::Producer trackProducer(tractor.track(i));
410             kDebug() << "// TRACK: " << i << ", HIDE: " << trackProducer.get("hide");
411             if (QString(trackProducer.get("hide")).toInt() != 1) {
412                 kDebug() << "// ADIDNG TRACK: " << i;
413                 Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "composite");
414                 transition->set("mlt_service", "composite");
415                 transition->set("a_track", 0);
416                 transition->set("b_track", i);
417                 transition->set("distort", 1);
418                 transition->set("internal_added", "200");
419                 const char *tmp;
420                 switch (screen) {
421                 case 0:
422                     tmp = "0,0:50%x50%";
423                     break;
424                 case 1:
425                     tmp = "50%,0:50%x50%";
426                     break;
427                 case 2:
428                     tmp = "0,50%:50%x50%";
429                     break;
430                 case 3:
431                     tmp = "50%,50%:50%x50%";
432                     break;
433                 }
434                 transition->set("geometry", tmp);
435                 transition->set("always_active", "1");
436                 field->plant_transition(*transition, 0, i);
437                 //delete[] tmp;
438                 screen++;
439             }
440         }
441         m_mltConsumer->set("refresh", 1);
442     } else {
443         mlt_service serv = m_mltProducer->parent().get_service();
444         mlt_service nextservice = mlt_service_get_producer(serv);
445         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
446         QString mlt_type = mlt_properties_get(properties, "mlt_type");
447         QString resource = mlt_properties_get(properties, "mlt_service");
448
449         while (mlt_type == "transition") {
450             QString added = mlt_properties_get(MLT_SERVICE_PROPERTIES(nextservice), "internal_added");
451             if (added == "200") {
452                 mlt_field_disconnect_service(field->get_field(), nextservice);
453             }
454             nextservice = mlt_service_producer(nextservice);
455             if (nextservice == NULL) break;
456             properties = MLT_SERVICE_PROPERTIES(nextservice);
457             mlt_type = mlt_properties_get(properties, "mlt_type");
458             resource = mlt_properties_get(properties, "mlt_service");
459             m_mltConsumer->set("refresh", 1);
460         }
461     }
462 }
463
464 void Render::getFileProperties(const QDomElement &xml, const QString &clipId) {
465     int height = 50;
466     int width = (int)(height  * m_mltProfile->dar());
467     QMap < QString, QString > filePropertyMap;
468     QMap < QString, QString > metadataPropertyMap;
469
470     KUrl url = KUrl(xml.attribute("resource", QString::null));
471     Mlt::Producer *producer = NULL;
472     if (xml.attribute("type").toInt() == TEXT && !QFile::exists(url.path())) {
473         emit replyGetFileProperties(clipId, producer, filePropertyMap, metadataPropertyMap);
474         return;
475     }
476     if (xml.attribute("type").toInt() == COLOR) {
477         char *tmp = decodedString("colour:" + xml.attribute("colour"));
478         producer = new Mlt::Producer(*m_mltProfile, "fezzik", tmp);
479         delete[] tmp;
480     } else if (url.isEmpty()) {
481         QDomDocument doc;
482         QDomElement westley = doc.createElement("westley");
483         QDomElement play = doc.createElement("playlist");
484         doc.appendChild(westley);
485         westley.appendChild(play);
486         play.appendChild(doc.importNode(xml, true));
487         char *tmp = decodedString(doc.toString());
488         producer = new Mlt::Producer(*m_mltProfile, "westley-xml", tmp);
489         delete[] tmp;
490     } else {
491         QString urlpath = url.path();
492         /*if (urlpath.contains(':')) {
493             if (!urlpath.startsWith("file:")) urlpath.prepend("file:");
494             char *tmp = decodedString(urlpath);
495             producer = new Mlt::Producer(*m_mltProfile, "avformat", tmp);
496             delete[] tmp;
497         }
498         else {*/
499         char *tmp = decodedString(urlpath);
500         producer = new Mlt::Producer(*m_mltProfile, tmp);
501         delete[] tmp;
502
503         if (xml.hasAttribute("force_aspect_ratio")) {
504             double aspect = xml.attribute("force_aspect_ratio").toDouble();
505             if (aspect > 0) producer->set("force_aspect_ratio", aspect);
506         }
507         if (xml.hasAttribute("threads")) {
508             int threads = xml.attribute("threads").toInt();
509             if (threads != 1) producer->set("threads", threads);
510         }
511         if (xml.hasAttribute("video_index")) {
512             int vindex = xml.attribute("video_index").toInt();
513             if (vindex != 0) producer->set("video_index", vindex);
514         }
515         if (xml.hasAttribute("audio_index")) {
516             int aindex = xml.attribute("audio_index").toInt();
517             if (aindex != 0) producer->set("audio_index", aindex);
518         }
519         //}
520     }
521     if (xml.hasAttribute("out")) producer->set_in_and_out(xml.attribute("in").toInt(), xml.attribute("out").toInt());
522
523     if (producer->is_blank() || !producer->is_valid()) {
524         kDebug() << " / / / / / / / /ERRROR / / / / // CANNOT LOAD PRODUCER: ";
525         emit removeInvalidClip(clipId);
526         return;
527     }
528     char *tmp = decodedString(clipId);
529     producer->set("id", tmp);
530     delete[] tmp;
531     int frameNumber = xml.attribute("thumbnail", "0").toInt();
532     if (frameNumber != 0) producer->seek(frameNumber);
533     mlt_properties properties = MLT_PRODUCER_PROPERTIES(producer->get_producer());
534
535     filePropertyMap["duration"] = QString::number(producer->get_playtime());
536     //kDebug() << "///////  PRODUCER: " << url.path() << " IS: " << producer.get_playtime();
537
538     Mlt::Frame *frame = producer->get_frame();
539
540     if (xml.attribute("type").toInt() == SLIDESHOW) {
541         if (xml.hasAttribute("ttl")) producer->set("ttl", xml.attribute("ttl").toInt());
542         if (xml.attribute("fade") == "1") {
543             // user wants a fade effect to slideshow
544             Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, "luma");
545             if (xml.hasAttribute("ttl")) filter->set("period", xml.attribute("ttl").toInt() - 1);
546             if (xml.hasAttribute("luma_duration") && !xml.attribute("luma_duration").isEmpty()) filter->set("luma.out", xml.attribute("luma_duration").toInt());
547             if (xml.hasAttribute("luma_file") && !xml.attribute("luma_file").isEmpty()) {
548                 char *tmp = decodedString(xml.attribute("luma_file"));
549                 filter->set("luma.resource", tmp);
550                 delete[] tmp;
551                 if (xml.hasAttribute("softness")) {
552                     int soft = xml.attribute("softness").toInt();
553                     filter->set("luma.softness", (double) soft / 100.0);
554                 }
555             }
556             Mlt::Service clipService(producer->get_service());
557             clipService.attach(*filter);
558         }
559     }
560
561
562     filePropertyMap["fps"] = producer->get("source_fps");
563
564     if (frame && frame->is_valid()) {
565         filePropertyMap["frame_size"] = QString::number(frame->get_int("width")) + "x" + QString::number(frame->get_int("height"));
566         filePropertyMap["frequency"] = QString::number(frame->get_int("frequency"));
567         filePropertyMap["channels"] = QString::number(frame->get_int("channels"));
568         filePropertyMap["aspect_ratio"] = frame->get("aspect_ratio");
569
570         if (frame->get_int("test_image") == 0) {
571             if (url.path().endsWith(".westley") || url.path().endsWith(".kdenlive")) {
572                 filePropertyMap["type"] = "playlist";
573                 metadataPropertyMap["comment"] = QString::fromUtf8(mlt_properties_get(MLT_SERVICE_PROPERTIES(producer->get_service()), "title"));
574             } else if (frame->get_int("test_audio") == 0)
575                 filePropertyMap["type"] = "av";
576             else
577                 filePropertyMap["type"] = "video";
578
579             mlt_image_format format = mlt_image_yuv422;
580             int frame_width = 0;
581             int frame_height = 0;
582             //frame->set("rescale.interp", "hyper");
583             frame->set("normalised_height", height);
584             frame->set("normalised_width", width);
585             QPixmap pix(width, height);
586
587             uint8_t *data = frame->get_image(format, frame_width, frame_height, 0);
588             uint8_t *new_image = (uint8_t *)mlt_pool_alloc(frame_width * (frame_height + 1) * 4);
589             mlt_convert_yuv422_to_rgb24a((uint8_t *)data, new_image, frame_width * frame_height);
590             QImage image((uchar *)new_image, frame_width, frame_height, QImage::Format_ARGB32);
591
592             if (!image.isNull()) {
593                 pix = QPixmap::fromImage(image.rgbSwapped());
594             } else
595                 pix.fill(Qt::black);
596
597             mlt_pool_release(new_image);
598             emit replyGetImage(clipId, 0, pix, width, height);
599
600         } else if (frame->get_int("test_audio") == 0) {
601             QPixmap pixmap = KIcon("audio-x-generic").pixmap(QSize(width, height));
602             emit replyGetImage(clipId, 0, pixmap, width, height);
603             filePropertyMap["type"] = "audio";
604         }
605     }
606
607     // Retrieve audio / video codec name
608
609     // Fetch the video_context
610 #if 1
611
612     AVFormatContext *context = (AVFormatContext *) mlt_properties_get_data(properties, "video_context", NULL);
613     if (context != NULL) {
614         /*if (context->duration == AV_NOPTS_VALUE) {
615         kDebug() << " / / / / / / / /ERRROR / / / CLIP HAS UNKNOWN DURATION";
616             emit removeInvalidClip(clipId);
617             return;
618         }*/
619         // Get the video_index
620         int index = mlt_properties_get_int(properties, "video_index");
621         int default_video = -1;
622         int video_max = 0;
623         int default_audio = -1;
624         int audio_max = 0;
625         // Find default audio stream (borrowed from MLT)
626         for (int ix = 0; ix < context->nb_streams; ix++) {
627             // Get the codec context
628             AVCodecContext *codec_context = context->streams[ ix ]->codec;
629
630             if (avcodec_find_decoder(codec_context->codec_id) == NULL)
631                 continue;
632             // Determine the type and obtain the first index of each type
633             switch (codec_context->codec_type) {
634             case CODEC_TYPE_VIDEO:
635                 if (default_video < 0) default_video = ix;
636                 video_max = ix;
637                 break;
638             case CODEC_TYPE_AUDIO:
639                 if (default_audio < 0) default_audio = ix;
640                 audio_max = ix;
641                 break;
642             default:
643                 break;
644             }
645         }
646         filePropertyMap["default_video"] = QString::number(default_video);
647         filePropertyMap["video_max"] = QString::number(video_max);
648         filePropertyMap["default_audio"] = QString::number(default_audio);
649         filePropertyMap["audio_max"] = QString::number(audio_max);
650
651
652 #if ENABLE_FFMPEG_CODEC_DESCRIPTION
653         if (index > -1 && context->streams && context->streams [index] && context->streams[ index ]->codec && context->streams[ index ]->codec->codec->long_name) {
654             filePropertyMap["videocodec"] = context->streams[ index ]->codec->codec->long_name;
655         } else
656 #endif
657             if (index > -1 && context->streams && context->streams [index] && context->streams[ index ]->codec && context->streams[ index ]->codec->codec->name) {
658                 filePropertyMap["videocodec"] = context->streams[ index ]->codec->codec->name;
659             }
660     } else kDebug() << " / / / / /WARNING, VIDEO CONTEXT IS NULL!!!!!!!!!!!!!!";
661     context = (AVFormatContext *) mlt_properties_get_data(properties, "audio_context", NULL);
662     if (context != NULL) {
663         // Get the audio_index
664         int index = mlt_properties_get_int(properties, "audio_index");
665
666 #if ENABLE_FFMPEG_CODEC_DESCRIPTION
667         if (index > -1 && context->streams && context->streams [index] && context->streams[ index ]->codec && context->streams[ index ]->codec->codec->long_name)
668             filePropertyMap["audiocodec"] = context->streams[ index ]->codec->codec->long_name;
669         else
670 #endif
671             if (index > -1 && context->streams && context->streams [index] && context->streams[ index ]->codec && context->streams[ index ]->codec->codec->name)
672                 filePropertyMap["audiocodec"] = context->streams[ index ]->codec->codec->name;
673     }
674 #endif
675     // metadata
676
677     mlt_properties metadata = mlt_properties_new();
678     mlt_properties_pass(metadata, properties, "meta.attr.");
679     int count = mlt_properties_count(metadata);
680     for (int i = 0; i < count; i ++) {
681         QString name = mlt_properties_get_name(metadata, i);
682         QString value = QString::fromUtf8(mlt_properties_get_value(metadata, i));
683         if (name.endsWith("markup") && !value.isEmpty())
684             metadataPropertyMap[ name.section(".", 0, -2)] = value;
685     }
686
687     emit replyGetFileProperties(clipId, producer, filePropertyMap, metadataPropertyMap);
688     kDebug() << "REquested fuile info for: " << url.path();
689     if (frame) delete frame;
690     //if (producer) delete producer;
691 }
692
693
694 /** Create the producer from the Westley QDomDocument */
695 #if 0
696 void Render::initSceneList() {
697     kDebug() << "--------  INIT SCENE LIST ------_";
698     QDomDocument doc;
699     QDomElement westley = doc.createElement("westley");
700     doc.appendChild(westley);
701     QDomElement prod = doc.createElement("producer");
702     prod.setAttribute("resource", "colour");
703     prod.setAttribute("colour", "red");
704     prod.setAttribute("id", "black");
705     prod.setAttribute("in", "0");
706     prod.setAttribute("out", "0");
707
708     QDomElement tractor = doc.createElement("tractor");
709     QDomElement multitrack = doc.createElement("multitrack");
710
711     QDomElement playlist1 = doc.createElement("playlist");
712     playlist1.appendChild(prod);
713     multitrack.appendChild(playlist1);
714     QDomElement playlist2 = doc.createElement("playlist");
715     multitrack.appendChild(playlist2);
716     QDomElement playlist3 = doc.createElement("playlist");
717     multitrack.appendChild(playlist3);
718     QDomElement playlist4 = doc.createElement("playlist");
719     multitrack.appendChild(playlist4);
720     QDomElement playlist5 = doc.createElement("playlist");
721     multitrack.appendChild(playlist5);
722     tractor.appendChild(multitrack);
723     westley.appendChild(tractor);
724     // kDebug()<<doc.toString();
725     /*
726        QString tmp = QString("<westley><producer resource=\"colour\" colour=\"red\" id=\"red\" /><tractor><multitrack><playlist></playlist><playlist></playlist><playlist /><playlist /><playlist></playlist></multitrack></tractor></westley>");*/
727     setSceneList(doc, 0);
728 }
729 #endif
730
731
732
733 /** Create the producer from the Westley QDomDocument */
734 void Render::setProducer(Mlt::Producer *producer, int position) {
735     if (m_winid == -1) return;
736
737     if (m_mltConsumer) {
738         m_mltConsumer->stop();
739     } else return;
740
741     m_isBlocked = true;
742     if (m_mltProducer) {
743         m_mltProducer->set_speed(0);
744         delete m_mltProducer;
745         m_mltProducer = NULL;
746         emit stopped();
747     }
748     if (producer) m_mltProducer = new Mlt::Producer(producer->get_producer());
749     else m_mltProducer = new Mlt::Producer();
750     if (!m_mltProducer || !m_mltProducer->is_valid()) kDebug() << " WARNING - - - - -INVALID PLAYLIST: ";
751
752     m_fps = m_mltProducer->get_fps();
753     connectPlaylist();
754     if (position != -1) {
755         m_mltProducer->seek(position);
756         emit rendererPosition(position);
757     }
758     m_isBlocked = false;
759 }
760
761
762
763 /** Create the producer from the Westley QDomDocument */
764 void Render::setSceneList(QDomDocument list, int position) {
765     setSceneList(list.toString(), position);
766 }
767
768 /** Create the producer from the Westley QDomDocument */
769 void Render::setSceneList(QString playlist, int position) {
770     if (m_winid == -1) return;
771     m_isBlocked = true;
772
773     //kWarning() << "//////  RENDER, SET SCENE LIST: " << playlist;
774
775     if (m_mltConsumer) {
776         m_mltConsumer->stop();
777         //m_mltConsumer->set("refresh", 0);
778     } else return;
779
780     if (m_mltProducer) {
781         m_mltProducer->set_speed(0);
782         //if (KdenliveSettings::osdtimecode() && m_osdInfo) m_mltProducer->detach(*m_osdInfo);
783
784         delete m_mltProducer;
785         m_mltProducer = NULL;
786         emit stopped();
787     }
788
789     char *tmp = decodedString(playlist);
790     m_mltProducer = new Mlt::Producer(*m_mltProfile, "westley-xml", tmp);
791     delete[] tmp;
792     if (m_blackClip) delete m_blackClip;
793     m_blackClip = new Mlt::Producer(*m_mltProfile , "colour", "black");
794     m_blackClip->set("id", "black");
795     if (!m_mltProducer || !m_mltProducer->is_valid()) {
796         kDebug() << " WARNING - - - - -INVALID PLAYLIST: " << tmp;
797     }
798     m_mltProducer->optimise();
799
800     /*if (KdenliveSettings::osdtimecode()) {
801     // Attach filter for on screen display of timecode
802     delete m_osdInfo;
803     QString attr = "attr_check";
804     mlt_filter filter = mlt_factory_filter( "data_feed", (char*) attr.ascii() );
805     mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "_fezzik", 1 );
806     mlt_producer_attach( m_mltProducer->get_producer(), filter );
807     mlt_filter_close( filter );
808
809       m_osdInfo = new Mlt::Filter("data_show");
810     tmp = decodedString(m_osdProfile);
811       m_osdInfo->set("resource", tmp);
812     delete[] tmp;
813     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
814     mlt_properties_set_int( properties, "meta.attr.timecode", 1);
815     mlt_properties_set( properties, "meta.attr.timecode.markup", "#timecode#");
816     m_osdInfo->set("dynamic", "1");
817
818       if (m_mltProducer->attach(*m_osdInfo) == 1) kDebug()<<"////// error attaching filter";
819     } else {
820     m_osdInfo->set("dynamic", "0");
821     }*/
822
823     m_fps = m_mltProducer->get_fps();
824     kDebug() << "// NEW SCENE LIST DURATION SET TO: " << m_mltProducer->get_playtime();
825     connectPlaylist();
826     if (position != 0) {
827         //TODO: seek to correct place after opening project.
828         //  Needs to be done from another place since it crashes here.
829         //m_mltProducer->seek(position);
830         //emit rendererPosition(position);
831     }
832     m_isBlocked = false;
833
834 }
835
836 /** Create the producer from the Westley QDomDocument */
837 QString Render::sceneList() {
838     QString playlist;
839     Mlt::Consumer westleyConsumer(*m_mltProfile , "westley:kdenlive_playlist");
840     m_mltProducer->optimise();
841     westleyConsumer.set("terminate_on_pause", 1);
842     Mlt::Producer prod(m_mltProducer->get_producer());
843     bool split = m_isSplitView;
844     if (split) slotSplitView(false);
845     westleyConsumer.connect(prod);
846     westleyConsumer.start();
847     while (!westleyConsumer.is_stopped()) {}
848     playlist = QString::fromUtf8(westleyConsumer.get("kdenlive_playlist"));
849     if (split) slotSplitView(true);
850     return playlist;
851 }
852
853 void Render::saveSceneList(QString path, QDomElement kdenliveData) {
854     QFile file(path);
855     QDomDocument doc;
856     doc.setContent(sceneList(), false);
857     if (!kdenliveData.isNull()) {
858         // add Kdenlive specific tags
859         QDomNode wes = doc.elementsByTagName("westley").at(0);
860         wes.appendChild(doc.importNode(kdenliveData, true));
861     }
862     if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
863         kWarning() << "//////  ERROR writing to file: " << path;
864         return;
865     }
866     QTextStream out(&file);
867     out << doc.toString();
868     file.close();
869 }
870
871
872 void Render::saveZone(KUrl url, QString desc, QPoint zone) {
873     kDebug() << "// SAVING CLIP ZONE, RENDER: " << m_name;
874     char *tmppath = decodedString("westley:" + url.path());
875     Mlt::Consumer westleyConsumer(*m_mltProfile , tmppath);
876     m_mltProducer->optimise();
877     delete[] tmppath;
878     westleyConsumer.set("terminate_on_pause", 1);
879     if (m_name == "clip") {
880         Mlt::Producer *prod = m_mltProducer->cut(zone.x(), zone.y());
881         tmppath = decodedString(desc);
882         Mlt::Playlist list;
883         list.insert_at(0, prod, 0);
884         list.set("title", tmppath);
885         delete[] tmppath;
886         westleyConsumer.connect(list);
887
888     } else {
889         //TODO: not working yet, save zone from timeline
890         Mlt::Producer *p1 = new Mlt::Producer(m_mltProducer->get_producer());
891         /* Mlt::Service service(p1->parent().get_service());
892          if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";*/
893
894         //Mlt::Producer *prod = p1->cut(zone.x(), zone.y());
895         tmppath = decodedString(desc);
896         //prod->set("title", tmppath);
897         delete[] tmppath;
898         westleyConsumer.connect(*p1); //list);
899     }
900
901     westleyConsumer.start();
902 }
903
904 const double Render::fps() const {
905     return m_fps;
906 }
907
908 void Render::connectPlaylist() {
909     if (!m_mltConsumer) return;
910     //m_mltConsumer->set("refresh", "0");
911     m_mltConsumer->connect(*m_mltProducer);
912     m_mltProducer->set_speed(0);
913     m_mltConsumer->start();
914     emit durationChanged(m_mltProducer->get_playtime());
915     //refresh();
916     /*
917      if (m_mltConsumer->start() == -1) {
918           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."));
919           m_mltConsumer = NULL;
920      }
921      else {
922              refresh();
923      }*/
924 }
925
926 void Render::refreshDisplay() {
927
928     if (!m_mltProducer) return;
929     //m_mltConsumer->set("refresh", 0);
930
931     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
932     /*if (KdenliveSettings::osdtimecode()) {
933         mlt_properties_set_int( properties, "meta.attr.timecode", 1);
934         mlt_properties_set( properties, "meta.attr.timecode.markup", "#timecode#");
935         m_osdInfo->set("dynamic", "1");
936         m_mltProducer->attach(*m_osdInfo);
937     }
938     else {
939         m_mltProducer->detach(*m_osdInfo);
940         m_osdInfo->set("dynamic", "0");
941     }*/
942     refresh();
943 }
944
945 void Render::setVolume(double volume) {
946     if (!m_mltConsumer || !m_mltProducer) return;
947     /*osdTimer->stop();
948     m_mltConsumer->set("refresh", 0);
949     // Attach filter for on screen display of timecode
950     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
951     mlt_properties_set_double( properties, "meta.volume", volume );
952     mlt_properties_set_int( properties, "meta.attr.osdvolume", 1);
953     mlt_properties_set( properties, "meta.attr.osdvolume.markup", i18n("Volume: ") + QString::number(volume * 100));
954
955     if (!KdenliveSettings::osdtimecode()) {
956     m_mltProducer->detach(*m_osdInfo);
957     mlt_properties_set_int( properties, "meta.attr.timecode", 0);
958      if (m_mltProducer->attach(*m_osdInfo) == 1) kDebug()<<"////// error attaching filter";
959     }*/
960     refresh();
961     osdTimer->setSingleShot(2500);
962 }
963
964 void Render::slotOsdTimeout() {
965     mlt_properties properties = MLT_PRODUCER_PROPERTIES(m_mltProducer->get_producer());
966     mlt_properties_set_int(properties, "meta.attr.osdvolume", 0);
967     mlt_properties_set(properties, "meta.attr.osdvolume.markup", NULL);
968     //if (!KdenliveSettings::osdtimecode()) m_mltProducer->detach(*m_osdInfo);
969     refresh();
970 }
971
972 void Render::start() {
973     kDebug() << "-----  STARTING MONITOR: " << m_name;
974     if (m_winid == -1) {
975         kDebug() << "-----  BROKEN MONITOR: " << m_name << ", RESTART";
976         return;
977     }
978
979     if (m_mltConsumer && m_mltConsumer->is_stopped()) {
980         kDebug() << "-----  MONITOR: " << m_name << " WAS STOPPED";
981         if (m_mltConsumer->start() == -1) {
982             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."));
983             m_mltConsumer = NULL;
984             return;
985         } else {
986             kDebug() << "-----  MONITOR: " << m_name << " REFRESH";
987             m_isBlocked = false;
988             refresh();
989         }
990     }
991     m_isBlocked = false;
992 }
993
994 void Render::clear() {
995     kDebug() << " *********  RENDER CLEAR";
996     if (m_mltConsumer) {
997         //m_mltConsumer->set("refresh", 0);
998         if (!m_mltConsumer->is_stopped()) m_mltConsumer->stop();
999     }
1000
1001     if (m_mltProducer) {
1002         //if (KdenliveSettings::osdtimecode() && m_osdInfo) m_mltProducer->detach(*m_osdInfo);
1003         m_mltProducer->set_speed(0.0);
1004         delete m_mltProducer;
1005         m_mltProducer = NULL;
1006         emit stopped();
1007     }
1008 }
1009
1010 void Render::stop() {
1011     if (m_mltConsumer && !m_mltConsumer->is_stopped()) {
1012         kDebug() << "/////////////   RENDER STOPPED: " << m_name;
1013         m_isBlocked = true;
1014         m_mltConsumer->set("refresh", 0);
1015         m_mltConsumer->stop();
1016         // delete m_mltConsumer;
1017         // m_mltConsumer = NULL;
1018     }
1019     kDebug() << "/////////////   RENDER STOP2-------";
1020     m_isBlocked = true;
1021
1022     if (m_mltProducer) {
1023         if (m_isZoneMode) resetZoneMode();
1024         m_mltProducer->set_speed(0.0);
1025         //m_mltProducer->set("out", m_mltProducer->get_length() - 1);
1026         //kDebug() << m_mltProducer->get_length();
1027     }
1028     kDebug() << "/////////////   RENDER STOP3-------";
1029 }
1030
1031 void Render::stop(const GenTime & startTime) {
1032
1033     kDebug() << "/////////////   RENDER STOP-------2";
1034     if (m_mltProducer) {
1035         if (m_isZoneMode) resetZoneMode();
1036         m_mltProducer->set_speed(0.0);
1037         m_mltProducer->seek((int) startTime.frames(m_fps));
1038     }
1039     m_mltConsumer->purge();
1040 }
1041
1042 void Render::pause() {
1043     if (!m_mltProducer || !m_mltConsumer)
1044         return;
1045     if (m_mltProducer->get_speed() == 0.0) return;
1046     if (m_isZoneMode) resetZoneMode();
1047     m_isBlocked = true;
1048     m_mltConsumer->set("refresh", 0);
1049     m_mltProducer->set_speed(0.0);
1050     emit rendererPosition(m_framePosition);
1051     m_mltProducer->seek(m_framePosition);
1052     m_mltConsumer->purge();
1053 }
1054
1055 void Render::switchPlay() {
1056     if (!m_mltProducer || !m_mltConsumer)
1057         return;
1058     if (m_isZoneMode) resetZoneMode();
1059     if (m_mltProducer->get_speed() == 0.0) {
1060         m_isBlocked = false;
1061         m_mltProducer->set_speed(1.0);
1062         m_mltConsumer->set("refresh", 1);
1063     } else {
1064         m_isBlocked = true;
1065         m_mltConsumer->set("refresh", 0);
1066         m_mltProducer->set_speed(0.0);
1067         emit rendererPosition(m_framePosition);
1068         m_mltProducer->seek(m_framePosition);
1069         m_mltConsumer->purge();
1070         //kDebug()<<" *********  RENDER PAUSE: "<<m_mltProducer->get_speed();
1071         //m_mltConsumer->set("refresh", 0);
1072         /*mlt_position position = mlt_producer_position( m_mltProducer->get_producer() );
1073         m_mltProducer->set_speed(0);
1074         m_mltProducer->seek( position );
1075                //m_mltProducer->seek((int) m_framePosition);
1076                m_isBlocked = false;*/
1077     }
1078     /*if (speed == 0.0) {
1079     m_mltProducer->seek((int) m_framePosition + 1);
1080         m_mltConsumer->purge();
1081     }*/
1082     //refresh();
1083 }
1084
1085 void Render::play(double speed) {
1086     if (!m_mltProducer)
1087         return;
1088     // if (speed == 0.0) m_mltProducer->set("out", m_mltProducer->get_length() - 1);
1089     m_isBlocked = false;
1090     m_mltProducer->set_speed(speed);
1091     /*if (speed == 0.0) {
1092     m_mltProducer->seek((int) m_framePosition + 1);
1093         m_mltConsumer->purge();
1094     }*/
1095     refresh();
1096 }
1097
1098 void Render::play(const GenTime & startTime) {
1099     if (!m_mltProducer || !m_mltConsumer)
1100         return;
1101     m_isBlocked = false;
1102     m_mltProducer->seek((int)(startTime.frames(m_fps)));
1103     m_mltProducer->set_speed(1.0);
1104     m_mltConsumer->set("refresh", 1);
1105 }
1106
1107 void Render::loopZone(const GenTime & startTime, const GenTime & stopTime) {
1108     if (!m_mltProducer || !m_mltConsumer)
1109         return;
1110     //m_mltProducer->set("eof", "loop");
1111     m_isLoopMode = true;
1112     m_loopStart = startTime;
1113     playZone(startTime, stopTime);
1114 }
1115
1116 void Render::playZone(const GenTime & startTime, const GenTime & stopTime) {
1117     if (!m_mltProducer || !m_mltConsumer)
1118         return;
1119     m_isBlocked = false;
1120     m_mltProducer->set("out", stopTime.frames(m_fps));
1121     m_mltProducer->seek((int)(startTime.frames(m_fps)));
1122     m_mltProducer->set_speed(1.0);
1123     m_mltConsumer->set("refresh", 1);
1124     m_isZoneMode = true;
1125 }
1126
1127 void Render::resetZoneMode() {
1128     m_mltProducer->set("out", m_mltProducer->get_length() - 1);
1129     //m_mltProducer->set("eof", "pause");
1130     m_isZoneMode = false;
1131     m_isLoopMode = false;
1132 }
1133
1134 void Render::seekToFrame(int pos) {
1135     //kDebug()<<" *********  RENDER SEEK TO POS";
1136     if (!m_mltProducer)
1137         return;
1138     m_isBlocked = false;
1139     resetZoneMode();
1140     m_mltProducer->seek(pos);
1141     refresh();
1142 }
1143
1144 void Render::askForRefresh() {
1145     // Use a Timer so that we don't refresh too much
1146     refreshTimer->start(200);
1147 }
1148
1149 void Render::doRefresh() {
1150     // Use a Timer so that we don't refresh too much
1151     if (!m_isBlocked && m_mltConsumer) m_mltConsumer->set("refresh", 1);
1152 }
1153
1154 void Render::refresh() {
1155     if (!m_mltProducer || m_isBlocked)
1156         return;
1157     refreshTimer->stop();
1158     if (m_mltConsumer) {
1159         m_mltConsumer->set("refresh", 1);
1160     }
1161 }
1162
1163 double Render::playSpeed() {
1164     if (m_mltProducer) return m_mltProducer->get_speed();
1165     return 0.0;
1166 }
1167
1168 GenTime Render::seekPosition() const {
1169     if (m_mltProducer) return GenTime((int) m_mltProducer->position(), m_fps);
1170     else return GenTime();
1171 }
1172
1173
1174 const QString & Render::rendererName() const {
1175     return m_name;
1176 }
1177
1178
1179 void Render::emitFrameNumber(double position) {
1180     m_framePosition = position;
1181     emit rendererPosition((int) position);
1182     //if (qApp->activeWindow()) QApplication::postEvent(qApp->activeWindow(), new PositionChangeEvent( GenTime((int) position, m_fps), m_monitorId));
1183 }
1184
1185 void Render::emitConsumerStopped() {
1186     // This is used to know when the playing stopped
1187     if (m_mltProducer) {
1188         double pos = m_mltProducer->position();
1189         if (m_isLoopMode) play(m_loopStart);
1190         else if (m_isZoneMode) resetZoneMode();
1191         emit rendererStopped((int) pos);
1192         //if (qApp->activeWindow()) QApplication::postEvent(qApp->activeWindow(), new PositionChangeEvent(GenTime((int) pos, m_fps), m_monitorId + 100));
1193         //new QCustomEvent(10002));
1194     }
1195 }
1196
1197
1198
1199 void Render::exportFileToFirewire(QString srcFileName, int port, GenTime startTime, GenTime endTime) {
1200     KMessageBox::sorry(0, i18n("Firewire is not enabled on your system.\n Please install Libiec61883 and recompile Kdenlive"));
1201 }
1202
1203
1204 void Render::exportCurrentFrame(KUrl url, bool notify) {
1205     if (!m_mltProducer) {
1206         KMessageBox::sorry(qApp->activeWindow(), i18n("There is no clip, cannot extract frame."));
1207         return;
1208     }
1209
1210     int height = 1080;//KdenliveSettings::defaultheight();
1211     int width = 1940; //KdenliveSettings::displaywidth();
1212     //TODO: rewrite
1213     QPixmap pix; // = KThumb::getFrame(m_mltProducer, -1, width, height);
1214     /*
1215        QPixmap pix(width, height);
1216        Mlt::Filter m_convert(*m_mltProfile, "avcolour_space");
1217        m_convert.set("forced", mlt_image_rgb24a);
1218        m_mltProducer->attach(m_convert);
1219        Mlt::Frame * frame = m_mltProducer->get_frame();
1220        m_mltProducer->detach(m_convert);
1221        if (frame) {
1222            pix = frameThumbnail(frame, width, height);
1223            delete frame;
1224        }*/
1225     pix.save(url.path(), "PNG");
1226     //if (notify) QApplication::postEvent(qApp->activeWindow(), new UrlEvent(url, 10003));
1227 }
1228
1229 /** MLT PLAYLIST DIRECT MANIPULATON  **/
1230
1231
1232 void Render::mltCheckLength(bool reload) {
1233     //kDebug()<<"checking track length: "<<track<<"..........";
1234
1235     Mlt::Service service(m_mltProducer->get_service());
1236     Mlt::Tractor tractor(service);
1237
1238     int trackNb = tractor.count();
1239     double duration = 0;
1240     double trackDuration;
1241     if (trackNb == 1) {
1242         Mlt::Producer trackProducer(tractor.track(0));
1243         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1244         duration = Mlt::Producer(trackPlaylist.get_producer()).get_playtime() - 1;
1245         m_mltProducer->set("out", duration);
1246         emit durationChanged((int) duration);
1247         return;
1248     }
1249     while (trackNb > 1) {
1250         Mlt::Producer trackProducer(tractor.track(trackNb - 1));
1251         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1252         trackDuration = Mlt::Producer(trackPlaylist.get_producer()).get_playtime() - 1;
1253
1254         //kDebug() << " / / /DURATON FOR TRACK " << trackNb - 1 << " = " << trackDuration;
1255         if (trackDuration > duration) duration = trackDuration;
1256         trackNb--;
1257     }
1258
1259     Mlt::Producer blackTrackProducer(tractor.track(0));
1260     Mlt::Playlist blackTrackPlaylist((mlt_playlist) blackTrackProducer.get_service());
1261     double blackDuration = Mlt::Producer(blackTrackPlaylist.get_producer()).get_playtime() - 1;
1262
1263     if (blackDuration != duration) {
1264         blackTrackPlaylist.remove_region(0, (int)blackDuration);
1265         int i = 0;
1266         int dur = (int)duration;
1267         QDomDocument doc;
1268         QDomElement black = doc.createElement("producer");
1269         black.setAttribute("mlt_service", "colour");
1270         black.setAttribute("colour", "black");
1271         black.setAttribute("id", "black");
1272         ItemInfo info;
1273         info.track = 0;
1274         while (dur > 14000) {
1275             info.startPos = GenTime(i * 14000, m_fps);
1276             info.endPos = info.startPos + GenTime(13999, m_fps);
1277             mltInsertClip(info, black, m_blackClip);
1278             dur = dur - 14000;
1279             i++;
1280         }
1281         if (dur > 0) {
1282             info.startPos = GenTime(i * 14000, m_fps);
1283             info.endPos = info.startPos + GenTime(dur, m_fps);
1284             mltInsertClip(info, black, m_blackClip);
1285         }
1286         m_mltProducer->set("out", duration);
1287         emit durationChanged((int)duration);
1288     }
1289 }
1290
1291 void Render::mltInsertClip(ItemInfo info, QDomElement element, Mlt::Producer *prod) {
1292     if (!m_mltProducer) {
1293         kDebug() << "PLAYLIST NOT INITIALISED //////";
1294         return;
1295     }
1296     Mlt::Producer parentProd(m_mltProducer->parent());
1297     if (parentProd.get_producer() == NULL) {
1298         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
1299         return;
1300     }
1301
1302     Mlt::Service service(parentProd.get_service());
1303     Mlt::Tractor tractor(service);
1304     mlt_service_lock(service.get_service());
1305     Mlt::Producer trackProducer(tractor.track(info.track));
1306     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1307     //kDebug()<<"/// INSERT cLIP: "<<info.cropStart.frames(m_fps)<<", "<<info.startPos.frames(m_fps)<<"-"<<info.endPos.frames(m_fps);
1308     Mlt::Producer *clip = prod->cut((int) info.cropStart.frames(m_fps), (int)(info.endPos - info.startPos + info.cropStart).frames(m_fps) - 1);
1309     int newIndex = trackPlaylist.insert_at((int) info.startPos.frames(m_fps), *clip, 1);
1310
1311     /*if (QString(prod->get("transparency")).toInt() == 1)
1312         mltAddClipTransparency(info, info.track - 1, QString(prod->get("id")).toInt());*/
1313
1314     mlt_service_unlock(service.get_service());
1315
1316     if (info.track != 0 && (newIndex + 1 == trackPlaylist.count())) mltCheckLength();
1317     //tractor.multitrack()->refresh();
1318     //tractor.refresh();
1319 }
1320
1321
1322 void Render::mltCutClip(int track, GenTime position) {
1323
1324     m_isBlocked = true;
1325
1326     Mlt::Service service(m_mltProducer->parent().get_service());
1327     if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";
1328
1329     Mlt::Tractor tractor(service);
1330     Mlt::Producer trackProducer(tractor.track(track));
1331     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1332
1333
1334     /* // Display playlist info
1335     kDebug()<<"////////////  BEFORE";
1336     for (int i = 0; i < trackPlaylist.count(); i++) {
1337     int blankStart = trackPlaylist.clip_start(i);
1338     int blankDuration = trackPlaylist.clip_length(i) - 1;
1339     QString blk;
1340     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1341     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<"x"<<blankStart + blankDuration<<")"<<blk;
1342     }*/
1343
1344     int cutPos = (int) position.frames(m_fps);
1345
1346     int clipIndex = trackPlaylist.get_clip_index_at(cutPos);
1347     if (trackPlaylist.is_blank(clipIndex)) {
1348         kDebug() << "// WARNING, TRYING TO CUT A BLANK";
1349         m_isBlocked = false;
1350         return;
1351     }
1352     mlt_service_lock(service.get_service());
1353     int clipStart = trackPlaylist.clip_start(clipIndex);
1354     trackPlaylist.split(clipIndex, cutPos - clipStart - 1);
1355     mlt_service_unlock(service.get_service());
1356
1357     // duplicate effects
1358     Mlt::Producer *original = trackPlaylist.get_clip_at(clipStart);
1359     Mlt::Producer *clip = trackPlaylist.get_clip_at(cutPos);
1360
1361     if (original == NULL || clip == NULL) {
1362         kDebug() << "// ERROR GRABBING CLIP AFTER SPLIT";
1363     }
1364     Mlt::Service clipService(original->get_service());
1365     Mlt::Service dupService(clip->get_service());
1366     int ct = 0;
1367     Mlt::Filter *filter = clipService.filter(ct);
1368     while (filter) {
1369         if (filter->get("kdenlive_id") != "") {
1370             // looks like there is no easy way to duplicate a filter,
1371             // so we will create a new one and duplicate its properties
1372             Mlt::Filter *dup = new Mlt::Filter(*m_mltProfile, filter->get("mlt_service"));
1373             Mlt::Properties entries(filter->get_properties());
1374             for (int i = 0;i < entries.count();i++) {
1375                 dup->set(entries.get_name(i), entries.get(i));
1376             }
1377             dupService.attach(*dup);
1378         }
1379         ct++;
1380         filter = clipService.filter(ct);
1381     }
1382
1383     /* // Display playlist info
1384     kDebug()<<"////////////  AFTER";
1385     for (int i = 0; i < trackPlaylist.count(); i++) {
1386     int blankStart = trackPlaylist.clip_start(i);
1387     int blankDuration = trackPlaylist.clip_length(i) - 1;
1388     QString blk;
1389     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1390     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<"x"<<blankStart + blankDuration<<")"<<blk;
1391     }*/
1392
1393     m_isBlocked = false;
1394 }
1395
1396 void Render::mltUpdateClip(ItemInfo info, QDomElement element, Mlt::Producer *prod) {
1397     // TODO: optimize
1398     mltRemoveClip(info.track, info.startPos);
1399     mltInsertClip(info, element, prod);
1400 }
1401
1402
1403 bool Render::mltRemoveClip(int track, GenTime position) {
1404     Mlt::Service service(m_mltProducer->parent().get_service());
1405     if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";
1406
1407     Mlt::Tractor tractor(service);
1408     Mlt::Producer trackProducer(tractor.track(track));
1409     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1410     int clipIndex = trackPlaylist.get_clip_index_at((int) position.frames(m_fps));
1411
1412     /* // Display playlist info
1413     kDebug()<<"////  BEFORE";
1414     for (int i = 0; i < trackPlaylist.count(); i++) {
1415     int blankStart = trackPlaylist.clip_start(i);
1416     int blankDuration = trackPlaylist.clip_length(i) - 1;
1417     QString blk;
1418     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1419     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<"x"<<blankStart + blankDuration<<")"<<blk;
1420     }*/
1421
1422     if (trackPlaylist.is_blank(clipIndex)) {
1423         kDebug() << "// WARMNING, TRYING TO REMOVE A BLANK: " << clipIndex << ", AT: " << position.frames(25);
1424         return false;
1425     }
1426     m_isBlocked = true;
1427     Mlt::Producer clip(trackPlaylist.get_clip(clipIndex));
1428     trackPlaylist.replace_with_blank(clipIndex);
1429     trackPlaylist.consolidate_blanks(0);
1430     /*if (QString(clip.parent().get("transparency")).toInt() == 1)
1431         mltDeleteTransparency((int) position.frames(m_fps), track, QString(clip.parent().get("id")).toInt());*/
1432
1433     /* // Display playlist info
1434     kDebug()<<"////  AFTER";
1435     for (int i = 0; i < trackPlaylist.count(); i++) {
1436     int blankStart = trackPlaylist.clip_start(i);
1437     int blankDuration = trackPlaylist.clip_length(i) - 1;
1438     QString blk;
1439     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1440     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<"x"<<blankStart + blankDuration<<")"<<blk;
1441     }*/
1442
1443     if (track != 0 && trackPlaylist.count() > clipIndex) mltCheckLength();
1444     m_isBlocked = false;
1445     return true;
1446 }
1447
1448 void Render::mltInsertSpace(const GenTime pos, int track, const GenTime duration) {
1449     if (!m_mltProducer) {
1450         kDebug() << "PLAYLIST NOT INITIALISED //////";
1451         return;
1452     }
1453     Mlt::Producer parentProd(m_mltProducer->parent());
1454     if (parentProd.get_producer() == NULL) {
1455         kDebug() << "PLAYLIST BROKEN, CANNOT INSERT CLIP //////";
1456         return;
1457     }
1458
1459     Mlt::Service service(parentProd.get_service());
1460     Mlt::Tractor tractor(service);
1461     mlt_service_lock(service.get_service());
1462     int insertPos = pos.frames(m_fps);
1463     int diff = duration.frames(m_fps);
1464
1465     if (track != -1) {
1466         // insert space in one track only
1467         Mlt::Producer trackProducer(tractor.track(track));
1468         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1469         int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
1470         if (diff > 0) trackPlaylist.insert_blank(clipIndex, diff - 1);
1471         else {
1472             int position = trackPlaylist.clip_start(clipIndex);
1473             trackPlaylist.remove_region(position, -diff - 1);
1474         }
1475         trackPlaylist.consolidate_blanks(0);
1476
1477         // now move transitions
1478         mlt_service serv = m_mltProducer->parent().get_service();
1479         mlt_service nextservice = mlt_service_get_producer(serv);
1480         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
1481         QString mlt_type = mlt_properties_get(properties, "mlt_type");
1482         QString resource = mlt_properties_get(properties, "mlt_service");
1483
1484         while (mlt_type == "transition") {
1485             mlt_transition tr = (mlt_transition) nextservice;
1486             int currentTrack = mlt_transition_get_b_track(tr);
1487             int currentIn = (int) mlt_transition_get_in(tr);
1488             int currentOut = (int) mlt_transition_get_out(tr);
1489
1490             if (track == currentTrack && currentOut > insertPos && resource != "mix") {
1491                 mlt_transition_set_in_and_out(tr, currentIn + diff, currentOut + diff);
1492             }
1493             nextservice = mlt_service_producer(nextservice);
1494             if (nextservice == NULL) break;
1495             properties = MLT_SERVICE_PROPERTIES(nextservice);
1496             mlt_type = mlt_properties_get(properties, "mlt_type");
1497             resource = mlt_properties_get(properties, "mlt_service");
1498         }
1499     } else {
1500         int trackNb = tractor.count();
1501         while (trackNb > 1) {
1502             Mlt::Producer trackProducer(tractor.track(trackNb - 1));
1503             Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1504             int clipIndex = trackPlaylist.get_clip_index_at(insertPos);
1505             if (diff > 0) trackPlaylist.insert_blank(clipIndex, diff - 1);
1506             else {
1507                 int position = trackPlaylist.clip_start(clipIndex);
1508                 trackPlaylist.remove_region(position, -diff - 1);
1509             }
1510             trackPlaylist.consolidate_blanks(0);
1511             trackNb--;
1512         }
1513         // now move transitions
1514         mlt_service serv = m_mltProducer->parent().get_service();
1515         mlt_service nextservice = mlt_service_get_producer(serv);
1516         mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
1517         QString mlt_type = mlt_properties_get(properties, "mlt_type");
1518         QString resource = mlt_properties_get(properties, "mlt_service");
1519
1520         while (mlt_type == "transition") {
1521             mlt_transition tr = (mlt_transition) nextservice;
1522             int currentIn = (int) mlt_transition_get_in(tr);
1523             int currentOut = (int) mlt_transition_get_out(tr);
1524
1525             if (currentOut > insertPos && resource != "mix") {
1526                 mlt_transition_set_in_and_out(tr, currentIn + diff, currentOut + diff);
1527             }
1528             nextservice = mlt_service_producer(nextservice);
1529             if (nextservice == NULL) break;
1530             properties = MLT_SERVICE_PROPERTIES(nextservice);
1531             mlt_type = mlt_properties_get(properties, "mlt_type");
1532             resource = mlt_properties_get(properties, "mlt_service");
1533         }
1534     }
1535     mlt_service_unlock(service.get_service());
1536 }
1537
1538 int Render::mltChangeClipSpeed(ItemInfo info, double speed, double oldspeed, Mlt::Producer *prod) {
1539     m_isBlocked = true;
1540     int newLength = 0;
1541     Mlt::Service service(m_mltProducer->parent().get_service());
1542     if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";
1543     kDebug() << "Changing clip speed, set in and out: " << info.cropStart.frames(m_fps) << " to " << (info.endPos - info.startPos).frames(m_fps) - 1;
1544     Mlt::Tractor tractor(service);
1545     Mlt::Producer trackProducer(tractor.track(info.track));
1546     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1547     int startPos = info.startPos.frames(m_fps);
1548     int clipIndex = trackPlaylist.get_clip_index_at(startPos);
1549     int clipLength = trackPlaylist.clip_length(clipIndex);
1550
1551     Mlt::Producer clip(trackPlaylist.get_clip(clipIndex));
1552     QString serv = clip.parent().get("mlt_service");
1553     QString id = clip.parent().get("id");
1554     kDebug() << "CLIP SERVICE: " << clip.parent().get("mlt_service");
1555     if (serv == "avformat" && speed != 1.0) {
1556         mlt_service_lock(service.get_service());
1557         QString url = clip.parent().get("resource");
1558         url.append("?" + QString::number(speed));
1559         Mlt::Producer *slowprod = m_slowmotionProducers.value(url);
1560         if (!slowprod || slowprod->get_producer() == NULL) {
1561             char *tmp = decodedString(url);
1562             slowprod = new Mlt::Producer(*m_mltProfile, "framebuffer", tmp);
1563             delete[] tmp;
1564             QString producerid = "slowmotion:" + id + ":" + QString::number(speed);
1565             tmp = decodedString(producerid);
1566             slowprod->set("id", tmp);
1567             delete[] tmp;
1568             m_slowmotionProducers.insert(url, slowprod);
1569         }
1570         trackPlaylist.replace_with_blank(clipIndex);
1571         trackPlaylist.consolidate_blanks(0);
1572         // Check that the blank space is long enough for our new duration
1573         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1574         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
1575         Mlt::Producer *cut;
1576         if (clipIndex + 1 < trackPlaylist.count() && (startPos + clipLength / speed > blankEnd)) {
1577             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
1578             cut = slowprod->cut((int)(info.cropStart.frames(m_fps) / speed), (int)(info.cropStart.frames(m_fps) / speed + maxLength.frames(m_fps) - 1));
1579         } else cut = slowprod->cut((int)(info.cropStart.frames(m_fps) / speed), (int)((info.cropStart.frames(m_fps) + clipLength) / speed - 1));
1580         trackPlaylist.insert_at(startPos, *cut, 1);
1581         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1582         newLength = trackPlaylist.clip_length(clipIndex);
1583         mlt_service_unlock(service.get_service());
1584     } else if (speed == 1.0) {
1585         mlt_service_lock(service.get_service());
1586
1587         trackPlaylist.replace_with_blank(clipIndex);
1588         trackPlaylist.consolidate_blanks(0);
1589
1590         // Check that the blank space is long enough for our new duration
1591         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1592         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
1593
1594         Mlt::Producer *cut;
1595         GenTime oldDuration = GenTime(clipLength, m_fps);
1596         GenTime newDuration = oldDuration * oldspeed;
1597         if (clipIndex + 1 < trackPlaylist.count() && (info.startPos + newDuration).frames(m_fps) > blankEnd) {
1598             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
1599             cut = prod->cut((int)(info.cropStart.frames(m_fps)), (int)(info.cropStart.frames(m_fps) + maxLength.frames(m_fps) - 1));
1600         } else cut = prod->cut((int)(info.cropStart.frames(m_fps)), (int)((info.cropStart + newDuration).frames(m_fps)) - 1);
1601         trackPlaylist.insert_at(startPos, *cut, 1);
1602         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1603         newLength = trackPlaylist.clip_length(clipIndex);
1604         mlt_service_unlock(service.get_service());
1605
1606     } else if (serv == "framebuffer") {
1607         mlt_service_lock(service.get_service());
1608         QString url = clip.parent().get("resource");
1609         url = url.section("?", 0, 0);
1610         url.append("?" + QString::number(speed));
1611         Mlt::Producer *slowprod = m_slowmotionProducers.value(url);
1612         if (!slowprod || slowprod->get_producer() == NULL) {
1613             char *tmp = decodedString(url);
1614             slowprod = new Mlt::Producer(*m_mltProfile, "framebuffer", tmp);
1615             delete[] tmp;
1616             QString producerid = "slowmotion:" + id.section(":", 1, 1) + ":" + QString::number(speed);
1617             tmp = decodedString(producerid);
1618             slowprod->set("id", tmp);
1619             delete[] tmp;
1620             m_slowmotionProducers.insert(url, slowprod);
1621         }
1622         trackPlaylist.replace_with_blank(clipIndex);
1623         trackPlaylist.consolidate_blanks(0);
1624
1625         GenTime oldDuration = GenTime(clipLength, m_fps);
1626         GenTime newDuration = oldDuration * oldspeed / speed;
1627
1628         // Check that the blank space is long enough for our new duration
1629         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1630         int blankEnd = trackPlaylist.clip_start(clipIndex) + trackPlaylist.clip_length(clipIndex);
1631
1632         Mlt::Producer *cut;
1633         if (clipIndex + 1 < trackPlaylist.count() && (info.startPos + newDuration).frames(m_fps) > blankEnd) {
1634             GenTime maxLength = GenTime(blankEnd, m_fps) - info.startPos;
1635             cut = slowprod->cut((int)(info.cropStart.frames(m_fps)), (int)(info.cropStart.frames(m_fps) + maxLength.frames(m_fps) - 1));
1636         } else cut = slowprod->cut((int)(info.cropStart.frames(m_fps) / speed), (int)((info.cropStart / speed + newDuration).frames(m_fps) - 1));
1637
1638         trackPlaylist.insert_at(startPos, *cut, 1);
1639         clipIndex = trackPlaylist.get_clip_index_at(startPos);
1640         newLength = trackPlaylist.clip_length(clipIndex);
1641
1642         mlt_service_unlock(service.get_service());
1643     }
1644     if (clipIndex + 1 == trackPlaylist.count()) mltCheckLength();
1645     m_isBlocked = false;
1646     return newLength;
1647 }
1648
1649 bool Render::mltRemoveEffect(int track, GenTime position, QString index, bool doRefresh) {
1650
1651     Mlt::Service service(m_mltProducer->parent().get_service());
1652     bool success = false;
1653     Mlt::Tractor tractor(service);
1654     Mlt::Producer trackProducer(tractor.track(track));
1655     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1656     //int clipIndex = trackPlaylist.get_clip_index_at(position.frames(m_fps));
1657     Mlt::Producer *clip = trackPlaylist.get_clip_at((int) position.frames(m_fps));
1658     if (!clip) {
1659         kDebug() << " / / / CANNOT FIND CLIP TO REMOVE EFFECT";
1660         return success;
1661     }
1662     Mlt::Service clipService(clip->get_service());
1663 //    if (tag.startsWith("ladspa")) tag = "ladspa";
1664     m_isBlocked = true;
1665     int ct = 0;
1666     Mlt::Filter *filter = clipService.filter(ct);
1667     while (filter) {
1668         if ((index == "-1" && filter->get("kdenlive_id") != "")  || filter->get("kdenlive_ix") == index) {// && filter->get("kdenlive_id") == id) {
1669             if (clipService.detach(*filter) == 0) success = true;
1670             kDebug() << " / / / DLEETED EFFECT: " << ct;
1671         } else ct++;
1672         filter = clipService.filter(ct);
1673     }
1674     m_isBlocked = false;
1675     if (doRefresh) refresh();
1676     return success;
1677 }
1678
1679
1680 bool Render::mltAddEffect(int track, GenTime position, QHash <QString, QString> args, bool doRefresh) {
1681
1682     Mlt::Service service(m_mltProducer->parent().get_service());
1683
1684     Mlt::Tractor tractor(service);
1685     Mlt::Producer trackProducer(tractor.track(track));
1686     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1687
1688     Mlt::Producer *clip = trackPlaylist.get_clip_at((int) position.frames(m_fps));
1689     if (!clip) {
1690         return false;
1691     }
1692     Mlt::Service clipService(clip->get_service());
1693     m_isBlocked = true;
1694
1695     // temporarily remove all effects after insert point
1696     QList <Mlt::Filter *> filtersList;
1697     const int filer_ix = QString(args.value("kdenlive_ix")).toInt();
1698     int ct = 0;
1699     Mlt::Filter *filter = clipService.filter(ct);
1700     while (filter) {
1701         if (QString(filter->get("kdenlive_ix")).toInt() > filer_ix) {
1702             filtersList.append(filter);
1703             clipService.detach(*filter);
1704         } else ct++;
1705         filter = clipService.filter(ct);
1706     }
1707
1708     // create filter
1709     QString tag = args.value("tag");
1710     kDebug() << " / / INSERTING EFFECT: " << tag;
1711     if (tag.startsWith("ladspa")) tag = "ladspa";
1712     char *filterTag = decodedString(tag);
1713     char *filterId = decodedString(args.value("id"));
1714     QHash<QString, QString>::Iterator it;
1715     QString kfr = args.value("keyframes");
1716
1717     if (!kfr.isEmpty()) {
1718         QStringList keyFrames = kfr.split(";", QString::SkipEmptyParts);
1719         kDebug() << "// ADDING KEYFRAME EFFECT: " << args.value("keyframes");
1720         char *starttag = decodedString(args.value("starttag", "start"));
1721         char *endtag = decodedString(args.value("endtag", "end"));
1722         kDebug() << "// ADDING KEYFRAME TAGS: " << starttag << ", " << endtag;
1723         int duration = clip->get_playtime();
1724         double max = args.value("max").toDouble();
1725         double min = args.value("min").toDouble();
1726         double factor = args.value("factor", "1").toDouble();
1727         args.remove("starttag");
1728         args.remove("endtag");
1729         args.remove("keyframes");
1730         args.remove("min");
1731         args.remove("max");
1732         args.remove("factor");
1733         int offset = 0;
1734         for (int i = 0; i < keyFrames.size() - 1; ++i) {
1735             Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, filterTag);
1736             filter->set("kdenlive_id", filterId);
1737             int x1 = keyFrames.at(i).section(":", 0, 0).toInt() + offset;
1738             double y1 = keyFrames.at(i).section(":", 1, 1).toDouble();
1739             int x2 = keyFrames.at(i + 1).section(":", 0, 0).toInt();
1740             double y2 = keyFrames.at(i + 1).section(":", 1, 1).toDouble();
1741             if (x2 == -1) x2 = duration;
1742             for (it = args.begin(); it != args.end(); ++it) {
1743                 char *name = decodedString(it.key());
1744                 char *value = decodedString(it.value());
1745                 filter->set(name, value);
1746                 delete[] name;
1747                 delete[] value;
1748             }
1749
1750             filter->set("in", x1);
1751             filter->set("out", x2);
1752             //kDebug() << "// ADDING KEYFRAME vals: " << min<<" / "<<max<<", "<<y1<<", factor: "<<factor;
1753             filter->set(starttag, QString::number((min + y1) / factor).toUtf8().data());
1754             filter->set(endtag, QString::number((min + y2) / factor).toUtf8().data());
1755             clipService.attach(*filter);
1756             offset = 1;
1757         }
1758         delete[] starttag;
1759         delete[] endtag;
1760     } else {
1761         Mlt::Filter *filter = new Mlt::Filter(*m_mltProfile, filterTag);
1762         if (filter && filter->is_valid())
1763             filter->set("kdenlive_id", filterId);
1764         else {
1765             kDebug() << "filter is NULL";
1766             m_isBlocked = false;
1767             return false;
1768         }
1769
1770         for (it = args.begin(); it != args.end(); ++it) {
1771             char *name = decodedString(it.key());
1772             char *value = decodedString(it.value());
1773             filter->set(name, value);
1774             delete[] name;
1775             delete[] value;
1776         }
1777         // attach filter to the clip
1778         clipService.attach(*filter);
1779     }
1780     delete[] filterId;
1781     delete[] filterTag;
1782
1783     // re-add following filters
1784     for (int i = 0; i < filtersList.count(); i++) {
1785         clipService.attach(*(filtersList.at(i)));
1786     }
1787
1788     m_isBlocked = false;
1789     if (doRefresh) refresh();
1790     return true;
1791 }
1792
1793 bool Render::mltEditEffect(int track, GenTime position, QHash <QString, QString> args) {
1794     QString index = args.value("kdenlive_ix");
1795     QString tag =  args.value("tag");
1796     QHash<QString, QString>::Iterator it = args.begin();
1797     if (!args.value("keyframes").isEmpty() || /*it.key().startsWith("#") || */tag.startsWith("ladspa") || tag == "sox" || tag == "autotrack_rectangle") {
1798         // This is a keyframe effect, to edit it, we remove it and re-add it.
1799         mltRemoveEffect(track, position, index);
1800         bool success = mltAddEffect(track, position, args);
1801         return success;
1802     }
1803
1804     // create filter
1805     Mlt::Service service(m_mltProducer->parent().get_service());
1806
1807     Mlt::Tractor tractor(service);
1808     Mlt::Producer trackProducer(tractor.track(track));
1809     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1810     //int clipIndex = trackPlaylist.get_clip_index_at(position.frames(m_fps));
1811     Mlt::Producer *clip = trackPlaylist.get_clip_at((int) position.frames(m_fps));
1812     if (!clip) {
1813         kDebug() << "WARINIG, CANNOT FIND CLIP ON track: " << track << ", AT POS: " << position.frames(m_fps);
1814         return false;
1815     }
1816     Mlt::Service clipService(clip->get_service());
1817     m_isBlocked = true;
1818     int ct = 0;
1819     Mlt::Filter *filter = clipService.filter(ct);
1820     while (filter) {
1821         if (filter->get("kdenlive_ix") == index) {
1822             break;
1823         }
1824         ct++;
1825         filter = clipService.filter(ct);
1826     }
1827
1828     if (!filter) {
1829         kDebug() << "WARINIG, FILTER FOR EDITING NOT FOUND, ADDING IT!!!!!";
1830         // filter was not found, it was probably a disabled filter, so add it to the correct place...
1831         int ct = 0;
1832         filter = clipService.filter(ct);
1833         QList <Mlt::Filter *> filtersList;
1834         while (filter) {
1835             if (QString(filter->get("kdenlive_ix")).toInt() > index.toInt()) {
1836                 filtersList.append(filter);
1837                 clipService.detach(*filter);
1838             } else ct++;
1839             filter = clipService.filter(ct);
1840         }
1841         bool success = mltAddEffect(track, position, args);
1842
1843         for (int i = 0; i < filtersList.count(); i++) {
1844             clipService.attach(*(filtersList.at(i)));
1845         }
1846
1847         m_isBlocked = false;
1848         return success;
1849     }
1850
1851     for (it = args.begin(); it != args.end(); ++it) {
1852         kDebug() << " / / EDITING EFFECT ARGS: " << it.key() << ": " << it.value();
1853         char *name = decodedString(it.key());
1854         char *value = decodedString(it.value());
1855         filter->set(name, value);
1856         delete[] name;
1857         delete[] value;
1858     }
1859     m_isBlocked = false;
1860     refresh();
1861     return true;
1862 }
1863
1864 void Render::mltMoveEffect(int track, GenTime position, int oldPos, int newPos) {
1865
1866     kDebug() << "MOVING EFFECT FROM " << oldPos << ", TO: " << newPos;
1867     Mlt::Service service(m_mltProducer->parent().get_service());
1868
1869     Mlt::Tractor tractor(service);
1870     Mlt::Producer trackProducer(tractor.track(track));
1871     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1872     //int clipIndex = trackPlaylist.get_clip_index_at(position.frames(m_fps));
1873     Mlt::Producer *clip = trackPlaylist.get_clip_at((int) position.frames(m_fps));
1874     if (!clip) {
1875         kDebug() << "WARINIG, CANNOT FIND CLIP ON track: " << track << ", AT POS: " << position.frames(m_fps);
1876         return;
1877     }
1878     Mlt::Service clipService(clip->get_service());
1879     m_isBlocked = true;
1880     int ct = 0;
1881     QList <Mlt::Filter *> filtersList;
1882     Mlt::Filter *filter = clipService.filter(ct);
1883     bool found = false;
1884     if (newPos > oldPos) {
1885         while (filter) {
1886             if (!found && QString(filter->get("kdenlive_ix")).toInt() == oldPos) {
1887                 filter->set("kdenlive_ix", newPos);
1888                 filtersList.append(filter);
1889                 clipService.detach(*filter);
1890                 filter = clipService.filter(ct);
1891                 while (filter && QString(filter->get("kdenlive_ix")).toInt() <= newPos) {
1892                     filter->set("kdenlive_ix", QString(filter->get("kdenlive_ix")).toInt() - 1);
1893                     ct++;
1894                     filter = clipService.filter(ct);
1895                 }
1896                 found = true;
1897             }
1898             if (filter && QString(filter->get("kdenlive_ix")).toInt() > newPos) {
1899                 filtersList.append(filter);
1900                 clipService.detach(*filter);
1901             } else ct++;
1902             filter = clipService.filter(ct);
1903         }
1904     } else {
1905         while (filter) {
1906             if (QString(filter->get("kdenlive_ix")).toInt() == oldPos) {
1907                 filter->set("kdenlive_ix", newPos);
1908                 filtersList.append(filter);
1909                 clipService.detach(*filter);
1910             } else ct++;
1911             filter = clipService.filter(ct);
1912         }
1913
1914         ct = 0;
1915         filter = clipService.filter(ct);
1916         while (filter) {
1917             int pos = QString(filter->get("kdenlive_ix")).toInt();
1918             if (pos >= newPos) {
1919                 if (pos < oldPos) filter->set("kdenlive_ix", pos + 1);
1920                 filtersList.append(filter);
1921                 clipService.detach(*filter);
1922             } else ct++;
1923             filter = clipService.filter(ct);
1924         }
1925     }
1926
1927     for (int i = 0; i < filtersList.count(); i++) {
1928         clipService.attach(*(filtersList.at(i)));
1929     }
1930
1931     m_isBlocked = false;
1932     refresh();
1933 }
1934
1935 bool Render::mltResizeClipEnd(ItemInfo info, GenTime clipDuration) {
1936     m_isBlocked = true;
1937
1938     Mlt::Service service(m_mltProducer->parent().get_service());
1939
1940     Mlt::Tractor tractor(service);
1941     Mlt::Producer trackProducer(tractor.track(info.track));
1942     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
1943
1944     /* // Display playlist info
1945     kDebug()<<"////////////  BEFORE RESIZE";
1946     for (int i = 0; i < trackPlaylist.count(); i++) {
1947     int blankStart = trackPlaylist.clip_start(i);
1948     int blankDuration = trackPlaylist.clip_length(i) - 1;
1949     QString blk;
1950     if (trackPlaylist.is_blank(i)) blk = "(blank)";
1951     kDebug()<<"CLIP "<<i<<": ("<<blankStart<<"x"<<blankStart + blankDuration<<")"<<blk;
1952     }*/
1953
1954     if (trackPlaylist.is_blank_at((int) info.startPos.frames(m_fps))) {
1955         kDebug() << "////////  ERROR RSIZING BLANK CLIP!!!!!!!!!!!";
1956         m_isBlocked = false;
1957         return false;
1958     }
1959     int clipIndex = trackPlaylist.get_clip_index_at((int) info.startPos.frames(m_fps));
1960     kDebug() << "// SELECTED CLIP START: " << trackPlaylist.clip_start(clipIndex);
1961     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
1962     int previousStart = clip->get_in();
1963     int previousDuration = trackPlaylist.clip_length(clipIndex) - 1;
1964     int newDuration = (int) clipDuration.frames(m_fps) - 1;
1965     trackPlaylist.resize_clip(clipIndex, previousStart, newDuration + previousStart);
1966     //trackPlaylist.consolidate_blanks(0);
1967     // skip to next clip
1968     clipIndex++;
1969     int diff = newDuration - previousDuration;
1970     kDebug() << "////////  RESIZE CLIP: " << clipIndex << "( pos: " << info.startPos.frames(25) << "), DIFF: " << diff << ", CURRENT DUR: " << previousDuration << ", NEW DUR: " << newDuration;
1971     if (diff > 0) {
1972         // clip was made longer, trim next blank if there is one.
1973         if (trackPlaylist.is_blank(clipIndex)) {
1974             int blankStart = trackPlaylist.clip_start(clipIndex);
1975             int blankDuration = trackPlaylist.clip_length(clipIndex) - 1;
1976             if (diff - blankDuration == 1) {
1977                 trackPlaylist.remove(clipIndex);
1978             } else trackPlaylist.resize_clip(clipIndex, blankStart, blankStart + blankDuration - diff);
1979         } else {
1980             kDebug() << "/// RESIZE ERROR, NXT CLIP IS NOT BLK: " << clipIndex;
1981         }
1982     } else trackPlaylist.insert_blank(clipIndex, 0 - diff - 1);
1983
1984     trackPlaylist.consolidate_blanks(0);
1985
1986
1987     if (info.track != 0 && clipIndex == trackPlaylist.count()) mltCheckLength();
1988     /*if (QString(clip->parent().get("transparency")).toInt() == 1) {
1989         //mltResizeTransparency(previousStart, previousStart, previousStart + newDuration, track, QString(clip->parent().get("id")).toInt());
1990         mltDeleteTransparency(info.startPos.frames(m_fps), info.track, QString(clip->parent().get("id")).toInt());
1991         ItemInfo transpinfo;
1992         transpinfo.startPos = info.startPos;
1993         transpinfo.endPos = info.startPos + clipDuration;
1994         transpinfo.track = info.track;
1995         mltAddClipTransparency(transpinfo, info.track - 1, QString(clip->parent().get("id")).toInt());
1996     }*/
1997     m_isBlocked = false;
1998     return true;
1999 }
2000
2001 void Render::mltChangeTrackState(int track, bool mute, bool blind) {
2002     Mlt::Service service(m_mltProducer->parent().get_service());
2003     Mlt::Tractor tractor(service);
2004     Mlt::Producer trackProducer(tractor.track(track));
2005     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2006     if (mute) {
2007         if (blind) trackProducer.set("hide", 3);
2008         else trackProducer.set("hide", 2);
2009     } else if (blind) {
2010         trackProducer.set("hide", 1);
2011     } else {
2012         trackProducer.set("hide", 0);
2013     }
2014     tractor.multitrack()->refresh();
2015     tractor.refresh();
2016     refresh();
2017 }
2018
2019 bool Render::mltResizeClipStart(ItemInfo info, GenTime diff) {
2020     //kDebug() << "////////  RSIZING CLIP from: "<<info.startPos.frames(25)<<" to "<<diff.frames(25);
2021     Mlt::Service service(m_mltProducer->parent().get_service());
2022     int moveFrame = (int) diff.frames(m_fps);
2023     Mlt::Tractor tractor(service);
2024     Mlt::Producer trackProducer(tractor.track(info.track));
2025     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2026     if (trackPlaylist.is_blank_at(info.startPos.frames(m_fps))) {
2027         kDebug() << "////////  ERROR RSIZING BLANK CLIP!!!!!!!!!!!";
2028         return false;
2029     }
2030     mlt_service_lock(service.get_service());
2031     int clipIndex = trackPlaylist.get_clip_index_at(info.startPos.frames(m_fps));
2032     /*int previousStart = trackPlaylist.clip_start(clipIndex);
2033     int previousDuration = trackPlaylist.clip_length(clipIndex) - 1;*/
2034     //kDebug() << " ** RESIZING CLIP START:" << clipIndex << " on track:" << track << ", mid pos: " << pos.frames(25) << ", moving: " << moveFrame << ", in: " << in.frames(25) << ", out: " << out.frames(25);
2035     Mlt::Producer *clip = trackPlaylist.get_clip(clipIndex);
2036     if (clip == NULL) {
2037         kDebug() << "////////  ERROR RSIZING NULL CLIP!!!!!!!!!!!";
2038         mlt_service_unlock(service.get_service());
2039         return false;
2040     }
2041     //m_mltConsumer->set("refresh", 0);
2042     int previousStart = clip->get_in();
2043     int previousDuration = trackPlaylist.clip_length(clipIndex) - 1;
2044     m_isBlocked = true;
2045     kDebug() << "RESIZE, old start: " << previousStart << ", PREV DUR: " << previousDuration << ", DIFF: " << moveFrame;
2046     trackPlaylist.resize_clip(clipIndex, previousStart + moveFrame, previousStart + previousDuration);
2047     if (moveFrame > 0) trackPlaylist.insert_blank(clipIndex, moveFrame - 1);
2048     else {
2049         //int midpos = info.startPos.frames(m_fps) + moveFrame - 1;
2050         int blankIndex = clipIndex - 1;
2051         int blankLength = trackPlaylist.clip_length(blankIndex);
2052         kDebug() << " + resizing blank length " <<  blankLength << ", SIZE DIFF: " << moveFrame;
2053         if (! trackPlaylist.is_blank(blankIndex)) {
2054             kDebug() << "WARNING, CLIP TO RESIZE IS NOT BLANK";
2055         }
2056         if (blankLength + moveFrame == 0) trackPlaylist.remove(blankIndex);
2057         else trackPlaylist.resize_clip(blankIndex, 0, blankLength + moveFrame - 1);
2058     }
2059     trackPlaylist.consolidate_blanks(0);
2060     /*if (QString(clip->parent().get("transparency")).toInt() == 1) {
2061         //mltResizeTransparency(previousStart, (int) moveEnd.frames(m_fps), (int) (moveEnd + out - in).frames(m_fps), track, QString(clip->parent().get("id")).toInt());
2062         mltDeleteTransparency(info.startPos.frames(m_fps), info.track, QString(clip->parent().get("id")).toInt());
2063         ItemInfo transpinfo;
2064         transpinfo.startPos = info.startPos + diff;
2065         transpinfo.endPos = info.startPos + diff + (info.endPos - info.startPos);
2066         transpinfo.track = info.track;
2067         mltAddClipTransparency(transpinfo, info.track - 1, QString(clip->parent().get("id")).toInt());
2068     }*/
2069     m_isBlocked = false;
2070     //m_mltConsumer->set("refresh", 1);
2071     mlt_service_unlock(service.get_service());
2072     return true;
2073 }
2074
2075 bool Render::mltMoveClip(int startTrack, int endTrack, GenTime moveStart, GenTime moveEnd, Mlt::Producer *prod) {
2076     return mltMoveClip(startTrack, endTrack, (int) moveStart.frames(m_fps), (int) moveEnd.frames(m_fps), prod);
2077 }
2078
2079
2080 bool Render::mltMoveClip(int startTrack, int endTrack, int moveStart, int moveEnd, Mlt::Producer *prod) {
2081     m_isBlocked = true;
2082
2083     m_mltConsumer->set("refresh", 0);
2084     mlt_service_lock(m_mltConsumer->get_service());
2085     Mlt::Service service(m_mltProducer->parent().get_service());
2086     if (service.type() != tractor_type) kWarning() << "// TRACTOR PROBLEM";
2087
2088     Mlt::Tractor tractor(service);
2089     Mlt::Producer trackProducer(tractor.track(startTrack));
2090     Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2091     int clipIndex = trackPlaylist.get_clip_index_at(moveStart + 1);
2092     kDebug() << "//////  LOOKING FOR CLIP TO MOVE, INDEX: " << clipIndex;
2093     bool checkLength = false;
2094     if (endTrack == startTrack) {
2095         //mlt_service_lock(service.get_service());
2096         Mlt::Producer clipProducer(trackPlaylist.replace_with_blank(clipIndex));
2097
2098         if (!trackPlaylist.is_blank_at(moveEnd)) {
2099             // error, destination is not empty
2100             //int ix = trackPlaylist.get_clip_index_at(moveEnd);
2101             kDebug() << "// ERROR MOVING CLIP TO : " << moveEnd;
2102             mlt_service_unlock(m_mltConsumer->get_service());
2103             m_isBlocked = false;
2104             return false;
2105         } else {
2106             trackPlaylist.consolidate_blanks(0);
2107             int newIndex = trackPlaylist.insert_at(moveEnd, clipProducer, 1);
2108             /*if (QString(clipProducer.parent().get("transparency")).toInt() == 1) {
2109                 mltMoveTransparency(moveStart, moveEnd, startTrack, endTrack, QString(clipProducer.parent().get("id")).toInt());
2110             }*/
2111             if (newIndex + 1 == trackPlaylist.count()) checkLength = true;
2112         }
2113         //mlt_service_unlock(service.get_service());
2114     } else {
2115         Mlt::Producer destTrackProducer(tractor.track(endTrack));
2116         Mlt::Playlist destTrackPlaylist((mlt_playlist) destTrackProducer.get_service());
2117         if (!destTrackPlaylist.is_blank_at(moveEnd)) {
2118             // error, destination is not empty
2119             mlt_service_unlock(m_mltConsumer->get_service());
2120             m_isBlocked = false;
2121             return false;
2122         } else {
2123             Mlt::Producer clipProducer(trackPlaylist.replace_with_blank(clipIndex));
2124             trackPlaylist.consolidate_blanks(0);
2125             destTrackPlaylist.consolidate_blanks(1);
2126             Mlt::Producer *clip;
2127             // check if we are moving a slowmotion producer
2128             QString serv = clipProducer.parent().get("mlt_service");
2129             if (serv == "framebuffer") {
2130                 clip = &clipProducer;
2131             } else clip = prod->cut(clipProducer.get_in(), clipProducer.get_out());
2132
2133             // move all effects to the correct producer
2134             Mlt::Service clipService(clipProducer.get_service());
2135             Mlt::Service newClipService(clip->get_service());
2136
2137             int ct = 0;
2138             Mlt::Filter *filter = clipService.filter(ct);
2139             while (filter) {
2140                 if (filter->get("kdenlive_ix") != 0) {
2141                     clipService.detach(*filter);
2142                     newClipService.attach(*filter);
2143                 } else ct++;
2144                 filter = clipService.filter(ct);
2145             }
2146
2147             int newIndex = destTrackPlaylist.insert_at(moveEnd, clip, 1);
2148             destTrackPlaylist.consolidate_blanks(0);
2149             /*if (QString(clipProducer.parent().get("transparency")).toInt() == 1) {
2150                 kDebug() << "//////// moving clip transparency";
2151                 mltMoveTransparency(moveStart, moveEnd, startTrack, endTrack, QString(clipProducer.parent().get("id")).toInt());
2152             }*/
2153             if (clipIndex > trackPlaylist.count()) checkLength = true;
2154             else if (newIndex + 1 == destTrackPlaylist.count()) checkLength = true;
2155         }
2156     }
2157
2158     if (checkLength) mltCheckLength();
2159     mlt_service_unlock(m_mltConsumer->get_service());
2160     m_isBlocked = false;
2161     m_mltConsumer->set("refresh", 1);
2162     return true;
2163 }
2164
2165 void Render::mltMoveTransition(QString type, int startTrack, int newTrack, int newTransitionTrack, GenTime oldIn, GenTime oldOut, GenTime newIn, GenTime newOut) {
2166     Mlt::Service service(m_mltProducer->parent().get_service());
2167     Mlt::Tractor tractor(service);
2168     Mlt::Field *field = tractor.field();
2169
2170     mlt_service_lock(service.get_service());
2171     m_mltConsumer->set("refresh", 0);
2172     m_isBlocked = true;
2173
2174     mlt_service serv = m_mltProducer->parent().get_service();
2175     mlt_service nextservice = mlt_service_get_producer(serv);
2176     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2177     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2178     QString resource = mlt_properties_get(properties, "mlt_service");
2179     int old_pos = (int)(oldIn.frames(m_fps) + oldOut.frames(m_fps)) / 2;
2180
2181     int new_in = (int)newIn.frames(m_fps);
2182     int new_out = (int)newOut.frames(m_fps) - 1;
2183
2184     while (mlt_type == "transition") {
2185         mlt_transition tr = (mlt_transition) nextservice;
2186         int currentTrack = mlt_transition_get_b_track(tr);
2187         int currentIn = (int) mlt_transition_get_in(tr);
2188         int currentOut = (int) mlt_transition_get_out(tr);
2189
2190         if (resource == type && startTrack == currentTrack && currentIn <= old_pos && currentOut >= old_pos) {
2191             mlt_transition_set_in_and_out(tr, new_in, new_out);
2192             if (newTrack - startTrack != 0) {
2193                 kDebug() << "///// TRANSITION CHANGE TRACK. CUrrent (b): " << currentTrack << "x" << mlt_transition_get_a_track(tr) << ", NEw: " << newTrack << "x" << newTransitionTrack;
2194
2195                 mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
2196                 mlt_properties_set_int(properties, "a_track", newTransitionTrack);
2197                 mlt_properties_set_int(properties, "b_track", newTrack);
2198                 //kDebug() << "set new start & end :" << new_in << new_out<< "TR OFFSET: "<<trackOffset<<", TRACKS: "<<mlt_transition_get_a_track(tr)<<"x"<<mlt_transition_get_b_track(tr);
2199             }
2200             break;
2201         }
2202         nextservice = mlt_service_producer(nextservice);
2203         if (nextservice == NULL) break;
2204         properties = MLT_SERVICE_PROPERTIES(nextservice);
2205         mlt_type = mlt_properties_get(properties, "mlt_type");
2206         resource = mlt_properties_get(properties, "mlt_service");
2207     }
2208     m_isBlocked = false;
2209     mlt_service_unlock(service.get_service());
2210     m_mltConsumer->set("refresh", 1);
2211 }
2212
2213 void Render::mltUpdateTransition(QString oldTag, QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml) {
2214     // kDebug() << "update transition"  << tag << " at pos " << in.frames(25);
2215     if (oldTag == tag) mltUpdateTransitionParams(tag, a_track, b_track, in, out, xml);
2216     else {
2217         mltDeleteTransition(oldTag, a_track, b_track, in, out, xml, false);
2218         mltAddTransition(tag, a_track, b_track, in, out, xml);
2219     }
2220     //mltSavePlaylist();
2221 }
2222
2223 void Render::mltUpdateTransitionParams(QString type, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml) {
2224     m_isBlocked = true;
2225     Mlt::Service service(m_mltProducer->parent().get_service());
2226     Mlt::Tractor tractor(service);
2227     Mlt::Field *field = tractor.field();
2228
2229     //m_mltConsumer->set("refresh", 0);
2230     mlt_service serv = m_mltProducer->parent().get_service();
2231
2232     mlt_service nextservice = mlt_service_get_producer(serv);
2233     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2234     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2235     QString resource = mlt_properties_get(properties, "mlt_service");
2236     int in_pos = (int) in.frames(m_fps);
2237     int out_pos = (int) out.frames(m_fps) - 1;
2238
2239     while (mlt_type == "transition") {
2240         mlt_transition tr = (mlt_transition) nextservice;
2241         int currentTrack = mlt_transition_get_b_track(tr);
2242         int currentBTrack = mlt_transition_get_a_track(tr);
2243         int currentIn = (int) mlt_transition_get_in(tr);
2244         int currentOut = (int) mlt_transition_get_out(tr);
2245
2246         // kDebug()<<"Looking for transition : " << currentIn <<"x"<<currentOut<< ", OLD oNE: "<<in_pos<<"x"<<out_pos;
2247
2248         if (resource == type && b_track == currentTrack && currentIn == in_pos && currentOut == out_pos) {
2249             QMap<QString, QString> map = mltGetTransitionParamsFromXml(xml);
2250             QMap<QString, QString>::Iterator it;
2251             QString key;
2252             mlt_properties transproperties = MLT_TRANSITION_PROPERTIES(tr);
2253             mlt_properties_set_int(transproperties, "force_track", xml.attribute("force_track").toInt());
2254             if (currentBTrack != a_track) {
2255                 mlt_properties_set_int(properties, "a_track", a_track);
2256             }
2257             for (it = map.begin(); it != map.end(); ++it) {
2258                 key = it.key();
2259                 char *name = decodedString(key);
2260                 char *value = decodedString(it.value());
2261                 mlt_properties_set(transproperties, name, value);
2262                 kDebug() << " ------  UPDATING TRANS PARAM: " << name << ": " << value;
2263                 //filter->set("kdenlive_id", id);
2264                 delete[] name;
2265                 delete[] value;
2266             }
2267             break;
2268         }
2269         nextservice = mlt_service_producer(nextservice);
2270         if (nextservice == NULL) break;
2271         properties = MLT_SERVICE_PROPERTIES(nextservice);
2272         mlt_type = mlt_properties_get(properties, "mlt_type");
2273         resource = mlt_properties_get(properties, "mlt_service");
2274     }
2275     m_isBlocked = false;
2276     m_mltConsumer->set("refresh", 1);
2277 }
2278
2279 void Render::mltDeleteTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool do_refresh) {
2280     Mlt::Service service(m_mltProducer->parent().get_service());
2281     Mlt::Tractor tractor(service);
2282     Mlt::Field *field = tractor.field();
2283
2284     //if (do_refresh) m_mltConsumer->set("refresh", 0);
2285     mlt_service serv = m_mltProducer->parent().get_service();
2286
2287     mlt_service nextservice = mlt_service_get_producer(serv);
2288     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2289     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2290     QString resource = mlt_properties_get(properties, "mlt_service");
2291
2292     const int old_pos = (int)((in + out).frames(m_fps) / 2);
2293
2294     while (mlt_type == "transition") {
2295         mlt_transition tr = (mlt_transition) nextservice;
2296         int currentTrack = mlt_transition_get_b_track(tr);
2297         int currentIn = (int) mlt_transition_get_in(tr);
2298         int currentOut = (int) mlt_transition_get_out(tr);
2299         //kDebug() << "// FOUND EXISTING TRANS, IN: " << currentIn << ", OUT: " << currentOut << ", TRACK: " << currentTrack;
2300
2301         if (resource == tag && b_track == currentTrack && currentIn <= old_pos && currentOut >= old_pos) {
2302             mlt_field_disconnect_service(field->get_field(), nextservice);
2303             break;
2304         }
2305         nextservice = mlt_service_producer(nextservice);
2306         if (nextservice == NULL) break;
2307         properties = MLT_SERVICE_PROPERTIES(nextservice);
2308         mlt_type = mlt_properties_get(properties, "mlt_type");
2309         resource = mlt_properties_get(properties, "mlt_service");
2310     }
2311     //if (do_refresh) m_mltConsumer->set("refresh", 1);
2312 }
2313
2314 QMap<QString, QString> Render::mltGetTransitionParamsFromXml(QDomElement xml) {
2315     QDomNodeList attribs = xml.elementsByTagName("parameter");
2316     QMap<QString, QString> map;
2317     for (int i = 0;i < attribs.count();i++) {
2318         QDomElement e = attribs.item(i).toElement();
2319         QString name = e.attribute("name");
2320         //kDebug()<<"-- TRANSITION PARAM: "<<name<<" = "<< e.attribute("name")<<" / " << e.attribute("value");
2321         map[name] = e.attribute("default");
2322         if (!e.attribute("value").isEmpty()) {
2323             map[name] = e.attribute("value");
2324         }
2325         if (!e.attribute("factor").isEmpty() && e.attribute("factor").toDouble() > 0) {
2326             map[name] = QString::number(map[name].toDouble() / e.attribute("factor").toDouble());
2327             //map[name]=map[name].replace(".",","); //FIXME how to solve locale conversion of . ,
2328         }
2329
2330         if (e.attribute("namedesc").contains(";")) {
2331             QString format = e.attribute("format");
2332             QStringList separators = format.split("%d", QString::SkipEmptyParts);
2333             QStringList values = e.attribute("value").split(QRegExp("[,:;x]"));
2334             QString neu;
2335             QTextStream txtNeu(&neu);
2336             if (values.size() > 0)
2337                 txtNeu << (int)values[0].toDouble();
2338             int i = 0;
2339             for (i = 0;i < separators.size() && i + 1 < values.size();i++) {
2340                 txtNeu << separators[i];
2341                 txtNeu << (int)(values[i+1].toDouble());
2342             }
2343             if (i < separators.size())
2344                 txtNeu << separators[i];
2345             map[e.attribute("name")] = neu;
2346         }
2347
2348     }
2349     return map;
2350 }
2351
2352 void Render::mltAddClipTransparency(ItemInfo info, int transitiontrack, int id) {
2353     kDebug() << "/////////  ADDING CLIP TRANSPARENCY AT: " << info.startPos.frames(25);
2354     Mlt::Service service(m_mltProducer->parent().get_service());
2355     Mlt::Tractor tractor(service);
2356     Mlt::Field *field = tractor.field();
2357
2358     Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, "composite");
2359     transition->set_in_and_out((int) info.startPos.frames(m_fps), (int) info.endPos.frames(m_fps) - 1);
2360     transition->set("transparency", id);
2361     transition->set("fill", 1);
2362     transition->set("internal_added", 237);
2363     field->plant_transition(*transition, transitiontrack, info.track);
2364     refresh();
2365 }
2366
2367 void Render::mltDeleteTransparency(int pos, int track, int id) {
2368     Mlt::Service service(m_mltProducer->parent().get_service());
2369     Mlt::Tractor tractor(service);
2370     Mlt::Field *field = tractor.field();
2371
2372     //if (do_refresh) m_mltConsumer->set("refresh", 0);
2373     mlt_service serv = m_mltProducer->parent().get_service();
2374
2375     mlt_service nextservice = mlt_service_get_producer(serv);
2376     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2377     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2378     QString resource = mlt_properties_get(properties, "mlt_service");
2379
2380     while (mlt_type == "transition") {
2381         mlt_transition tr = (mlt_transition) nextservice;
2382         int currentTrack = mlt_transition_get_b_track(tr);
2383         int currentIn = (int) mlt_transition_get_in(tr);
2384         int currentOut = (int) mlt_transition_get_out(tr);
2385         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
2386         kDebug() << "// FOUND EXISTING TRANS, IN: " << currentIn << ", OUT: " << currentOut << ", TRACK: " << currentTrack;
2387
2388         if (resource == "composite" && track == currentTrack && currentIn == pos && transitionId == id) {
2389             //kDebug() << " / / / / /DELETE TRANS DOOOMNE";
2390             mlt_field_disconnect_service(field->get_field(), nextservice);
2391             break;
2392         }
2393         nextservice = mlt_service_producer(nextservice);
2394         if (nextservice == NULL) break;
2395         properties = MLT_SERVICE_PROPERTIES(nextservice);
2396         mlt_type = mlt_properties_get(properties, "mlt_type");
2397         resource = mlt_properties_get(properties, "mlt_service");
2398     }
2399     //if (do_refresh) m_mltConsumer->set("refresh", 1);
2400 }
2401
2402 void Render::mltResizeTransparency(int oldStart, int newStart, int newEnd, int track, int id) {
2403     Mlt::Service service(m_mltProducer->parent().get_service());
2404     Mlt::Tractor tractor(service);
2405     Mlt::Field *field = tractor.field();
2406
2407     mlt_service_lock(service.get_service());
2408     m_mltConsumer->set("refresh", 0);
2409     m_isBlocked = true;
2410
2411     mlt_service serv = m_mltProducer->parent().get_service();
2412     mlt_service nextservice = mlt_service_get_producer(serv);
2413     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2414     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2415     QString resource = mlt_properties_get(properties, "mlt_service");
2416     kDebug() << "// resize transpar from: " << oldStart << ", TO: " << newStart << "x" << newEnd << ", " << track << ", " << id;
2417     while (mlt_type == "transition") {
2418         mlt_transition tr = (mlt_transition) nextservice;
2419         int currentTrack = mlt_transition_get_b_track(tr);
2420         int currentIn = (int) mlt_transition_get_in(tr);
2421         //mlt_properties props = MLT_TRANSITION_PROPERTIES(tr);
2422         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
2423         kDebug() << "// resize transpar current in: " << currentIn << ", Track: " << currentTrack << ", id: " << id << "x" << transitionId ;
2424         if (resource == "composite" && track == currentTrack && currentIn == oldStart && transitionId == id) {
2425             kDebug() << " / / / / /RESIZE TRANS TO: " << newStart << "x" << newEnd;
2426             mlt_transition_set_in_and_out(tr, newStart, newEnd);
2427             break;
2428         }
2429         nextservice = mlt_service_producer(nextservice);
2430         if (nextservice == NULL) break;
2431         properties = MLT_SERVICE_PROPERTIES(nextservice);
2432         mlt_type = mlt_properties_get(properties, "mlt_type");
2433         resource = mlt_properties_get(properties, "mlt_service");
2434     }
2435     m_isBlocked = false;
2436     mlt_service_unlock(service.get_service());
2437     m_mltConsumer->set("refresh", 1);
2438
2439 }
2440
2441 void Render::mltMoveTransparency(int startTime, int endTime, int startTrack, int endTrack, int id) {
2442     Mlt::Service service(m_mltProducer->parent().get_service());
2443     Mlt::Tractor tractor(service);
2444     Mlt::Field *field = tractor.field();
2445
2446     mlt_service_lock(service.get_service());
2447     m_mltConsumer->set("refresh", 0);
2448     m_isBlocked = true;
2449
2450     mlt_service serv = m_mltProducer->parent().get_service();
2451     mlt_service nextservice = mlt_service_get_producer(serv);
2452     mlt_properties properties = MLT_SERVICE_PROPERTIES(nextservice);
2453     QString mlt_type = mlt_properties_get(properties, "mlt_type");
2454     QString resource = mlt_properties_get(properties, "mlt_service");
2455
2456     while (mlt_type == "transition") {
2457         mlt_transition tr = (mlt_transition) nextservice;
2458         int currentTrack = mlt_transition_get_b_track(tr);
2459         int currentaTrack = mlt_transition_get_a_track(tr);
2460         int currentIn = (int) mlt_transition_get_in(tr);
2461         int currentOut = (int) mlt_transition_get_out(tr);
2462         //mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
2463         int transitionId = QString(mlt_properties_get(properties, "transparency")).toInt();
2464         //kDebug()<<" + TRANSITION "<<id<<" == "<<transitionId<<", START TMIE: "<<currentIn<<", LOOK FR: "<<startTime<<", TRACK: "<<currentTrack<<"x"<<startTrack;
2465         if (resource == "composite" && transitionId == id && startTime == currentIn && startTrack == currentTrack) {
2466             kDebug() << "//////MOVING";
2467             mlt_transition_set_in_and_out(tr, endTime, endTime + currentOut - currentIn);
2468             if (endTrack != startTrack) {
2469                 mlt_properties properties = MLT_TRANSITION_PROPERTIES(tr);
2470                 mlt_properties_set_int(properties, "a_track", currentaTrack + endTrack - currentTrack);
2471                 mlt_properties_set_int(properties, "b_track", endTrack);
2472             }
2473             break;
2474         }
2475         nextservice = mlt_service_producer(nextservice);
2476         if (nextservice == NULL) break;
2477         properties = MLT_SERVICE_PROPERTIES(nextservice);
2478         mlt_type = mlt_properties_get(properties, "mlt_type");
2479         resource = mlt_properties_get(properties, "mlt_service");
2480     }
2481     m_isBlocked = false;
2482     mlt_service_unlock(service.get_service());
2483     m_mltConsumer->set("refresh", 1);
2484 }
2485
2486
2487 void Render::mltAddTransition(QString tag, int a_track, int b_track, GenTime in, GenTime out, QDomElement xml, bool do_refresh) {
2488
2489     QMap<QString, QString> args = mltGetTransitionParamsFromXml(xml);
2490     Mlt::Service service(m_mltProducer->parent().get_service());
2491
2492     Mlt::Tractor tractor(service);
2493     Mlt::Field *field = tractor.field();
2494
2495     char *transId = decodedString(tag);
2496     Mlt::Transition *transition = new Mlt::Transition(*m_mltProfile, transId);
2497     if (out != GenTime())
2498         transition->set_in_and_out((int) in.frames(m_fps), (int) out.frames(m_fps) - 1);
2499     QMap<QString, QString>::Iterator it;
2500     QString key;
2501     if (xml.attribute("automatic") == "1") transition->set("automatic", 1);
2502     //kDebug() << " ------  ADDING TRANSITION PARAMs: " << args.count();
2503
2504     for (it = args.begin(); it != args.end(); ++it) {
2505         key = it.key();
2506         char *name = decodedString(key);
2507         char *value = decodedString(it.value());
2508         transition->set(name, value);
2509         kDebug() << " ------  ADDING TRANS PARAM: " << name << ": " << value;
2510         //filter->set("kdenlive_id", id);
2511         delete[] name;
2512         delete[] value;
2513     }
2514     // attach filter to the clip
2515     field->plant_transition(*transition, a_track, b_track);
2516     delete[] transId;
2517     refresh();
2518 }
2519
2520 void Render::mltSavePlaylist() {
2521     kWarning() << "// UPDATING PLAYLIST TO DISK++++++++++++++++";
2522     Mlt::Consumer fileConsumer(*m_mltProfile, "westley");
2523     fileConsumer.set("resource", "/tmp/playlist.westley");
2524
2525     Mlt::Service service(m_mltProducer->get_service());
2526
2527     fileConsumer.connect(service);
2528     fileConsumer.start();
2529 }
2530
2531 QList <Mlt::Producer *> Render::producersList() {
2532     QList <Mlt::Producer *> prods;
2533     QStringList ids;
2534     Mlt::Service service(m_mltProducer->parent().get_service());
2535     Mlt::Tractor tractor(service);
2536     Mlt::Field *field = tractor.field();
2537
2538     int trackNb = tractor.count();
2539     for (int t = 1; t < trackNb; t++) {
2540         Mlt::Producer trackProducer(tractor.track(t));
2541         Mlt::Playlist trackPlaylist((mlt_playlist) trackProducer.get_service());
2542         int clipNb = trackPlaylist.count();
2543         kDebug() << "// PARSING SCENE TRACK: " << t << ", CLIPS: " << clipNb;
2544         for (int i = 0; i < clipNb; i++) {
2545             Mlt::Producer *prod = trackPlaylist.get_clip(i);
2546             Mlt::Producer *nprod = new Mlt::Producer(prod->get_parent());
2547             //kDebug()<<"PROD: "<<nprod->get("producer")<<", ID: "<<nprod->get("id")<<nprod->get("resource");
2548             if (nprod && !nprod->is_blank() && !ids.contains(nprod->get("id"))) {
2549                 ids.append(nprod->get("id"));
2550                 prods.append(nprod);
2551             }
2552         }
2553     }
2554     return prods;
2555 }
2556
2557 #include "renderer.moc"
2558