]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
reindent + nice (working) progress bar for document loading
[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
32 #include <KIO/NetAccess>
33 #include <KDebug>
34
35 #include <QCryptographicHash>
36
37 DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QString &id) :
38         QObject(),
39         m_audioFrameCache(),
40         m_refcount(0),
41         m_baseTrackProducers(),
42         m_audioTrackProducers(),
43         m_videoOnlyProducer(NULL),
44         m_snapMarkers(),
45         m_duration(),
46         m_audioTimer(NULL),
47         m_thumbProd(NULL),
48         m_audioThumbCreated(false),
49         m_id(id),
50         m_placeHolder(xml.hasAttribute("placeholder")),
51         m_properties()
52 {
53     int type = xml.attribute("type").toInt();
54     m_clipType = (CLIPTYPE) type;
55     if (m_placeHolder) xml.removeAttribute("placeholder");
56     QDomNamedNodeMap attributes = xml.attributes();
57     for (int i = 0; i < attributes.count(); i++) {
58         m_properties.insert(attributes.item(i).nodeName(), attributes.item(i).nodeValue());
59     }
60
61     KUrl url = KUrl(xml.attribute("resource"));
62     if (!m_properties.contains("file_hash") && !url.isEmpty()) getFileHash(url.path());
63
64     if (xml.hasAttribute("duration")) {
65         setDuration(GenTime(xml.attribute("duration").toInt(), KdenliveSettings::project_fps()));
66     } else {
67         int out = xml.attribute("out").toInt();
68         int in = xml.attribute("in").toInt();
69         setDuration(GenTime(out - in, KdenliveSettings::project_fps()));
70     }
71
72     if (!m_properties.contains("name")) m_properties.insert("name", url.fileName());
73
74     //if (!url.isEmpty() && QFile::exists(url.path()))
75     {
76         m_thumbProd = new KThumb(clipManager, url, m_id, m_properties.value("file_hash"));
77         if (m_clipType == AV || m_clipType == AUDIO) slotCreateAudioTimer();
78     }
79     //kDebug() << "type is video" << (m_clipType == AV) << " " << m_clipType;
80 }
81
82 /*DocClipBase & DocClipBase::operator=(const DocClipBase & clip) {
83     DocClipBase::operator=(clip);
84     m_id = clip.getId();
85     m_clipType = clip.clipType();
86     m_name = clip.name();
87     m_duration = clip.duration();
88     m_audioThumbCreated = clip.audioThumbCreated();
89     m_properties = clip.properties();
90     return *this;
91 }*/
92
93 DocClipBase::~DocClipBase()
94 {
95     kDebug() << "CLIP " << m_id << " DELETED******************************";
96     delete m_thumbProd;
97     if (m_audioTimer) {
98         m_audioTimer->stop();
99         delete m_audioTimer;
100     }
101     /*kDebug() <<" * * *CNT "<<m_baseTrackProducers.count();
102     if (m_baseTrackProducers.count() > 0) kDebug()<<"YOYO: "<<m_baseTrackProducers.at(0)->get_out()<<", CUT: "<<m_baseTrackProducers.at(0)->is_cut();*/
103     qDeleteAll(m_baseTrackProducers);
104     m_baseTrackProducers.clear();
105     qDeleteAll(m_audioTrackProducers);
106     m_audioTrackProducers.clear();
107     delete m_videoOnlyProducer;
108     m_videoOnlyProducer = NULL;
109 }
110
111 void DocClipBase::setZone(QPoint zone)
112 {
113     m_properties.insert("zone_in", QString::number(zone.x()));
114     m_properties.insert("zone_out", QString::number(zone.y()));
115 }
116
117 QPoint DocClipBase::zone() const
118 {
119     QPoint zone;
120     zone.setX(m_properties.value("zone_in").toInt());
121     zone.setY(m_properties.value("zone_out", "50").toInt());
122     return zone;
123 }
124
125 void DocClipBase::slotCreateAudioTimer()
126 {
127     connect(m_thumbProd, SIGNAL(audioThumbReady(QMap <int, QMap <int, QByteArray> >)), this , SLOT(updateAudioThumbnail(QMap <int, QMap <int, QByteArray> >)));
128     connect(this, SIGNAL(getAudioThumbs()), this , SLOT(slotGetAudioThumbs()));
129     m_audioTimer = new QTimer(this);
130     connect(m_audioTimer, SIGNAL(timeout()), this, SLOT(slotGetAudioThumbs()));
131 }
132
133 void DocClipBase::askForAudioThumbs()
134 {
135     if (m_thumbProd) m_thumbProd->askForAudioThumbs(getId());
136 }
137
138 void DocClipBase::slotClearAudioCache()
139 {
140     if (m_thumbProd) m_thumbProd->stopAudioThumbs();
141     if (m_audioTimer != NULL) m_audioTimer->stop();
142     m_audioFrameCache.clear();
143     m_audioThumbCreated = false;
144 }
145
146 /*void DocClipBase::getClipMainThumb() {
147     if (m_thumbProd) m_thumbProd->getMainThumb(m_properties.value("thumbnail").toInt());
148 }*/
149
150 KThumb *DocClipBase::thumbProducer()
151 {
152     return m_thumbProd;
153 }
154
155 bool DocClipBase::audioThumbCreated() const
156 {
157     return m_audioThumbCreated;
158 }
159
160 const QString DocClipBase::name() const
161 {
162
163     return m_properties.value("name");
164 }
165
166 const QString &DocClipBase::getId() const
167 {
168     return m_id;
169 }
170
171 void DocClipBase::setId(const QString &newId)
172 {
173     m_id = newId;
174 }
175
176 const CLIPTYPE & DocClipBase::clipType() const
177 {
178     return m_clipType;
179 }
180
181 void DocClipBase::setClipType(CLIPTYPE type)
182 {
183     m_clipType = type;
184
185     m_properties.insert("type", QString::number((int) type));
186     if (m_thumbProd && m_audioTimer == NULL && (m_clipType == AV || m_clipType == AUDIO))
187         slotCreateAudioTimer();
188 }
189
190 KUrl DocClipBase::fileURL() const
191 {
192     QString res = m_properties.value("resource");
193     if (m_clipType != COLOR && !res.isEmpty()) return KUrl(res);
194     return KUrl();
195 }
196
197 void DocClipBase::setClipThumbFrame(const uint &ix)
198 {
199     m_properties.insert("thumbnail", QString::number((int) ix));
200 }
201
202 uint DocClipBase::getClipThumbFrame() const
203 {
204     return (uint) m_properties.value("thumbnail").toInt();
205 }
206
207 const QString DocClipBase::description() const
208 {
209     return m_properties.value("description");
210 }
211
212 bool DocClipBase::isTransparent() const
213 {
214     return (m_properties.value("transparency") == "1");
215 }
216
217 const QString DocClipBase::getProperty(const QString prop) const
218 {
219     return m_properties.value(prop);
220 }
221
222 void DocClipBase::setDuration(GenTime dur)
223 {
224     m_duration = dur;
225     m_properties.insert("duration", QString::number((int) dur.frames(KdenliveSettings::project_fps())));
226 }
227
228 const GenTime &DocClipBase::duration() const
229 {
230     return m_duration;
231 }
232
233 const GenTime DocClipBase::maxDuration() const
234 {
235     if (m_clipType == COLOR || m_clipType == IMAGE || m_clipType == TEXT || (m_clipType == SLIDESHOW &&  m_properties.value("loop") == "1")) {
236         /*const GenTime dur(15000, KdenliveSettings::project_fps());
237         return dur;*/
238         return GenTime();
239     }
240     return m_duration;
241 }
242
243 bool DocClipBase::hasFileSize() const
244 {
245     return true;
246 }
247
248 qulonglong DocClipBase::fileSize() const
249 {
250     return m_properties.value("file_size").toULongLong();
251 }
252
253 // virtual
254 QDomElement DocClipBase::toXML() const
255 {
256     QDomDocument doc;
257     QDomElement clip = doc.createElement("producer");
258
259     QMapIterator<QString, QString> i(m_properties);
260     while (i.hasNext()) {
261         i.next();
262         if (!i.value().isEmpty()) clip.setAttribute(i.key(), i.value());
263     }
264     doc.appendChild(clip);
265     //kDebug() << "/// CLIP XML: " << doc.toString();
266     return doc.documentElement();
267 }
268
269
270 void DocClipBase::setAudioThumbCreated(bool isDone)
271 {
272     m_audioThumbCreated = isDone;
273 }
274
275
276 void DocClipBase::setThumbnail(const QPixmap & pixmap)
277 {
278     m_thumbnail = pixmap;
279 }
280
281 const QPixmap & DocClipBase::thumbnail() const
282 {
283     return m_thumbnail;
284 }
285
286 void DocClipBase::updateAudioThumbnail(QMap<int, QMap<int, QByteArray> > data)
287 {
288     //kDebug() << "CLIPBASE RECIEDVED AUDIO DATA*********************************************";
289     m_audioFrameCache = data;
290     m_audioThumbCreated = true;
291     emit gotAudioData();
292 }
293
294 QList < GenTime > DocClipBase::snapMarkers() const
295 {
296     QList < GenTime > markers;
297
298     for (int count = 0; count < m_snapMarkers.count(); ++count) {
299         markers.append(m_snapMarkers.at(count).time());
300     }
301
302     return markers;
303 }
304
305 QList < CommentedTime > DocClipBase::commentedSnapMarkers() const
306 {
307     return m_snapMarkers;
308 }
309
310 void DocClipBase::setSnapMarkers(QList < CommentedTime > markers)
311 {
312     m_snapMarkers = markers;
313 }
314
315 void DocClipBase::addSnapMarker(const GenTime & time, QString comment)
316 {
317     QList < CommentedTime >::Iterator it = m_snapMarkers.begin();
318     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
319         if ((*it).time() >= time)
320             break;
321     }
322
323     if ((it != m_snapMarkers.end()) && ((*it).time() == time)) {
324         (*it).setComment(comment);
325         //kError() << "trying to add Snap Marker that already exists, this will cause inconsistancies with undo/redo";
326     } else {
327         CommentedTime t(time, comment);
328         m_snapMarkers.insert(it, t);
329     }
330
331 }
332
333 void DocClipBase::editSnapMarker(const GenTime & time, QString comment)
334 {
335     QList < CommentedTime >::Iterator it;
336     for (it = m_snapMarkers.begin(); it != m_snapMarkers.end(); ++it) {
337         if ((*it).time() == time)
338             break;
339     }
340     if (it != m_snapMarkers.end()) {
341         (*it).setComment(comment);
342     } else {
343         kError() << "trying to edit Snap Marker that does not already exists";
344     }
345 }
346
347 QString DocClipBase::deleteSnapMarker(const GenTime & time)
348 {
349     QString result = i18n("Marker");
350     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
351
352     while (itt != m_snapMarkers.end()) {
353         if ((*itt).time() == time)
354             break;
355         ++itt;
356     }
357
358     if ((itt != m_snapMarkers.end()) && ((*itt).time() == time)) {
359         result = (*itt).comment();
360         m_snapMarkers.erase(itt);
361     }
362     return result;
363 }
364
365
366 GenTime DocClipBase::hasSnapMarkers(const GenTime & time)
367 {
368     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
369
370     while (itt != m_snapMarkers.end()) {
371         if ((*itt).time() == time)
372             return time;
373         ++itt;
374     }
375
376     return GenTime(0.0);
377 }
378
379 GenTime DocClipBase::findPreviousSnapMarker(const GenTime & currTime)
380 {
381     int it;
382     for (it = 0; it < m_snapMarkers.count(); it++) {
383         if (m_snapMarkers.at(it).time() >= currTime)
384             break;
385     }
386     if (it == 0) return GenTime();
387     else if (it == m_snapMarkers.count() - 1 && m_snapMarkers.at(it).time() < currTime)
388         return m_snapMarkers.at(it).time();
389     else return m_snapMarkers.at(it -1).time();
390 }
391
392 GenTime DocClipBase::findNextSnapMarker(const GenTime & currTime)
393 {
394     int it;
395     for (it = 0; it < m_snapMarkers.count(); it++) {
396         if (m_snapMarkers.at(it).time() > currTime)
397             break;
398     }
399     if (it < m_snapMarkers.count() && m_snapMarkers.at(it).time() > currTime) return m_snapMarkers.at(it).time();
400     return duration();
401 }
402
403 QString DocClipBase::markerComment(GenTime t)
404 {
405     QList < CommentedTime >::Iterator itt = m_snapMarkers.begin();
406
407     while (itt != m_snapMarkers.end()) {
408         if ((*itt).time() == t)
409             return (*itt).comment();
410         ++itt;
411     }
412     return QString();
413 }
414
415 void DocClipBase::clearProducers()
416 {
417     m_baseTrackProducers.clear();
418 }
419
420 void DocClipBase::deleteProducers()
421 {
422     kDebug() << "// CLIP KILL PRODS ct: " << m_baseTrackProducers.count();
423     if (m_thumbProd) m_thumbProd->clearProducer();
424     /*kDebug()<<"// CLIP KILL PRODS ct: "<<m_baseTrackProducers.count();
425     int max = m_baseTrackProducers.count();
426     for (int i = 0; i < max; i++) {
427         kDebug()<<"// CLIP KILL PROD "<<i;
428     Mlt::Producer *p = m_baseTrackProducers.takeAt(i);
429     if (p != NULL) {
430      delete p;
431      p = NULL;
432     }
433     m_baseTrackProducers.insert(i, NULL);
434     }*/
435
436     delete m_videoOnlyProducer;
437     m_videoOnlyProducer = NULL;
438
439     qDeleteAll(m_baseTrackProducers);
440     m_baseTrackProducers.clear();
441     qDeleteAll(m_audioTrackProducers);
442     m_audioTrackProducers.clear();
443 }
444
445 void DocClipBase::setProducer(Mlt::Producer *producer, bool reset)
446 {
447     if (producer == NULL) return;
448     if (reset) {
449         // Clear all previous producers
450         kDebug() << "/+++++++++++++++   DELETE ALL PRODS " << producer->get("id");
451         deleteProducers();
452     }
453     QString id = producer->get("id");
454     if (id.contains('_')) {
455         // this is a subtrack producer, insert it at correct place
456         id = id.section('_', 1);
457         if (id.endsWith("audio")) {
458             int pos = id.section('_', 0, 0).toInt();
459             if (pos >= m_audioTrackProducers.count()) {
460                 while (m_audioTrackProducers.count() - 1 < pos) {
461                     m_audioTrackProducers.append(NULL);
462                 }
463             }
464             if (m_audioTrackProducers.at(pos) == NULL) m_audioTrackProducers[pos] = producer;
465             return;
466         } else if (id.endsWith("video")) {
467             m_videoOnlyProducer = producer;
468             return;
469         }
470         int pos = id.toInt();
471         if (pos >= m_baseTrackProducers.count()) {
472             while (m_baseTrackProducers.count() - 1 < pos) {
473                 m_baseTrackProducers.append(NULL);
474             }
475         }
476         if (m_baseTrackProducers.at(pos) == NULL) m_baseTrackProducers[pos] = producer;
477     } else {
478         if (m_baseTrackProducers.isEmpty()) m_baseTrackProducers.append(producer);
479         else if (m_baseTrackProducers.at(0) == NULL) m_baseTrackProducers[0] = producer;
480     }
481     //m_clipProducer = producer;
482     //m_clipProducer->set("transparency", m_properties.value("transparency").toInt());
483     if (m_thumbProd && (reset || !m_thumbProd->hasProducer())) m_thumbProd->setProducer(producer);
484 }
485
486 Mlt::Producer *DocClipBase::audioProducer(int track)
487 {
488     if (m_audioTrackProducers.count() <= track) {
489         while (m_audioTrackProducers.count() - 1 < track) {
490             m_audioTrackProducers.append(NULL);
491         }
492     }
493     if (m_audioTrackProducers.at(track) == NULL) {
494         Mlt::Producer *base = producer();
495         m_audioTrackProducers[track] = new Mlt::Producer(*(base->profile()), base->get("resource"));
496         if (m_properties.contains("force_aspect_ratio")) m_audioTrackProducers.at(track)->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
497         if (m_properties.contains("threads")) m_audioTrackProducers.at(track)->set("threads", m_properties.value("threads").toInt());
498         m_audioTrackProducers.at(track)->set("video_index", -1);
499         if (m_properties.contains("audio_index")) m_audioTrackProducers.at(track)->set("audio_index", m_properties.value("audio_index").toInt());
500         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track) + "_audio").toUtf8().data());
501         m_audioTrackProducers.at(track)->set("id", tmp);
502         delete[] tmp;
503     }
504     return m_audioTrackProducers.at(track);
505 }
506
507 Mlt::Producer *DocClipBase::videoProducer()
508 {
509     if (m_videoOnlyProducer == NULL) {
510         int i;
511         for (i = 0; i < m_baseTrackProducers.count(); i++)
512             if (m_baseTrackProducers.at(i) != NULL) break;
513         if (i >= m_baseTrackProducers.count()) return NULL;
514         m_videoOnlyProducer = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
515         if (m_properties.contains("force_aspect_ratio")) m_videoOnlyProducer->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
516         if (m_properties.contains("threads")) m_videoOnlyProducer->set("threads", m_properties.value("threads").toInt());
517         m_videoOnlyProducer->set("audio_index", -1);
518         if (m_properties.contains("video_index")) m_videoOnlyProducer->set("video_index", m_properties.value("video_index").toInt());
519         char *tmp = (char *) qstrdup(QString(getId() + "_video").toUtf8().data());
520         m_videoOnlyProducer->set("id", tmp);
521         delete[] tmp;
522     }
523     return m_videoOnlyProducer;
524 }
525
526 Mlt::Producer *DocClipBase::producer(int track)
527 {
528     /*for (int i = 0; i < m_baseTrackProducers.count(); i++) {
529         if (m_baseTrackProducers.at(i)) kDebug() << "// PROD: " << i << ", ID: " << m_baseTrackProducers.at(i)->get("id");
530     }*/
531     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV)) {
532         if (m_baseTrackProducers.count() == 0) return NULL;
533         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
534             if (m_baseTrackProducers.at(i) != NULL)
535                 return m_baseTrackProducers.at(i);
536         }
537         return NULL;
538     }
539     if (track >= m_baseTrackProducers.count()) {
540         while (m_baseTrackProducers.count() - 1 < track) {
541             m_baseTrackProducers.append(NULL);
542         }
543     }
544     if (m_baseTrackProducers.at(track) == NULL) {
545         int i;
546         for (i = 0; i < m_baseTrackProducers.count(); i++)
547             if (m_baseTrackProducers.at(i) != NULL) break;
548
549         if (i >= m_baseTrackProducers.count()) return NULL;
550
551         if (KIO::NetAccess::exists(KUrl(m_baseTrackProducers.at(i)->get("resource")), KIO::NetAccess::SourceSide, 0))
552             m_baseTrackProducers[track] = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
553         else { // special case for placeholder clips
554             m_baseTrackProducers[track] = NULL;
555             return NULL;
556         }
557
558         if (m_properties.contains("force_aspect_ratio")) m_baseTrackProducers[track]->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
559         if (m_properties.contains("threads")) m_baseTrackProducers[track]->set("threads", m_properties.value("threads").toInt());
560         if (m_properties.contains("video_index")) m_baseTrackProducers[track]->set("video_index", m_properties.value("video_index").toInt());
561         if (m_properties.contains("audio_index")) m_baseTrackProducers[track]->set("audio_index", m_properties.value("audio_index").toInt());
562         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track)).toUtf8().data());
563         m_baseTrackProducers[track]->set("id", tmp);
564         delete[] tmp;
565         if (KdenliveSettings::dropbframes() && m_baseTrackProducers.at(i)->get("skip_loop_filter") && strcmp(m_baseTrackProducers.at(i)->get("skip_loop_filter"), "all") == 0) {
566             m_baseTrackProducers[track]->set("skip_loop_filter", "all");
567             m_baseTrackProducers[track]->set("skip_frame", "bidir");
568         }
569     }
570     return m_baseTrackProducers.at(track);
571 }
572
573 void DocClipBase::setProducerProperty(const char *name, int data)
574 {
575     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
576         if (m_baseTrackProducers.at(i) != NULL)
577             m_baseTrackProducers[i]->set(name, data);
578     }
579 }
580
581 void DocClipBase::setProducerProperty(const char *name, double data)
582 {
583     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
584         if (m_baseTrackProducers.at(i) != NULL)
585             m_baseTrackProducers[i]->set(name, data);
586     }
587 }
588
589 void DocClipBase::setProducerProperty(const char *name, const char *data)
590 {
591     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
592         if (m_baseTrackProducers.at(i) != NULL)
593             m_baseTrackProducers[i]->set(name, data);
594     }
595 }
596
597 const char *DocClipBase::producerProperty(const char *name) const
598 {
599     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
600         if (m_baseTrackProducers.at(i) != NULL) {
601             return m_baseTrackProducers.at(i)->get(name);
602         }
603     }
604     return NULL;
605 }
606
607
608 void DocClipBase::slotRefreshProducer()
609 {
610     if (m_baseTrackProducers.count() == 0) return;
611     kDebug() << "////////////   REFRESH CLIP !!!!!!!!!!!!!!!!";
612     if (m_clipType == SLIDESHOW) {
613         /*char *tmp = (char *) qstrdup(getProperty("resource").toUtf8().data());
614                Mlt::Producer producer(*(m_clipProducer->profile()), tmp);
615                delete[] tmp;
616         delete m_clipProducer;
617         m_clipProducer = new Mlt::Producer(producer.get_producer());
618         if (!getProperty("out").isEmpty()) m_clipProducer->set_in_and_out(getProperty("in").toInt(), getProperty("out").toInt());*/
619         setProducerProperty("ttl", getProperty("ttl").toInt());
620         //m_clipProducer->set("id", getProperty("id"));
621         if (getProperty("fade") == "1") {
622             // we want a fade filter effect
623             kDebug() << "////////////   FADE WANTED";
624             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
625             int ct = 0;
626             Mlt::Filter *filter = clipService.filter(ct);
627             while (filter) {
628                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
629                     break;
630                 }
631                 ct++;
632                 filter = clipService.filter(ct);
633             }
634
635             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
636                 filter->set("period", getProperty("ttl").toInt() - 1);
637                 filter->set("luma.out", getProperty("luma_duration").toInt());
638                 QString resource = getProperty("luma_file");
639                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
640                 filter->set("luma.resource", tmp);
641                 delete[] tmp;
642                 if (!getProperty("softness").isEmpty()) {
643                     int soft = getProperty("softness").toInt();
644                     filter->set("luma.softness", (double) soft / 100.0);
645                 }
646             } else {
647                 // filter does not exist, create it...
648                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
649                 filter->set("period", getProperty("ttl").toInt() - 1);
650                 filter->set("luma.out", getProperty("luma_duration").toInt());
651                 QString resource = getProperty("luma_file");
652                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
653                 filter->set("luma.resource", tmp);
654                 delete[] tmp;
655                 if (!getProperty("softness").isEmpty()) {
656                     int soft = getProperty("softness").toInt();
657                     filter->set("luma.softness", (double) soft / 100.0);
658                 }
659                 clipService.attach(*filter);
660             }
661         } else {
662             kDebug() << "////////////   FADE NOT WANTED!!!";
663             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
664             int ct = 0;
665             Mlt::Filter *filter = clipService.filter(0);
666             while (filter) {
667                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
668                     clipService.detach(*filter);
669                 } else ct++;
670                 filter = clipService.filter(ct);
671             }
672         }
673     }
674 }
675
676 void DocClipBase::setProperties(QMap <QString, QString> properties)
677 {
678     // changing clip type is not allowed
679     properties.remove("type");
680     QMapIterator<QString, QString> i(properties);
681     bool refreshProducer = false;
682     QStringList keys;
683     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness";
684     while (i.hasNext()) {
685         i.next();
686         setProperty(i.key(), i.value());
687         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
688     }
689     if (refreshProducer) slotRefreshProducer();
690 }
691
692 void DocClipBase::setMetadata(QMap <QString, QString> properties)
693 {
694     m_metadata = properties;
695 }
696
697 QMap <QString, QString> DocClipBase::metadata() const
698 {
699     return m_metadata;
700 }
701
702 void DocClipBase::clearProperty(const QString &key)
703 {
704     m_properties.remove(key);
705 }
706
707 void DocClipBase::getFileHash(const QString url)
708 {
709     if (m_clipType == SLIDESHOW) return;
710     QFile file(url);
711     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
712         QByteArray fileData;
713         QByteArray fileHash;
714         //kDebug() << "SETTING HASH of" << value;
715         m_properties.insert("file_size", QString::number(file.size()));
716         /*
717                * 1 MB = 1 second per 450 files (or faster)
718                * 10 MB = 9 seconds per 450 files (or faster)
719                */
720         if (file.size() > 1000000*2) {
721             fileData = file.read(1000000);
722             if (file.seek(file.size() - 1000000))
723                 fileData.append(file.readAll());
724         } else
725             fileData = file.readAll();
726         file.close();
727         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
728         m_properties.insert("file_hash", QString(fileHash.toHex()));
729     }
730 }
731
732 QString DocClipBase::getClipHash() const
733 {
734     QString hash;
735     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
736     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
737     else if (m_clipType == TEXT) hash = QCryptographicHash::hash(QString("title" + getId() + m_properties.value("xmldata")).toUtf8().data(), QCryptographicHash::Md5).toHex();
738     else hash = m_properties.value("file_hash");
739     return hash;
740 }
741
742 // static
743 QString DocClipBase::getHash(const QString &path)
744 {
745     QFile file(path);
746     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
747         QByteArray fileData;
748         QByteArray fileHash;
749         /*
750                * 1 MB = 1 second per 450 files (or faster)
751                * 10 MB = 9 seconds per 450 files (or faster)
752                */
753         if (file.size() > 1000000*2) {
754             fileData = file.read(1000000);
755             if (file.seek(file.size() - 1000000))
756                 fileData.append(file.readAll());
757         } else
758             fileData = file.readAll();
759         file.close();
760         return QCryptographicHash::hash(fileData, QCryptographicHash::Md5).toHex();
761     }
762     return QString();
763 }
764
765 void DocClipBase::refreshThumbUrl()
766 {
767     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
768 }
769
770 void DocClipBase::setProperty(const QString &key, const QString &value)
771 {
772     m_properties.insert(key, value);
773     if (key == "resource") {
774         getFileHash(value);
775         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
776     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
777     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
778     else if (key == "colour") {
779         char *tmp = (char *) qstrdup(value.toUtf8().data());
780         setProducerProperty("colour", tmp);
781         delete[] tmp;
782     } else if (key == "templatetext") {
783         char *tmp = (char *) qstrdup(value.toUtf8().data());
784         setProducerProperty("templatetext", tmp);
785         delete[] tmp;
786         setProducerProperty("force_reload", 1);
787     } else if (key == "xmldata") {
788         char *tmp = (char *) qstrdup(value.toUtf8().data());
789         setProducerProperty("xmldata", tmp);
790         delete[] tmp;
791         setProducerProperty("force_reload", 1);
792     } else if (key == "force_aspect_ratio") {
793         if (value.isEmpty()) {
794             m_properties.remove("force_aspect_ratio");
795             //TODO: find a was to remove the "force_aspect_ratio" property from producer, currently does not work
796             setProducerProperty("force_aspect_ratio", 0);
797         } else setProducerProperty("force_aspect_ratio", value.toDouble());
798     } else if (key == "threads") {
799         if (value.isEmpty()) {
800             m_properties.remove("threads");
801             setProducerProperty("threads", 1);
802         } else setProducerProperty("threads", value.toInt());
803     } else if (key == "video_index") {
804         if (value.isEmpty()) {
805             m_properties.remove("video_index");
806             setProducerProperty("video_index", m_properties.value("default_video").toInt());
807         } else setProducerProperty("video_index", value.toInt());
808     } else if (key == "audio_index") {
809         if (value.isEmpty()) {
810             m_properties.remove("audio_index");
811             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
812         } else setProducerProperty("audio_index", value.toInt());
813     }
814 }
815
816 QMap <QString, QString> DocClipBase::properties() const
817 {
818     return m_properties;
819 }
820
821 bool DocClipBase::slotGetAudioThumbs()
822 {
823     if (m_thumbProd == NULL) return false;
824     if (!KdenliveSettings::audiothumbnails()) {
825         if (m_audioTimer != NULL) m_audioTimer->stop();
826         return false;
827     }
828     if (m_audioThumbCreated) {
829         if (m_audioTimer != NULL) m_audioTimer->stop();
830         return false;
831     }
832     if (m_audioTimer != NULL)
833         m_audioTimer->start(1500);
834     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
835     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
836     return true;
837 }
838
839 bool DocClipBase::isPlaceHolder() const
840 {
841     return m_placeHolder;
842 }
843