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