]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Try to fix the concurrency issues causing crash in the avformat producer
[kdenlive] / src / docclipbase.cpp
1 /***************************************************************************
2  *                         DocClipBase.cpp  -  description                 *
3  *                           -------------------                           *
4  *   begin                : Fri Apr 12 2002                                *
5  *   Copyright (C) 2002 by Jason Wood (jasonwood@blueyonder.co.uk)         *
6  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
22  ***************************************************************************/
23
24
25
26
27 #include "docclipbase.h"
28 #include "kdenlivesettings.h"
29 #include "kthumb.h"
30 #include "clipmanager.h"
31 #include "slideshowclip.h"
32
33 #include <KIO/NetAccess>
34 #include <KStandardDirs>
35 #include <KDebug>
36
37 #include <QCryptographicHash>
38 #include <QtConcurrentRun>
39
40 #include <cstdio>
41
42 DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QString &id) :
43         QObject(),
44         m_audioFrameCache(),
45         m_refcount(0),
46         m_baseTrackProducers(),
47         m_audioTrackProducers(),
48         m_videoOnlyProducer(NULL),
49         m_snapMarkers(QList < CommentedTime >()),
50         m_duration(),
51         m_audioTimer(NULL),
52         m_thumbProd(NULL),
53         m_audioThumbCreated(false),
54         m_id(id),
55         m_placeHolder(xml.hasAttribute("placeholder")),
56         m_properties()
57 {
58     int type = xml.attribute("type").toInt();
59     m_clipType = (CLIPTYPE) type;
60     if (m_placeHolder) xml.removeAttribute("placeholder");
61     QDomNamedNodeMap attributes = xml.attributes();
62     for (int i = 0; i < attributes.count(); i++) {
63         QString name = attributes.item(i).nodeName();
64         if (name.startsWith("meta.attr.")) {
65             m_metadata.insert(name.section('.', 2, 3), attributes.item(i).nodeValue());
66         } else m_properties.insert(name, attributes.item(i).nodeValue());
67     }
68
69     if (xml.hasAttribute("cutzones")) {
70         QStringList cuts = xml.attribute("cutzones").split(";", QString::SkipEmptyParts);
71         for (int i = 0; i < cuts.count(); i++) {
72             QString z = cuts.at(i);
73             addCutZone(z.section('-', 0, 0).toInt(), z.section('-', 1, 1).toInt(), z.section('-', 2, 2));
74         }
75     }
76
77     KUrl url = KUrl(xml.attribute("resource"));
78     if (!m_properties.contains("file_hash") && !url.isEmpty()) getFileHash(url.path());
79
80     if (xml.hasAttribute("duration")) {
81         setDuration(GenTime(xml.attribute("duration").toInt(), KdenliveSettings::project_fps()));
82     } else {
83         int out = xml.attribute("out").toInt();
84         int in = xml.attribute("in").toInt();
85         setDuration(GenTime(out - in, KdenliveSettings::project_fps()));
86     }
87
88     if (!m_properties.contains("name")) m_properties.insert("name", url.fileName());
89
90     m_thumbProd = new KThumb(clipManager, url, m_id, m_properties.value("file_hash"));
91     if (m_clipType == AV || m_clipType == AUDIO || m_clipType == PLAYLIST) slotCreateAudioTimer();
92 }
93
94 DocClipBase::~DocClipBase()
95 {
96     delete m_thumbProd;
97     if (m_audioTimer) {
98         m_audioTimer->stop();
99         delete m_audioTimer;
100     }
101     qDeleteAll(m_baseTrackProducers);
102     m_baseTrackProducers.clear();
103     qDeleteAll(m_audioTrackProducers);
104     m_audioTrackProducers.clear();
105     delete m_videoOnlyProducer;
106     m_videoOnlyProducer = NULL;
107 }
108
109 void DocClipBase::setZone(QPoint zone)
110 {
111     m_properties.insert("zone_in", QString::number(zone.x()));
112     m_properties.insert("zone_out", QString::number(zone.y()));
113 }
114
115 QPoint DocClipBase::zone() const
116 {
117     QPoint zone(m_properties.value("zone_in", "0").toInt(), m_properties.value("zone_out", "50").toInt());
118     return zone;
119 }
120
121 void DocClipBase::slotCreateAudioTimer()
122 {
123     connect(m_thumbProd, SIGNAL(audioThumbReady(const audioByteArray&)), this , SLOT(updateAudioThumbnail(const audioByteArray&)));
124     m_audioTimer = new QTimer(this);
125     connect(m_audioTimer, SIGNAL(timeout()), this, SLOT(slotGetAudioThumbs()));
126 }
127
128 void DocClipBase::askForAudioThumbs()
129 {
130     if (m_thumbProd && m_audioTimer) m_thumbProd->askForAudioThumbs(getId());
131 }
132
133 void DocClipBase::slotClearAudioCache()
134 {
135     if (m_thumbProd) m_thumbProd->stopAudioThumbs();
136     if (m_audioTimer != NULL) m_audioTimer->stop();
137     m_audioFrameCache.clear();
138     m_audioThumbCreated = false;
139 }
140
141 /*void DocClipBase::getClipMainThumb() {
142     if (m_thumbProd) m_thumbProd->getMainThumb(m_properties.value("thumbnail").toInt());
143 }*/
144
145 KThumb *DocClipBase::thumbProducer()
146 {
147     return m_thumbProd;
148 }
149
150 bool DocClipBase::audioThumbCreated() const
151 {
152     return m_audioThumbCreated;
153 }
154
155 const QString DocClipBase::name() const
156 {
157
158     return m_properties.value("name");
159 }
160
161 const QString &DocClipBase::getId() const
162 {
163     return m_id;
164 }
165
166 void DocClipBase::setId(const QString &newId)
167 {
168     m_id = newId;
169 }
170
171 const CLIPTYPE & DocClipBase::clipType() const
172 {
173     return m_clipType;
174 }
175
176 void DocClipBase::setClipType(CLIPTYPE type)
177 {
178     m_clipType = type;
179
180     m_properties.insert("type", QString::number((int) type));
181     if (m_thumbProd && m_audioTimer == NULL && (m_clipType == AV || m_clipType == AUDIO || m_clipType == PLAYLIST))
182         slotCreateAudioTimer();
183 }
184
185 KUrl DocClipBase::fileURL() const
186 {
187     QString res = m_properties.value("resource");
188     if (m_clipType != COLOR && !res.isEmpty()) return KUrl(res);
189     return KUrl();
190 }
191
192 void DocClipBase::setClipThumbFrame(const uint &ix)
193 {
194     m_properties.insert("thumbnail", QString::number((int) ix));
195 }
196
197 uint DocClipBase::getClipThumbFrame() const
198 {
199     return (uint) m_properties.value("thumbnail").toInt();
200 }
201
202 const QString DocClipBase::description() const
203 {
204     return m_properties.value("description");
205 }
206
207 bool DocClipBase::isTransparent() const
208 {
209     return (m_properties.value("transparency") == "1");
210 }
211
212 const QString DocClipBase::getProperty(const QString &prop) const
213 {
214     return m_properties.value(prop);
215 }
216
217 void DocClipBase::setDuration(GenTime dur)
218 {
219     m_duration = dur;
220     m_properties.insert("duration", QString::number((int) dur.frames(KdenliveSettings::project_fps())));
221 }
222
223 const GenTime &DocClipBase::duration() const
224 {
225     return m_duration;
226 }
227
228 const GenTime DocClipBase::maxDuration() const
229 {
230     if (m_clipType == COLOR || m_clipType == IMAGE || m_clipType == TEXT || (m_clipType == SLIDESHOW &&  m_properties.value("loop") == "1")) {
231         /*const GenTime dur(15000, KdenliveSettings::project_fps());
232         return dur;*/
233         return GenTime();
234     }
235     return m_duration;
236 }
237
238 bool DocClipBase::hasFileSize() const
239 {
240     return true;
241 }
242
243 qulonglong DocClipBase::fileSize() const
244 {
245     return m_properties.value("file_size").toULongLong();
246 }
247
248 // virtual
249 QDomElement DocClipBase::toXML() const
250 {
251     QDomDocument doc;
252     QDomElement clip = doc.createElement("producer");
253
254     QMapIterator<QString, QString> i(m_properties);
255     while (i.hasNext()) {
256         i.next();
257         if (!i.value().isEmpty()) clip.setAttribute(i.key(), i.value());
258     }
259     doc.appendChild(clip);
260     if (!m_cutZones.isEmpty()) {
261         QStringList cuts;
262         for (int i = 0; i < m_cutZones.size(); i++) {
263             CutZoneInfo info = m_cutZones.at(i);
264             cuts << QString::number(info.zone.x()) + "-" + QString::number(info.zone.y()) + "-" + info.description;
265         }
266         clip.setAttribute("cutzones", cuts.join(";"));
267     }
268     //kDebug() << "/// CLIP XML: " << doc.toString();
269     return doc.documentElement();
270 }
271
272
273 void DocClipBase::setAudioThumbCreated(bool isDone)
274 {
275     m_audioThumbCreated = isDone;
276 }
277
278
279 void DocClipBase::setThumbnail(const QPixmap & pixmap)
280 {
281     m_thumbnail = pixmap;
282 }
283
284 const QPixmap & DocClipBase::thumbnail() const
285 {
286     return m_thumbnail;
287 }
288
289 void DocClipBase::updateAudioThumbnail(const audioByteArray& data)
290 {
291     //kDebug() << "CLIPBASE RECIEDVED AUDIO DATA*********************************************";
292     m_audioFrameCache = data;
293     m_audioThumbCreated = true;
294     emit gotAudioData();
295 }
296
297 QList < GenTime > DocClipBase::snapMarkers() const
298 {
299     QList < GenTime > markers;
300
301     for (int count = 0; count < m_snapMarkers.count(); ++count) {
302         markers.append(m_snapMarkers.at(count).time());
303     }
304
305     return markers;
306 }
307
308 QList < CommentedTime > DocClipBase::commentedSnapMarkers() const
309 {
310     return m_snapMarkers;
311 }
312
313
314 void DocClipBase::addSnapMarker(const GenTime & time, QString comment)
315 {
316     QList < CommentedTime >::Iterator it = m_snapMarkers.begin();
317     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
318         if ((*it).time() >= time)
319             break;
320     }
321
322     if ((it != m_snapMarkers.end()) && ((*it).time() == time)) {
323         (*it).setComment(comment);
324         //kError() << "trying to add Snap Marker that already exists, this will cause inconsistancies with undo/redo";
325     } else {
326         CommentedTime t(time, comment);
327         m_snapMarkers.insert(it, t);
328     }
329
330 }
331
332 void DocClipBase::editSnapMarker(const GenTime & time, QString comment)
333 {
334     QList < CommentedTime >::Iterator it;
335     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
336         if ((*it).time() == time)
337             break;
338     }
339     if (it != m_snapMarkers.end()) {
340         (*it).setComment(comment);
341     } else {
342         kError() << "trying to edit Snap Marker that does not already exists";
343     }
344 }
345
346 QString DocClipBase::deleteSnapMarker(const GenTime & time)
347 {
348     QString result = i18n("Marker");
349     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
350
351     while (itt != m_snapMarkers.end()) {
352         if ((*itt).time() == time)
353             break;
354         ++itt;
355     }
356
357     if ((itt != m_snapMarkers.end()) && ((*itt).time() == time)) {
358         result = (*itt).comment();
359         m_snapMarkers.erase(itt);
360     }
361     return result;
362 }
363
364
365 GenTime DocClipBase::hasSnapMarkers(const GenTime & time)
366 {
367     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
368
369     while (itt != m_snapMarkers.end()) {
370         if ((*itt).time() == time)
371             return time;
372         ++itt;
373     }
374
375     return GenTime(0.0);
376 }
377
378 GenTime DocClipBase::findPreviousSnapMarker(const GenTime & currTime)
379 {
380     int it;
381     for (it = 0; it < m_snapMarkers.count(); it++) {
382         if (m_snapMarkers.at(it).time() >= currTime)
383             break;
384     }
385     if (it == 0) return GenTime();
386     else if (it == m_snapMarkers.count() - 1 && m_snapMarkers.at(it).time() < currTime)
387         return m_snapMarkers.at(it).time();
388     else return m_snapMarkers.at(it - 1).time();
389 }
390
391 GenTime DocClipBase::findNextSnapMarker(const GenTime & currTime)
392 {
393     int it;
394     for (it = 0; it < m_snapMarkers.count(); it++) {
395         if (m_snapMarkers.at(it).time() > currTime)
396             break;
397     }
398     if (it < m_snapMarkers.count() && m_snapMarkers.at(it).time() > currTime) return m_snapMarkers.at(it).time();
399     return duration();
400 }
401
402 QString DocClipBase::markerComment(GenTime t)
403 {
404     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
405
406     while (itt != m_snapMarkers.end()) {
407         if ((*itt).time() == t)
408             return (*itt).comment();
409         ++itt;
410     }
411     return QString();
412 }
413
414 void DocClipBase::clearThumbProducer()
415 {
416     if (m_thumbProd) m_thumbProd->clearProducer();
417 }
418
419 void DocClipBase::deleteProducers()
420 {
421     m_thumbProd->clearProducer();
422     
423     if (numReferences() > 0) {
424         // Clip is used in timeline, delay producers deletion
425         if (m_videoOnlyProducer) m_toDeleteProducers.append(m_videoOnlyProducer);
426         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
427             m_toDeleteProducers.append(m_baseTrackProducers.at(i));
428         }
429         for (int i = 0; i < m_audioTrackProducers.count(); i++) {
430             m_toDeleteProducers.append(m_audioTrackProducers.at(i));
431         }
432     }
433     else {
434         delete m_videoOnlyProducer;
435         qDeleteAll(m_baseTrackProducers);
436         qDeleteAll(m_audioTrackProducers);
437         m_replaceMutex.unlock();
438     }
439     m_videoOnlyProducer = NULL;
440     m_baseTrackProducers.clear();
441     m_audioTrackProducers.clear();
442 }
443
444 void DocClipBase::cleanupProducers()
445 {
446     /*
447     int ct = 0;
448     kDebug()<<"----------------------------------------------------------------------------------";
449     for (int i = 0; i < m_toDeleteProducers.count(); i++) {
450         if (m_toDeleteProducers.at(i) != NULL) {
451             Mlt::Properties props(m_toDeleteProducers.at(i)->get_properties());
452             if (props.ref_count() > 2) {
453                 kDebug()<<"PRODUCER: "<<i<<", COUNTS: "<<props.ref_count();
454                 //exit(1);
455             }
456             ct++;
457         }
458     }*/
459
460     qDeleteAll(m_toDeleteProducers);
461     m_toDeleteProducers.clear();
462     m_replaceMutex.unlock();
463 }
464
465 bool DocClipBase::isClean() const
466 {
467     return m_toDeleteProducers.isEmpty();
468 }
469
470 void DocClipBase::setValid()
471 {
472     m_placeHolder = false;
473 }
474
475 void DocClipBase::setProducer(Mlt::Producer *producer, bool reset, bool readPropertiesFromProducer)
476 {
477     if (producer == NULL) return;
478     if (reset) {
479         QMutexLocker locker(&m_producerMutex);
480         m_replaceMutex.lock();
481         deleteProducers();
482     }
483     QString id = producer->get("id");
484     if (m_placeHolder || !producer->is_valid()) {
485         char *tmp = qstrdup(i18n("Missing clip").toUtf8().constData());
486         producer->set("markup", tmp);
487         producer->set("bgcolour", "0xff0000ff");
488         producer->set("pad", "10");
489         delete[] tmp;
490     }
491     else if (m_thumbProd && !m_thumbProd->hasProducer()) {
492         if (m_clipType != AUDIO) {
493             if (!id.endsWith("_audio"))
494                 m_thumbProd->setProducer(producer);
495         }
496         else m_thumbProd->setProducer(producer);
497     }
498     bool updated = false;
499     if (id.contains('_')) {
500         // this is a subtrack producer, insert it at correct place
501         id = id.section('_', 1);
502         if (id.endsWith("audio")) {
503             int pos = id.section('_', 0, 0).toInt();
504             if (pos >= m_audioTrackProducers.count()) {
505                 while (m_audioTrackProducers.count() - 1 < pos) {
506                     m_audioTrackProducers.append(NULL);
507                 }
508             }
509             if (m_audioTrackProducers.at(pos) == NULL) {
510                 m_audioTrackProducers[pos] = producer;
511                 updated = true;
512             }
513             else delete producer;
514             return;
515         } else if (id.endsWith("video")) {
516             if (m_videoOnlyProducer == NULL) {
517                 m_videoOnlyProducer = producer;
518                 updated = true;
519             }
520             else delete producer;
521             return;
522         }
523         int pos = id.toInt();
524         if (pos >= m_baseTrackProducers.count()) {
525             while (m_baseTrackProducers.count() - 1 < pos) {
526                 m_baseTrackProducers.append(NULL);
527             }
528         }
529         if (m_baseTrackProducers.at(pos) == NULL) {
530             m_baseTrackProducers[pos] = producer;
531             updated = true;
532         }
533         else delete producer;
534     } else {
535         if (m_baseTrackProducers.isEmpty()) {
536             m_baseTrackProducers.append(producer);
537             updated = true;
538         }
539         else if (m_baseTrackProducers.at(0) == NULL) {
540             m_baseTrackProducers[0] = producer;
541             updated = true;
542         }
543         else delete producer;
544     }
545     if (updated && readPropertiesFromProducer && (m_clipType != COLOR && m_clipType != IMAGE && m_clipType != TEXT))
546         setDuration(GenTime(producer->get_length(), KdenliveSettings::project_fps()));
547 }
548
549 static double getPixelAspect(QMap<QString, QString>& props) {
550     int width = props.value("frame_size").section('x', 0, 0).toInt();
551     int height = props.value("frame_size").section('x', 1, 1).toInt();
552     int aspectNumerator = props.value("force_aspect_num").toInt();
553     int aspectDenominator = props.value("force_aspect_den").toInt();
554     if (aspectDenominator != 0 && width != 0)
555         return double(height) * aspectNumerator / aspectDenominator / width;    
556     else
557         return 1.0;
558 }
559
560 Mlt::Producer *DocClipBase::audioProducer(int track)
561 {
562     QMutexLocker locker(&m_producerMutex);
563     if (m_audioTrackProducers.count() <= track) {
564         while (m_audioTrackProducers.count() - 1 < track) {
565             m_audioTrackProducers.append(NULL);
566         }
567     }
568     if (m_audioTrackProducers.at(track) == NULL) {
569         int i;
570         for (i = 0; i < m_audioTrackProducers.count(); i++)
571             if (m_audioTrackProducers.at(i) != NULL) break;
572         Mlt::Producer *base;
573         if (i >= m_audioTrackProducers.count()) {
574             // Could not find a valid producer for that clip
575             locker.unlock();
576             base = getProducer();
577             if (base == NULL) {
578                 return NULL;
579             }
580             locker.relock();
581         }
582         else base = m_audioTrackProducers.at(i);
583         m_audioTrackProducers[track] = cloneProducer(base);
584         adjustProducerProperties(m_audioTrackProducers.at(track), QString(getId() + '_' + QString::number(track) + "_audio"), false, true);
585     }
586     return m_audioTrackProducers.at(track);
587 }
588
589
590 void DocClipBase::adjustProducerProperties(Mlt::Producer *prod, const QString &id, bool mute, bool blind)
591 {
592         if (m_properties.contains("force_aspect_num") && m_properties.contains("force_aspect_den") && m_properties.contains("frame_size"))
593             prod->set("force_aspect_ratio", getPixelAspect(m_properties));
594         if (m_properties.contains("force_fps")) prod->set("force_fps", m_properties.value("force_fps").toDouble());
595         if (m_properties.contains("force_progressive")) prod->set("force_progressive", m_properties.value("force_progressive").toInt());
596         if (m_properties.contains("force_tff")) prod->set("force_tff", m_properties.value("force_tff").toInt());
597         if (m_properties.contains("threads")) prod->set("threads", m_properties.value("threads").toInt());
598         if (mute) prod->set("audio_index", -1);
599         else if (m_properties.contains("audio_index")) prod->set("audio_index", m_properties.value("audio_index").toInt());
600         if (blind) prod->set("video_index", -1);
601         else if (m_properties.contains("video_index")) prod->set("video_index", m_properties.value("video_index").toInt());
602         prod->set("id", id.toUtf8().constData());
603         if (m_properties.contains("force_colorspace")) prod->set("force_colorspace", m_properties.value("force_colorspace").toInt());
604         if (m_properties.contains("full_luma")) prod->set("set.force_full_luma", m_properties.value("full_luma").toInt());
605         if (m_properties.contains("proxy_out")) {
606             // We have a proxy clip, make sure the proxy has same duration as original
607             prod->set("length", m_properties.value("duration").toInt());
608             prod->set("out", m_properties.value("proxy_out").toInt());
609         }
610
611 }
612
613 Mlt::Producer *DocClipBase::videoProducer()
614 {
615     QMutexLocker locker(&m_producerMutex);
616     if (m_videoOnlyProducer == NULL) {
617         int i;
618         for (i = 0; i < m_baseTrackProducers.count(); i++)
619             if (m_baseTrackProducers.at(i) != NULL) break;
620         if (i >= m_baseTrackProducers.count()) return NULL;
621         m_videoOnlyProducer = cloneProducer(m_baseTrackProducers.at(i));
622         adjustProducerProperties(m_videoOnlyProducer, QString(getId() + "_video"), true, false);
623     }
624     return m_videoOnlyProducer;
625 }
626
627 Mlt::Producer *DocClipBase::getCloneProducer(Mlt::Producer *source)
628 {
629     QMutexLocker locker(&m_producerMutex);
630     if (source == NULL) {
631         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
632             if (m_baseTrackProducers.at(i) != NULL) {
633                 source = m_baseTrackProducers.at(i);
634                 break;
635             }
636         }
637     }
638     if (source) {
639         Mlt::Producer *prod = cloneProducer(source);
640         adjustProducerProperties(prod, getId() + "_monitor", false, false);
641         return prod;
642     }
643     return NULL;
644 }
645
646 Mlt::Producer *DocClipBase::getProducer(int track)
647 {
648     QMutexLocker locker(&m_producerMutex);
649     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV && m_clipType != PLAYLIST)) {
650         if (m_baseTrackProducers.count() == 0) {
651             return NULL;
652         }
653         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
654             if (m_baseTrackProducers.at(i) != NULL) {
655                 return m_baseTrackProducers.at(i);
656             }
657         }
658         return NULL;
659     }
660     if (track >= m_baseTrackProducers.count()) {
661         while (m_baseTrackProducers.count() - 1 < track) {
662             m_baseTrackProducers.append(NULL);
663         }
664     }
665     if (m_baseTrackProducers.at(track) == NULL) {
666         int i;
667         for (i = 0; i < m_baseTrackProducers.count(); i++)
668             if (m_baseTrackProducers.at(i) != NULL) break;
669
670         if (i >= m_baseTrackProducers.count()) {
671             // Could not find a valid producer for that clip, check in 
672             return NULL;
673         }
674         m_baseTrackProducers[track] = cloneProducer(m_baseTrackProducers.at(i));
675         adjustProducerProperties(m_baseTrackProducers.at(track), QString(getId() + '_' + QString::number(track)), false, false);
676     }
677     return m_baseTrackProducers.at(track);
678 }
679
680
681 Mlt::Producer *DocClipBase::cloneProducer(Mlt::Producer *source)
682 {
683     Mlt::Producer *result = NULL;
684     QString url = QString::fromUtf8(source->get("resource"));
685     if (KIO::NetAccess::exists(KUrl(url), KIO::NetAccess::SourceSide, 0)) {
686         result = new Mlt::Producer(*(source->profile()), url.toUtf8().constData());
687     }
688     if (result == NULL || !result->is_valid()) {
689         // placeholder clip
690         QString txt = "+" + i18n("Missing clip") + ".txt";
691         char *tmp = qstrdup(txt.toUtf8().constData());
692         result = new Mlt::Producer(*source->profile(), tmp);
693         delete[] tmp;
694         if (result == NULL || !result->is_valid())
695             result = new Mlt::Producer(*(source->profile()), "colour:red");
696         else {
697             result->set("bgcolour", "0xff0000ff");
698             result->set("pad", "10");
699         }
700         return result;
701     }
702     /*Mlt::Properties src_props(source->get_properties());
703     Mlt::Properties props(result->get_properties());
704     props.inherit(src_props);*/
705     return result;
706 }
707
708 void DocClipBase::setProducerProperty(const char *name, int data)
709 {
710     QMutexLocker locker(&m_producerMutex);
711     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
712         if (m_baseTrackProducers.at(i) != NULL)
713             m_baseTrackProducers[i]->set(name, data);
714     }
715 }
716
717 void DocClipBase::setProducerProperty(const char *name, double data)
718 {
719     QMutexLocker locker(&m_producerMutex);
720     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
721         if (m_baseTrackProducers.at(i) != NULL)
722             m_baseTrackProducers[i]->set(name, data);
723     }
724 }
725
726 void DocClipBase::setProducerProperty(const char *name, const char *data)
727 {
728     QMutexLocker locker(&m_producerMutex);
729     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
730         if (m_baseTrackProducers.at(i) != NULL)
731             m_baseTrackProducers[i]->set(name, data);
732     }
733 }
734
735 void DocClipBase::resetProducerProperty(const char *name)
736 {
737     QMutexLocker locker(&m_producerMutex);
738     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
739         if (m_baseTrackProducers.at(i) != NULL)
740             m_baseTrackProducers[i]->set(name, (const char*) NULL);
741     }
742 }
743
744 const char *DocClipBase::producerProperty(const char *name) const
745 {
746     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
747         if (m_baseTrackProducers.at(i) != NULL) {
748             return m_baseTrackProducers.at(i)->get(name);
749         }
750     }
751     return NULL;
752 }
753
754
755 void DocClipBase::slotRefreshProducer()
756 {
757     if (m_baseTrackProducers.count() == 0) return;
758     if (m_clipType == SLIDESHOW) {
759         setProducerProperty("ttl", getProperty("ttl").toInt());
760         //m_clipProducer->set("id", getProperty("id"));
761         if (!getProperty("animation").isEmpty()) {
762             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
763             int ct = 0;
764             Mlt::Filter *filter = clipService.filter(ct);
765             while (filter) {
766                 if (strcmp(filter->get("mlt_service"), "affine") == 0) {
767                     break;
768                 } else if (strcmp(filter->get("mlt_service"), "boxblur") == 0) {
769                     clipService.detach(*filter);
770                 } else ct++;
771                 filter = clipService.filter(ct);
772             }
773
774             if (!filter || strcmp(filter->get("mlt_service"), "affine")) {
775                 // filter does not exist, create it.
776                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "affine");
777                 if (filter && filter->is_valid()) {
778                     int cycle = getProperty("ttl").toInt();
779                     QString geometry = SlideshowClip::animationToGeometry(getProperty("animation"), cycle);
780                     if (!geometry.isEmpty()) {
781                         if (getProperty("animation").contains("low-pass")) {
782                             Mlt::Filter *blur = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "boxblur");
783                             if (blur && blur->is_valid())
784                                 clipService.attach(*blur);
785                         }
786                         filter->set("transition.geometry", geometry.toUtf8().data());
787                         filter->set("transition.cycle", cycle);
788                         clipService.attach(*filter);
789                     }
790                 }
791             }
792         } else {
793             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
794             int ct = 0;
795             Mlt::Filter *filter = clipService.filter(0);
796             while (filter) {
797                 if (strcmp(filter->get("mlt_service"), "affine") == 0 || strcmp(filter->get("mlt_service"), "boxblur") == 0) {
798                     clipService.detach(*filter);
799                 } else ct++;
800                 filter = clipService.filter(ct);
801             }
802         }
803         if (getProperty("fade") == "1") {
804             // we want a fade filter effect
805             kDebug() << "////////////   FADE WANTED";
806             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
807             int ct = 0;
808             Mlt::Filter *filter = clipService.filter(ct);
809             while (filter) {
810                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
811                     break;
812                 }
813                 ct++;
814                 filter = clipService.filter(ct);
815             }
816
817             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
818                 filter->set("cycle", getProperty("ttl").toInt());
819                 filter->set("duration", getProperty("luma_duration").toInt());
820                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
821                 if (!getProperty("softness").isEmpty()) {
822                     int soft = getProperty("softness").toInt();
823                     filter->set("luma.softness", (double) soft / 100.0);
824                 }
825             } else {
826                 // filter does not exist, create it...
827                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
828                 filter->set("cycle", getProperty("ttl").toInt());
829                 filter->set("duration", getProperty("luma_duration").toInt());
830                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
831                 if (!getProperty("softness").isEmpty()) {
832                     int soft = getProperty("softness").toInt();
833                     filter->set("luma.softness", (double) soft / 100.0);
834                 }
835                 clipService.attach(*filter);
836             }
837         } else {
838             kDebug() << "////////////   FADE NOT WANTED!!!";
839             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
840             int ct = 0;
841             Mlt::Filter *filter = clipService.filter(0);
842             while (filter) {
843                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
844                     clipService.detach(*filter);
845                 } else ct++;
846                 filter = clipService.filter(ct);
847             }
848         }
849         if (getProperty("crop") == "1") {
850             // we want a center crop filter effect
851             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
852             int ct = 0;
853             Mlt::Filter *filter = clipService.filter(ct);
854             while (filter) {
855                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
856                     break;
857                 }
858                 ct++;
859                 filter = clipService.filter(ct);
860             }
861
862             if (!filter || strcmp(filter->get("mlt_service"), "crop")) {
863                 // filter does not exist, create it...
864                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "crop");
865                 filter->set("center", 1);
866                 clipService.attach(*filter);
867             }
868         } else {
869             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
870             int ct = 0;
871             Mlt::Filter *filter = clipService.filter(0);
872             while (filter) {
873                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
874                     clipService.detach(*filter);
875                 } else ct++;
876                 filter = clipService.filter(ct);
877             }
878         }
879     }
880 }
881
882 void DocClipBase::setProperties(QMap <QString, QString> properties)
883 {
884     // changing clip type is not allowed
885     properties.remove("type");
886     QMapIterator<QString, QString> i(properties);
887     bool refreshProducer = false;
888     QStringList keys;
889     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness" << "crop" << "animation";
890     QString oldProxy = m_properties.value("proxy");
891     while (i.hasNext()) {
892         i.next();
893         setProperty(i.key(), i.value());
894         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
895     }
896     if (properties.contains("proxy")) {
897         QString value = properties.value("proxy");
898         // If value is "-", that means user manually disabled proxy on this clip
899         if (value.isEmpty() || value == "-") {
900             // reset proxy
901             emit abortProxy(m_id, oldProxy);
902         }
903         else {
904             emit createProxy(m_id);
905         }
906     }
907     if (refreshProducer) slotRefreshProducer();
908 }
909
910 void DocClipBase::setMetadata(QMap <QString, QString> properties)
911 {
912     QMapIterator<QString, QString> i(properties);
913     while (i.hasNext()) {
914         i.next();
915         if (i.value().isEmpty() && m_metadata.contains(i.key())) {
916             m_metadata.remove(i.key());
917         } else {
918             m_metadata.insert(i.key(), i.value());
919         }
920     }
921 }
922
923 QMap <QString, QString> DocClipBase::metadata() const
924 {
925     return m_metadata;
926 }
927
928 void DocClipBase::clearProperty(const QString &key)
929 {
930     m_properties.remove(key);
931 }
932
933 void DocClipBase::getFileHash(const QString &url)
934 {
935     if (m_clipType == SLIDESHOW) return;
936     QFile file(url);
937     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
938         QByteArray fileData;
939         QByteArray fileHash;
940         //kDebug() << "SETTING HASH of" << value;
941         m_properties.insert("file_size", QString::number(file.size()));
942         /*
943                * 1 MB = 1 second per 450 files (or faster)
944                * 10 MB = 9 seconds per 450 files (or faster)
945                */
946         if (file.size() > 1000000*2) {
947             fileData = file.read(1000000);
948             if (file.seek(file.size() - 1000000))
949                 fileData.append(file.readAll());
950         } else
951             fileData = file.readAll();
952         file.close();
953         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
954         m_properties.insert("file_hash", QString(fileHash.toHex()));
955     }
956 }
957
958 bool DocClipBase::checkHash() const
959 {
960     KUrl url = fileURL();
961     if (!url.isEmpty() && getClipHash() != getHash(url.path())) return false;
962     return true;
963 }
964
965 QString DocClipBase::getClipHash() const
966 {
967     QString hash;
968     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
969     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
970     else if (m_clipType == TEXT) hash = QCryptographicHash::hash(QString("title" + getId() + m_properties.value("xmldata")).toUtf8().data(), QCryptographicHash::Md5).toHex();
971     else {
972         if (m_properties.contains("file_hash")) hash = m_properties.value("file_hash");
973         if (hash.isEmpty()) hash = getHash(fileURL().path());
974         
975     }
976     return hash;
977 }
978
979 void DocClipBase::setPlaceHolder(bool place)
980 {
981     m_placeHolder = place;
982 }
983
984 // static
985 QString DocClipBase::getHash(const QString &path)
986 {
987     QFile file(path);
988     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
989         QByteArray fileData;
990         QByteArray fileHash;
991         /*
992                * 1 MB = 1 second per 450 files (or faster)
993                * 10 MB = 9 seconds per 450 files (or faster)
994                */
995         if (file.size() > 1000000*2) {
996             fileData = file.read(1000000);
997             if (file.seek(file.size() - 1000000))
998                 fileData.append(file.readAll());
999         } else
1000             fileData = file.readAll();
1001         file.close();
1002         return QCryptographicHash::hash(fileData, QCryptographicHash::Md5).toHex();
1003     }
1004     return QString();
1005 }
1006
1007 void DocClipBase::refreshThumbUrl()
1008 {
1009     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
1010 }
1011
1012 void DocClipBase::setProperty(const QString &key, const QString &value)
1013 {
1014     m_properties.insert(key, value);
1015     if (key == "resource") {
1016         getFileHash(value);
1017         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
1018     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
1019     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
1020     else if (key == "colour") {
1021         setProducerProperty("colour", value.toUtf8().data());
1022     } else if (key == "templatetext") {
1023         setProducerProperty("templatetext", value.toUtf8().data());
1024         setProducerProperty("force_reload", 1);
1025     } else if (key == "xmldata") {
1026         setProducerProperty("xmldata", value.toUtf8().data());
1027         setProducerProperty("force_reload", 1);
1028     } else if (key == "force_aspect_num") {
1029         if (value.isEmpty()) {
1030             m_properties.remove("force_aspect_num");
1031             resetProducerProperty("force_aspect_ratio");
1032         } else setProducerProperty("force_aspect_ratio", getPixelAspect(m_properties));
1033     } else if (key == "force_aspect_den") {
1034         if (value.isEmpty()) {
1035             m_properties.remove("force_aspect_den");
1036             resetProducerProperty("force_aspect_ratio");
1037         } else setProducerProperty("force_aspect_ratio", getPixelAspect(m_properties));
1038     } else if (key == "force_fps") {
1039         if (value.isEmpty()) {
1040             m_properties.remove("force_fps");
1041             resetProducerProperty("force_fps");
1042         } else setProducerProperty("force_fps", value.toDouble());
1043     } else if (key == "force_progressive") {
1044         if (value.isEmpty()) {
1045             m_properties.remove("force_progressive");
1046             resetProducerProperty("force_progressive");
1047         } else setProducerProperty("force_progressive", value.toInt());
1048     } else if (key == "force_tff") {
1049         if (value.isEmpty()) {
1050             m_properties.remove("force_tff");
1051             resetProducerProperty("force_tff");
1052         } else setProducerProperty("force_tff", value.toInt());
1053     } else if (key == "threads") {
1054         if (value.isEmpty()) {
1055             m_properties.remove("threads");
1056             setProducerProperty("threads", 1);
1057         } else setProducerProperty("threads", value.toInt());
1058     } else if (key == "video_index") {
1059         if (value.isEmpty()) {
1060             m_properties.remove("video_index");
1061             setProducerProperty("video_index", m_properties.value("default_video").toInt());
1062         } else setProducerProperty("video_index", value.toInt());
1063     } else if (key == "audio_index") {
1064         if (value.isEmpty()) {
1065             m_properties.remove("audio_index");
1066             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
1067         } else setProducerProperty("audio_index", value.toInt());
1068     } else if (key == "force_colorspace") {
1069         if (value.isEmpty()) {
1070             m_properties.remove("force_colorspace");
1071             resetProducerProperty("force_colorspace");
1072         } else setProducerProperty("force_colorspace", value.toInt());
1073     } else if (key == "full_luma") {
1074         if (value.isEmpty()) {
1075             m_properties.remove("full_luma");
1076             resetProducerProperty("set.force_full_luma");
1077         } else setProducerProperty("set.force_full_luma", value.toInt());
1078     }
1079 }
1080
1081 QMap <QString, QString> DocClipBase::properties() const
1082 {
1083     return m_properties;
1084 }
1085
1086 bool DocClipBase::slotGetAudioThumbs()
1087 {
1088     if (m_thumbProd == NULL || isPlaceHolder()) return false;
1089     if (!KdenliveSettings::audiothumbnails() || m_audioTimer == NULL) {
1090         if (m_audioTimer != NULL) m_audioTimer->stop();
1091         return false;
1092     }
1093     if (m_audioThumbCreated) {
1094         m_audioTimer->stop();
1095         return false;
1096     }
1097     m_audioTimer->start(1500);
1098     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
1099     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
1100     return true;
1101 }
1102
1103 bool DocClipBase::isPlaceHolder() const
1104 {
1105     return m_placeHolder;
1106 }
1107
1108 void DocClipBase::addCutZone(int in, int out, QString desc)
1109 {
1110     CutZoneInfo info;
1111     info.zone = QPoint(in, out);
1112     info.description = desc;
1113     for (int i = 0; i < m_cutZones.count(); i++)
1114         if (m_cutZones.at(i).zone == info.zone) {
1115             return;
1116         }
1117     m_cutZones.append(info);
1118 }
1119
1120 bool DocClipBase::hasCutZone(QPoint p) const
1121 {
1122     for (int i = 0; i < m_cutZones.count(); i++)
1123         if (m_cutZones.at(i).zone == p) return true;
1124     return false;
1125 }
1126
1127
1128 void DocClipBase::removeCutZone(int in, int out)
1129 {
1130     QPoint p(in, out);
1131     for (int i = 0; i < m_cutZones.count(); i++) {
1132         if (m_cutZones.at(i).zone == p) {
1133             m_cutZones.removeAt(i);
1134             i--;
1135         }
1136     }
1137 }
1138
1139 void DocClipBase::updateCutZone(int oldin, int oldout, int in, int out, QString desc)
1140 {
1141     QPoint old(oldin, oldout);
1142     for (int i = 0; i < m_cutZones.size(); ++i) {
1143         if (m_cutZones.at(i).zone == old) {
1144             CutZoneInfo info;
1145             info.zone = QPoint(in, out);
1146             info.description = desc;
1147             m_cutZones.replace(i, info);
1148             break;
1149         }
1150     }
1151 }
1152
1153 QList <CutZoneInfo> DocClipBase::cutZones() const
1154 {
1155     return m_cutZones;
1156 }
1157
1158 bool DocClipBase::hasVideoCodec(const QString &codec) const
1159 {
1160     Mlt::Producer *prod = NULL;
1161     if (m_baseTrackProducers.count() == 0) return false;
1162     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1163         if (m_baseTrackProducers.at(i) != NULL) {
1164             prod = m_baseTrackProducers.at(i);
1165             break;
1166         }
1167     }
1168
1169     if (!prod) return false;
1170     int default_video = prod->get_int("video_index");
1171     char property[200];
1172     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1173     return prod->get(property) == codec;
1174 }
1175
1176 bool DocClipBase::hasAudioCodec(const QString &codec) const
1177 {
1178     Mlt::Producer *prod = NULL;
1179     if (m_baseTrackProducers.count() == 0) return false;
1180     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1181         if (m_baseTrackProducers.at(i) != NULL) {
1182             prod = m_baseTrackProducers.at(i);
1183             break;
1184         }
1185     }
1186     if (!prod) return false;
1187     int default_video = prod->get_int("audio_index");
1188     char property[200];
1189     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1190     return prod->get(property) == codec;
1191 }
1192
1193
1194 void DocClipBase::slotExtractImage(int frame, int frame2)
1195 {
1196     if (m_thumbProd == NULL) return;
1197     m_thumbProd->extractImage(frame, frame2);
1198 }
1199
1200 QPixmap DocClipBase::extractImage(int frame, int width, int height)
1201 {
1202     if (m_thumbProd == NULL) return QPixmap(width, height);
1203     QMutexLocker locker(&m_producerMutex);
1204     QPixmap p = m_thumbProd->extractImage(frame, width, height);
1205     return p;
1206 }
1207
1208