]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Fix some avformat producer concurrency crashes
[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     qDeleteAll(m_toDeleteProducers);
447     m_toDeleteProducers.clear();
448     m_replaceMutex.unlock();
449 }
450
451 bool DocClipBase::isClean() const
452 {
453     return m_toDeleteProducers.isEmpty();
454 }
455
456 void DocClipBase::setValid()
457 {
458     m_placeHolder = false;
459 }
460
461 void DocClipBase::setProducer(Mlt::Producer *producer, bool reset, bool readPropertiesFromProducer)
462 {
463     if (producer == NULL) return;
464     if (reset) {
465         QMutexLocker locker(&m_producerMutex);
466         m_replaceMutex.lock();
467         deleteProducers();
468     }
469     QString id = producer->get("id");
470     if (m_placeHolder || !producer->is_valid()) {
471         char *tmp = qstrdup(i18n("Missing clip").toUtf8().constData());
472         producer->set("markup", tmp);
473         producer->set("bgcolour", "0xff0000ff");
474         producer->set("pad", "10");
475         delete[] tmp;
476     }
477     else if (m_thumbProd && !m_thumbProd->hasProducer()) {
478         if (m_clipType != AUDIO) {
479             if (!id.endsWith("_audio"))
480                 m_thumbProd->setProducer(producer);
481         }
482         else m_thumbProd->setProducer(producer);
483     }
484     bool updated = false;
485     if (id.contains('_')) {
486         // this is a subtrack producer, insert it at correct place
487         id = id.section('_', 1);
488         if (id.endsWith("audio")) {
489             int pos = id.section('_', 0, 0).toInt();
490             if (pos >= m_audioTrackProducers.count()) {
491                 while (m_audioTrackProducers.count() - 1 < pos) {
492                     m_audioTrackProducers.append(NULL);
493                 }
494             }
495             if (m_audioTrackProducers.at(pos) == NULL) {
496                 m_audioTrackProducers[pos] = producer;
497                 updated = true;
498             }
499             return;
500         } else if (id.endsWith("video")) {
501             if (m_videoOnlyProducer == NULL) {
502                 m_videoOnlyProducer = producer;
503                 updated = true;
504             }
505             return;
506         }
507         int pos = id.toInt();
508         if (pos >= m_baseTrackProducers.count()) {
509             while (m_baseTrackProducers.count() - 1 < pos) {
510                 m_baseTrackProducers.append(NULL);
511             }
512         }
513         if (m_baseTrackProducers.at(pos) == NULL) {
514             m_baseTrackProducers[pos] = producer;
515             updated = true;
516         }
517     } else {
518         if (m_baseTrackProducers.isEmpty()) {
519             m_baseTrackProducers.append(producer);
520             updated = true;
521         }
522         else if (m_baseTrackProducers.at(0) == NULL) {
523             m_baseTrackProducers[0] = producer;
524             updated = true;
525         }
526     }
527     if (updated && readPropertiesFromProducer && (m_clipType != COLOR && m_clipType != IMAGE && m_clipType != TEXT))
528         setDuration(GenTime(producer->get_length(), KdenliveSettings::project_fps()));
529 }
530
531 static double getPixelAspect(QMap<QString, QString>& props) {
532     int width = props.value("frame_size").section('x', 0, 0).toInt();
533     int height = props.value("frame_size").section('x', 1, 1).toInt();
534     int aspectNumerator = props.value("force_aspect_num").toInt();
535     int aspectDenominator = props.value("force_aspect_den").toInt();
536     if (aspectDenominator != 0 && width != 0)
537         return double(height) * aspectNumerator / aspectDenominator / width;    
538     else
539         return 1.0;
540 }
541
542 Mlt::Producer *DocClipBase::audioProducer(int track)
543 {
544     QMutexLocker locker(&m_producerMutex);
545     if (m_audioTrackProducers.count() <= track) {
546         while (m_audioTrackProducers.count() - 1 < track) {
547             m_audioTrackProducers.append(NULL);
548         }
549     }
550     if (m_audioTrackProducers.at(track) == NULL) {
551         int i;
552         for (i = 0; i < m_audioTrackProducers.count(); i++)
553             if (m_audioTrackProducers.at(i) != NULL) break;
554         Mlt::Producer *base;
555         if (i >= m_audioTrackProducers.count()) {
556             // Could not find a valid producer for that clip
557             locker.unlock();
558             base = getProducer();
559             if (base == NULL) {
560                 return NULL;
561             }
562             locker.relock();
563         }
564         else base = m_audioTrackProducers.at(i);
565         m_audioTrackProducers[track] = cloneProducer(base);
566         adjustProducerProperties(m_audioTrackProducers.at(track), QString(getId() + '_' + QString::number(track) + "_audio"), false, true);
567     }
568     return m_audioTrackProducers.at(track);
569 }
570
571
572 void DocClipBase::adjustProducerProperties(Mlt::Producer *prod, const QString &id, bool mute, bool blind)
573 {
574         if (m_properties.contains("force_aspect_num") && m_properties.contains("force_aspect_den") && m_properties.contains("frame_size"))
575             prod->set("force_aspect_ratio", getPixelAspect(m_properties));
576         if (m_properties.contains("force_fps")) prod->set("force_fps", m_properties.value("force_fps").toDouble());
577         if (m_properties.contains("force_progressive")) prod->set("force_progressive", m_properties.value("force_progressive").toInt());
578         if (m_properties.contains("force_tff")) prod->set("force_tff", m_properties.value("force_tff").toInt());
579         if (m_properties.contains("threads")) prod->set("threads", m_properties.value("threads").toInt());
580         if (mute) prod->set("audio_index", -1);
581         else if (m_properties.contains("audio_index")) prod->set("audio_index", m_properties.value("audio_index").toInt());
582         if (blind) prod->set("video_index", -1);
583         else if (m_properties.contains("video_index")) prod->set("video_index", m_properties.value("video_index").toInt());
584         prod->set("id", id.toUtf8().constData());
585         if (m_properties.contains("force_colorspace")) prod->set("force_colorspace", m_properties.value("force_colorspace").toInt());
586         if (m_properties.contains("full_luma")) prod->set("set.force_full_luma", m_properties.value("full_luma").toInt());
587         if (m_properties.contains("proxy_out")) {
588             // We have a proxy clip, make sure the proxy has same duration as original
589             prod->set("length", m_properties.value("duration").toInt());
590             prod->set("out", m_properties.value("proxy_out").toInt());
591         }
592
593 }
594
595 Mlt::Producer *DocClipBase::videoProducer()
596 {
597     QMutexLocker locker(&m_producerMutex);
598     if (m_videoOnlyProducer == NULL) {
599         int i;
600         for (i = 0; i < m_baseTrackProducers.count(); i++)
601             if (m_baseTrackProducers.at(i) != NULL) break;
602         if (i >= m_baseTrackProducers.count()) return NULL;
603         m_videoOnlyProducer = cloneProducer(m_baseTrackProducers.at(i));
604         adjustProducerProperties(m_videoOnlyProducer, QString(getId() + "_video"), true, false);
605     }
606     return m_videoOnlyProducer;
607 }
608
609 Mlt::Producer *DocClipBase::getProducer(int track)
610 {
611     QMutexLocker locker(&m_producerMutex);
612     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV && m_clipType != PLAYLIST)) {
613         if (m_baseTrackProducers.count() == 0) {
614             return NULL;
615         }
616         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
617             if (m_baseTrackProducers.at(i) != NULL) {
618                 return m_baseTrackProducers.at(i);
619             }
620         }
621         return NULL;
622     }
623     if (track >= m_baseTrackProducers.count()) {
624         while (m_baseTrackProducers.count() - 1 < track) {
625             m_baseTrackProducers.append(NULL);
626         }
627     }
628     if (m_baseTrackProducers.at(track) == NULL) {
629         int i;
630         for (i = 0; i < m_baseTrackProducers.count(); i++)
631             if (m_baseTrackProducers.at(i) != NULL) break;
632
633         if (i >= m_baseTrackProducers.count()) {
634             // Could not find a valid producer for that clip, check in 
635             return NULL;
636         }
637         m_baseTrackProducers[track] = cloneProducer(m_baseTrackProducers.at(i));
638         adjustProducerProperties(m_baseTrackProducers.at(track), QString(getId() + '_' + QString::number(track)), false, false);
639     }
640     return m_baseTrackProducers.at(track);
641 }
642
643
644 Mlt::Producer *DocClipBase::cloneProducer(Mlt::Producer *source)
645 {
646     Mlt::Producer *result = NULL;
647     QString url = QString::fromUtf8(source->get("resource"));
648     if (KIO::NetAccess::exists(KUrl(url), KIO::NetAccess::SourceSide, 0)) {
649         result = new Mlt::Producer(*(source->profile()), url.toUtf8().constData());
650     }
651     if (result == NULL || !result->is_valid()) {
652         // placeholder clip
653         QString txt = "+" + i18n("Missing clip") + ".txt";
654         char *tmp = qstrdup(txt.toUtf8().constData());
655         result = new Mlt::Producer(*source->profile(), tmp);
656         delete[] tmp;
657         if (result == NULL || !result->is_valid())
658             result = new Mlt::Producer(*(source->profile()), "colour:red");
659         else {
660             result->set("bgcolour", "0xff0000ff");
661             result->set("pad", "10");
662         }
663         return result;
664     }
665     /*Mlt::Properties src_props(source->get_properties());
666     Mlt::Properties props(result->get_properties());
667     props.inherit(src_props);*/
668     return result;
669 }
670
671 void DocClipBase::setProducerProperty(const char *name, int data)
672 {
673     QMutexLocker locker(&m_producerMutex);
674     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
675         if (m_baseTrackProducers.at(i) != NULL)
676             m_baseTrackProducers[i]->set(name, data);
677     }
678 }
679
680 void DocClipBase::setProducerProperty(const char *name, double data)
681 {
682     QMutexLocker locker(&m_producerMutex);
683     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
684         if (m_baseTrackProducers.at(i) != NULL)
685             m_baseTrackProducers[i]->set(name, data);
686     }
687 }
688
689 void DocClipBase::setProducerProperty(const char *name, const char *data)
690 {
691     QMutexLocker locker(&m_producerMutex);
692     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
693         if (m_baseTrackProducers.at(i) != NULL)
694             m_baseTrackProducers[i]->set(name, data);
695     }
696 }
697
698 void DocClipBase::resetProducerProperty(const char *name)
699 {
700     QMutexLocker locker(&m_producerMutex);
701     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
702         if (m_baseTrackProducers.at(i) != NULL)
703             m_baseTrackProducers[i]->set(name, (const char*) NULL);
704     }
705 }
706
707 const char *DocClipBase::producerProperty(const char *name) const
708 {
709     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
710         if (m_baseTrackProducers.at(i) != NULL) {
711             return m_baseTrackProducers.at(i)->get(name);
712         }
713     }
714     return NULL;
715 }
716
717
718 void DocClipBase::slotRefreshProducer()
719 {
720     if (m_baseTrackProducers.count() == 0) return;
721     if (m_clipType == SLIDESHOW) {
722         setProducerProperty("ttl", getProperty("ttl").toInt());
723         //m_clipProducer->set("id", getProperty("id"));
724         if (!getProperty("animation").isEmpty()) {
725             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
726             int ct = 0;
727             Mlt::Filter *filter = clipService.filter(ct);
728             while (filter) {
729                 if (strcmp(filter->get("mlt_service"), "affine") == 0) {
730                     break;
731                 } else if (strcmp(filter->get("mlt_service"), "boxblur") == 0) {
732                     clipService.detach(*filter);
733                 } else ct++;
734                 filter = clipService.filter(ct);
735             }
736
737             if (!filter || strcmp(filter->get("mlt_service"), "affine")) {
738                 // filter does not exist, create it.
739                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "affine");
740                 if (filter && filter->is_valid()) {
741                     int cycle = getProperty("ttl").toInt();
742                     QString geometry = SlideshowClip::animationToGeometry(getProperty("animation"), cycle);
743                     if (!geometry.isEmpty()) {
744                         if (getProperty("animation").contains("low-pass")) {
745                             Mlt::Filter *blur = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "boxblur");
746                             if (blur && blur->is_valid())
747                                 clipService.attach(*blur);
748                         }
749                         filter->set("transition.geometry", geometry.toUtf8().data());
750                         filter->set("transition.cycle", cycle);
751                         clipService.attach(*filter);
752                     }
753                 }
754             }
755         } else {
756             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
757             int ct = 0;
758             Mlt::Filter *filter = clipService.filter(0);
759             while (filter) {
760                 if (strcmp(filter->get("mlt_service"), "affine") == 0 || strcmp(filter->get("mlt_service"), "boxblur") == 0) {
761                     clipService.detach(*filter);
762                 } else ct++;
763                 filter = clipService.filter(ct);
764             }
765         }
766         if (getProperty("fade") == "1") {
767             // we want a fade filter effect
768             kDebug() << "////////////   FADE WANTED";
769             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
770             int ct = 0;
771             Mlt::Filter *filter = clipService.filter(ct);
772             while (filter) {
773                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
774                     break;
775                 }
776                 ct++;
777                 filter = clipService.filter(ct);
778             }
779
780             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
781                 filter->set("cycle", getProperty("ttl").toInt());
782                 filter->set("duration", getProperty("luma_duration").toInt());
783                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
784                 if (!getProperty("softness").isEmpty()) {
785                     int soft = getProperty("softness").toInt();
786                     filter->set("luma.softness", (double) soft / 100.0);
787                 }
788             } else {
789                 // filter does not exist, create it...
790                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
791                 filter->set("cycle", getProperty("ttl").toInt());
792                 filter->set("duration", getProperty("luma_duration").toInt());
793                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
794                 if (!getProperty("softness").isEmpty()) {
795                     int soft = getProperty("softness").toInt();
796                     filter->set("luma.softness", (double) soft / 100.0);
797                 }
798                 clipService.attach(*filter);
799             }
800         } else {
801             kDebug() << "////////////   FADE NOT WANTED!!!";
802             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
803             int ct = 0;
804             Mlt::Filter *filter = clipService.filter(0);
805             while (filter) {
806                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
807                     clipService.detach(*filter);
808                 } else ct++;
809                 filter = clipService.filter(ct);
810             }
811         }
812         if (getProperty("crop") == "1") {
813             // we want a center crop filter effect
814             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
815             int ct = 0;
816             Mlt::Filter *filter = clipService.filter(ct);
817             while (filter) {
818                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
819                     break;
820                 }
821                 ct++;
822                 filter = clipService.filter(ct);
823             }
824
825             if (!filter || strcmp(filter->get("mlt_service"), "crop")) {
826                 // filter does not exist, create it...
827                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "crop");
828                 filter->set("center", 1);
829                 clipService.attach(*filter);
830             }
831         } else {
832             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
833             int ct = 0;
834             Mlt::Filter *filter = clipService.filter(0);
835             while (filter) {
836                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
837                     clipService.detach(*filter);
838                 } else ct++;
839                 filter = clipService.filter(ct);
840             }
841         }
842     }
843 }
844
845 void DocClipBase::setProperties(QMap <QString, QString> properties)
846 {
847     // changing clip type is not allowed
848     properties.remove("type");
849     QMapIterator<QString, QString> i(properties);
850     bool refreshProducer = false;
851     QStringList keys;
852     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness" << "crop" << "animation";
853     QString oldProxy = m_properties.value("proxy");
854     while (i.hasNext()) {
855         i.next();
856         setProperty(i.key(), i.value());
857         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
858     }
859     if (properties.contains("proxy")) {
860         QString value = properties.value("proxy");
861         // If value is "-", that means user manually disabled proxy on this clip
862         if (value.isEmpty() || value == "-") {
863             // reset proxy
864             emit abortProxy(m_id, oldProxy);
865         }
866         else {
867             emit createProxy(m_id);
868         }
869     }
870     if (refreshProducer) slotRefreshProducer();
871 }
872
873 void DocClipBase::setMetadata(QMap <QString, QString> properties)
874 {
875     QMapIterator<QString, QString> i(properties);
876     while (i.hasNext()) {
877         i.next();
878         if (i.value().isEmpty() && m_metadata.contains(i.key())) {
879             m_metadata.remove(i.key());
880         } else {
881             m_metadata.insert(i.key(), i.value());
882         }
883     }
884 }
885
886 QMap <QString, QString> DocClipBase::metadata() const
887 {
888     return m_metadata;
889 }
890
891 void DocClipBase::clearProperty(const QString &key)
892 {
893     m_properties.remove(key);
894 }
895
896 void DocClipBase::getFileHash(const QString &url)
897 {
898     if (m_clipType == SLIDESHOW) return;
899     QFile file(url);
900     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
901         QByteArray fileData;
902         QByteArray fileHash;
903         //kDebug() << "SETTING HASH of" << value;
904         m_properties.insert("file_size", QString::number(file.size()));
905         /*
906                * 1 MB = 1 second per 450 files (or faster)
907                * 10 MB = 9 seconds per 450 files (or faster)
908                */
909         if (file.size() > 1000000*2) {
910             fileData = file.read(1000000);
911             if (file.seek(file.size() - 1000000))
912                 fileData.append(file.readAll());
913         } else
914             fileData = file.readAll();
915         file.close();
916         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
917         m_properties.insert("file_hash", QString(fileHash.toHex()));
918     }
919 }
920
921 bool DocClipBase::checkHash() const
922 {
923     KUrl url = fileURL();
924     if (!url.isEmpty() && getClipHash() != getHash(url.path())) return false;
925     return true;
926 }
927
928 QString DocClipBase::getClipHash() const
929 {
930     QString hash;
931     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
932     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
933     else if (m_clipType == TEXT) hash = QCryptographicHash::hash(QString("title" + getId() + m_properties.value("xmldata")).toUtf8().data(), QCryptographicHash::Md5).toHex();
934     else {
935         if (m_properties.contains("file_hash")) hash = m_properties.value("file_hash");
936         if (hash.isEmpty()) hash = getHash(fileURL().path());
937         
938     }
939     return hash;
940 }
941
942 void DocClipBase::setPlaceHolder(bool place)
943 {
944     m_placeHolder = place;
945 }
946
947 // static
948 QString DocClipBase::getHash(const QString &path)
949 {
950     QFile file(path);
951     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
952         QByteArray fileData;
953         QByteArray fileHash;
954         /*
955                * 1 MB = 1 second per 450 files (or faster)
956                * 10 MB = 9 seconds per 450 files (or faster)
957                */
958         if (file.size() > 1000000*2) {
959             fileData = file.read(1000000);
960             if (file.seek(file.size() - 1000000))
961                 fileData.append(file.readAll());
962         } else
963             fileData = file.readAll();
964         file.close();
965         return QCryptographicHash::hash(fileData, QCryptographicHash::Md5).toHex();
966     }
967     return QString();
968 }
969
970 void DocClipBase::refreshThumbUrl()
971 {
972     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
973 }
974
975 void DocClipBase::setProperty(const QString &key, const QString &value)
976 {
977     m_properties.insert(key, value);
978     if (key == "resource") {
979         getFileHash(value);
980         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
981     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
982     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
983     else if (key == "colour") {
984         setProducerProperty("colour", value.toUtf8().data());
985     } else if (key == "templatetext") {
986         setProducerProperty("templatetext", value.toUtf8().data());
987         setProducerProperty("force_reload", 1);
988     } else if (key == "xmldata") {
989         setProducerProperty("xmldata", value.toUtf8().data());
990         setProducerProperty("force_reload", 1);
991     } else if (key == "force_aspect_num") {
992         if (value.isEmpty()) {
993             m_properties.remove("force_aspect_num");
994             resetProducerProperty("force_aspect_ratio");
995         } else setProducerProperty("force_aspect_ratio", getPixelAspect(m_properties));
996     } else if (key == "force_aspect_den") {
997         if (value.isEmpty()) {
998             m_properties.remove("force_aspect_den");
999             resetProducerProperty("force_aspect_ratio");
1000         } else setProducerProperty("force_aspect_ratio", getPixelAspect(m_properties));
1001     } else if (key == "force_fps") {
1002         if (value.isEmpty()) {
1003             m_properties.remove("force_fps");
1004             resetProducerProperty("force_fps");
1005         } else setProducerProperty("force_fps", value.toDouble());
1006     } else if (key == "force_progressive") {
1007         if (value.isEmpty()) {
1008             m_properties.remove("force_progressive");
1009             resetProducerProperty("force_progressive");
1010         } else setProducerProperty("force_progressive", value.toInt());
1011     } else if (key == "force_tff") {
1012         if (value.isEmpty()) {
1013             m_properties.remove("force_tff");
1014             resetProducerProperty("force_tff");
1015         } else setProducerProperty("force_tff", value.toInt());
1016     } else if (key == "threads") {
1017         if (value.isEmpty()) {
1018             m_properties.remove("threads");
1019             setProducerProperty("threads", 1);
1020         } else setProducerProperty("threads", value.toInt());
1021     } else if (key == "video_index") {
1022         if (value.isEmpty()) {
1023             m_properties.remove("video_index");
1024             setProducerProperty("video_index", m_properties.value("default_video").toInt());
1025         } else setProducerProperty("video_index", value.toInt());
1026     } else if (key == "audio_index") {
1027         if (value.isEmpty()) {
1028             m_properties.remove("audio_index");
1029             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
1030         } else setProducerProperty("audio_index", value.toInt());
1031     } else if (key == "force_colorspace") {
1032         if (value.isEmpty()) {
1033             m_properties.remove("force_colorspace");
1034             resetProducerProperty("force_colorspace");
1035         } else setProducerProperty("force_colorspace", value.toInt());
1036     } else if (key == "full_luma") {
1037         if (value.isEmpty()) {
1038             m_properties.remove("full_luma");
1039             resetProducerProperty("set.force_full_luma");
1040         } else setProducerProperty("set.force_full_luma", value.toInt());
1041     }
1042 }
1043
1044 QMap <QString, QString> DocClipBase::properties() const
1045 {
1046     return m_properties;
1047 }
1048
1049 bool DocClipBase::slotGetAudioThumbs()
1050 {
1051     if (m_thumbProd == NULL || isPlaceHolder()) return false;
1052     if (!KdenliveSettings::audiothumbnails() || m_audioTimer == NULL) {
1053         if (m_audioTimer != NULL) m_audioTimer->stop();
1054         return false;
1055     }
1056     if (m_audioThumbCreated) {
1057         m_audioTimer->stop();
1058         return false;
1059     }
1060     m_audioTimer->start(1500);
1061     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
1062     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
1063     return true;
1064 }
1065
1066 bool DocClipBase::isPlaceHolder() const
1067 {
1068     return m_placeHolder;
1069 }
1070
1071 void DocClipBase::addCutZone(int in, int out, QString desc)
1072 {
1073     CutZoneInfo info;
1074     info.zone = QPoint(in, out);
1075     info.description = desc;
1076     for (int i = 0; i < m_cutZones.count(); i++)
1077         if (m_cutZones.at(i).zone == info.zone) {
1078             return;
1079         }
1080     m_cutZones.append(info);
1081 }
1082
1083 bool DocClipBase::hasCutZone(QPoint p) const
1084 {
1085     for (int i = 0; i < m_cutZones.count(); i++)
1086         if (m_cutZones.at(i).zone == p) return true;
1087     return false;
1088 }
1089
1090
1091 void DocClipBase::removeCutZone(int in, int out)
1092 {
1093     QPoint p(in, out);
1094     for (int i = 0; i < m_cutZones.count(); i++) {
1095         if (m_cutZones.at(i).zone == p) {
1096             m_cutZones.removeAt(i);
1097             i--;
1098         }
1099     }
1100 }
1101
1102 void DocClipBase::updateCutZone(int oldin, int oldout, int in, int out, QString desc)
1103 {
1104     QPoint old(oldin, oldout);
1105     for (int i = 0; i < m_cutZones.size(); ++i) {
1106         if (m_cutZones.at(i).zone == old) {
1107             CutZoneInfo info;
1108             info.zone = QPoint(in, out);
1109             info.description = desc;
1110             m_cutZones.replace(i, info);
1111             break;
1112         }
1113     }
1114 }
1115
1116 QList <CutZoneInfo> DocClipBase::cutZones() const
1117 {
1118     return m_cutZones;
1119 }
1120
1121 bool DocClipBase::hasVideoCodec(const QString &codec) const
1122 {
1123     Mlt::Producer *prod = NULL;
1124     if (m_baseTrackProducers.count() == 0) return false;
1125     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1126         if (m_baseTrackProducers.at(i) != NULL) {
1127             prod = m_baseTrackProducers.at(i);
1128             break;
1129         }
1130     }
1131
1132     if (!prod) return false;
1133     int default_video = prod->get_int("video_index");
1134     char property[200];
1135     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1136     return prod->get(property) == codec;
1137 }
1138
1139 bool DocClipBase::hasAudioCodec(const QString &codec) const
1140 {
1141     Mlt::Producer *prod = NULL;
1142     if (m_baseTrackProducers.count() == 0) return false;
1143     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1144         if (m_baseTrackProducers.at(i) != NULL) {
1145             prod = m_baseTrackProducers.at(i);
1146             break;
1147         }
1148     }
1149     if (!prod) return false;
1150     int default_video = prod->get_int("audio_index");
1151     char property[200];
1152     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1153     return prod->get(property) == codec;
1154 }
1155
1156
1157 void DocClipBase::slotExtractImage(int frame, int frame2)
1158 {
1159     if (m_thumbProd == NULL) return;
1160     m_thumbProd->extractImage(frame, frame2);
1161 }
1162
1163 QPixmap DocClipBase::extractImage(int frame, int width, int height)
1164 {
1165     if (m_thumbProd == NULL) return QPixmap(width, height);
1166     QMutexLocker locker(&m_producerMutex);
1167     QPixmap p = m_thumbProd->extractImage(frame, width, height);
1168     return p;
1169 }
1170
1171