]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Add animation feature to Slideshow Clip.
[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 <KDebug>
35
36 #include <QCryptographicHash>
37
38 #include <cstdio>
39
40 DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QString &id) :
41         QObject(),
42         m_audioFrameCache(),
43         m_refcount(0),
44         m_baseTrackProducers(),
45         m_audioTrackProducers(),
46         m_videoOnlyProducer(NULL),
47         m_snapMarkers(QList < CommentedTime >()),
48         m_duration(),
49         m_audioTimer(NULL),
50         m_thumbProd(NULL),
51         m_audioThumbCreated(false),
52         m_id(id),
53         m_placeHolder(xml.hasAttribute("placeholder")),
54         m_properties()
55 {
56     int type = xml.attribute("type").toInt();
57     m_clipType = (CLIPTYPE) type;
58     if (m_placeHolder) xml.removeAttribute("placeholder");
59     QDomNamedNodeMap attributes = xml.attributes();
60     for (int i = 0; i < attributes.count(); i++) {
61         QString name = attributes.item(i).nodeName();
62         if (name.startsWith("meta.attr.")) {
63             m_metadata.insert(name.section('.', 2, 3), attributes.item(i).nodeValue());
64         } else m_properties.insert(name, attributes.item(i).nodeValue());
65     }
66
67     if (xml.hasAttribute("cutzones")) {
68         QStringList cuts = xml.attribute("cutzones").split(";", QString::SkipEmptyParts);
69         for (int i = 0; i < cuts.count(); i++) {
70             QString z = cuts.at(i);
71             addCutZone(z.section('-', 0, 0).toInt(), z.section('-', 1, 1).toInt(), z.section('-', 2, 2));
72         }
73     }
74
75     KUrl url = KUrl(xml.attribute("resource"));
76     if (!m_properties.contains("file_hash") && !url.isEmpty()) getFileHash(url.path());
77
78     if (xml.hasAttribute("duration")) {
79         setDuration(GenTime(xml.attribute("duration").toInt(), KdenliveSettings::project_fps()));
80     } else {
81         int out = xml.attribute("out").toInt();
82         int in = xml.attribute("in").toInt();
83         setDuration(GenTime(out - in, KdenliveSettings::project_fps()));
84     }
85
86     if (!m_properties.contains("name")) m_properties.insert("name", url.fileName());
87
88     //if (!url.isEmpty() && QFile::exists(url.path()))
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     //kDebug() << "type is video" << (m_clipType == AV) << " " << m_clipType;
94 }
95
96 /*DocClipBase & DocClipBase::operator=(const DocClipBase & clip) {
97     DocClipBase::operator=(clip);
98     m_id = clip.getId();
99     m_clipType = clip.clipType();
100     m_name = clip.name();
101     m_duration = clip.duration();
102     m_audioThumbCreated = clip.audioThumbCreated();
103     m_properties = clip.properties();
104     return *this;
105 }*/
106
107 DocClipBase::~DocClipBase()
108 {
109     kDebug() << "CLIP " << m_id << " DELETED******************************";
110     delete m_thumbProd;
111     if (m_audioTimer) {
112         m_audioTimer->stop();
113         delete m_audioTimer;
114     }
115     /*kDebug() <<" * * *CNT "<<m_baseTrackProducers.count();
116     if (m_baseTrackProducers.count() > 0) kDebug()<<"YOYO: "<<m_baseTrackProducers.at(0)->get_out()<<", CUT: "<<m_baseTrackProducers.at(0)->is_cut();*/
117     qDeleteAll(m_baseTrackProducers);
118     m_baseTrackProducers.clear();
119     qDeleteAll(m_audioTrackProducers);
120     m_audioTrackProducers.clear();
121     delete m_videoOnlyProducer;
122     m_videoOnlyProducer = NULL;
123 }
124
125 void DocClipBase::setZone(QPoint zone)
126 {
127     m_properties.insert("zone_in", QString::number(zone.x()));
128     m_properties.insert("zone_out", QString::number(zone.y()));
129 }
130
131 QPoint DocClipBase::zone() const
132 {
133     QPoint zone(m_properties.value("zone_in", "0").toInt(), m_properties.value("zone_out", "50").toInt());
134     return zone;
135 }
136
137 void DocClipBase::slotCreateAudioTimer()
138 {
139     connect(m_thumbProd, SIGNAL(audioThumbReady(QMap <int, QMap <int, QByteArray> >)), this , SLOT(updateAudioThumbnail(QMap <int, QMap <int, QByteArray> >)));
140     m_audioTimer = new QTimer(this);
141     connect(m_audioTimer, SIGNAL(timeout()), this, SLOT(slotGetAudioThumbs()));
142 }
143
144 void DocClipBase::askForAudioThumbs()
145 {
146     if (m_thumbProd && m_audioTimer) m_thumbProd->askForAudioThumbs(getId());
147 }
148
149 void DocClipBase::slotClearAudioCache()
150 {
151     if (m_thumbProd) m_thumbProd->stopAudioThumbs();
152     if (m_audioTimer != NULL) m_audioTimer->stop();
153     m_audioFrameCache.clear();
154     m_audioThumbCreated = false;
155 }
156
157 /*void DocClipBase::getClipMainThumb() {
158     if (m_thumbProd) m_thumbProd->getMainThumb(m_properties.value("thumbnail").toInt());
159 }*/
160
161 KThumb *DocClipBase::thumbProducer()
162 {
163     return m_thumbProd;
164 }
165
166 bool DocClipBase::audioThumbCreated() const
167 {
168     return m_audioThumbCreated;
169 }
170
171 const QString DocClipBase::name() const
172 {
173
174     return m_properties.value("name");
175 }
176
177 const QString &DocClipBase::getId() const
178 {
179     return m_id;
180 }
181
182 void DocClipBase::setId(const QString &newId)
183 {
184     m_id = newId;
185 }
186
187 const CLIPTYPE & DocClipBase::clipType() const
188 {
189     return m_clipType;
190 }
191
192 void DocClipBase::setClipType(CLIPTYPE type)
193 {
194     m_clipType = type;
195
196     m_properties.insert("type", QString::number((int) type));
197     if (m_thumbProd && m_audioTimer == NULL && (m_clipType == AV || m_clipType == AUDIO || m_clipType == PLAYLIST))
198         slotCreateAudioTimer();
199 }
200
201 KUrl DocClipBase::fileURL() const
202 {
203     QString res = m_properties.value("resource");
204     if (m_clipType != COLOR && !res.isEmpty()) return KUrl(res);
205     return KUrl();
206 }
207
208 void DocClipBase::setClipThumbFrame(const uint &ix)
209 {
210     m_properties.insert("thumbnail", QString::number((int) ix));
211 }
212
213 uint DocClipBase::getClipThumbFrame() const
214 {
215     return (uint) m_properties.value("thumbnail").toInt();
216 }
217
218 const QString DocClipBase::description() const
219 {
220     return m_properties.value("description");
221 }
222
223 bool DocClipBase::isTransparent() const
224 {
225     return (m_properties.value("transparency") == "1");
226 }
227
228 const QString DocClipBase::getProperty(const QString prop) const
229 {
230     return m_properties.value(prop);
231 }
232
233 void DocClipBase::setDuration(GenTime dur)
234 {
235     m_duration = dur;
236     m_properties.insert("duration", QString::number((int) dur.frames(KdenliveSettings::project_fps())));
237 }
238
239 const GenTime &DocClipBase::duration() const
240 {
241     return m_duration;
242 }
243
244 const GenTime DocClipBase::maxDuration() const
245 {
246     if (m_clipType == COLOR || m_clipType == IMAGE || m_clipType == TEXT || (m_clipType == SLIDESHOW &&  m_properties.value("loop") == "1")) {
247         /*const GenTime dur(15000, KdenliveSettings::project_fps());
248         return dur;*/
249         return GenTime();
250     }
251     return m_duration;
252 }
253
254 bool DocClipBase::hasFileSize() const
255 {
256     return true;
257 }
258
259 qulonglong DocClipBase::fileSize() const
260 {
261     return m_properties.value("file_size").toULongLong();
262 }
263
264 // virtual
265 QDomElement DocClipBase::toXML() const
266 {
267     QDomDocument doc;
268     QDomElement clip = doc.createElement("producer");
269
270     QMapIterator<QString, QString> i(m_properties);
271     while (i.hasNext()) {
272         i.next();
273         if (!i.value().isEmpty()) clip.setAttribute(i.key(), i.value());
274     }
275     doc.appendChild(clip);
276     if (!m_cutZones.isEmpty()) {
277         QStringList cuts;
278         for (int i = 0; i < m_cutZones.size(); i++) {
279             CutZoneInfo info = m_cutZones.at(i);
280             cuts << QString::number(info.zone.x()) + "-" + QString::number(info.zone.y()) + "-" + info.description;
281         }
282         clip.setAttribute("cutzones", cuts.join(";"));
283     }
284     //kDebug() << "/// CLIP XML: " << doc.toString();
285     return doc.documentElement();
286 }
287
288
289 void DocClipBase::setAudioThumbCreated(bool isDone)
290 {
291     m_audioThumbCreated = isDone;
292 }
293
294
295 void DocClipBase::setThumbnail(const QPixmap & pixmap)
296 {
297     m_thumbnail = pixmap;
298 }
299
300 const QPixmap & DocClipBase::thumbnail() const
301 {
302     return m_thumbnail;
303 }
304
305 void DocClipBase::updateAudioThumbnail(QMap<int, QMap<int, QByteArray> > data)
306 {
307     //kDebug() << "CLIPBASE RECIEDVED AUDIO DATA*********************************************";
308     m_audioFrameCache = data;
309     m_audioThumbCreated = true;
310     emit gotAudioData();
311 }
312
313 QList < GenTime > DocClipBase::snapMarkers() const
314 {
315     QList < GenTime > markers;
316
317     for (int count = 0; count < m_snapMarkers.count(); ++count) {
318         markers.append(m_snapMarkers.at(count).time());
319     }
320
321     return markers;
322 }
323
324 QList < CommentedTime > DocClipBase::commentedSnapMarkers() const
325 {
326     return m_snapMarkers;
327 }
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(bool clearThumbCreator)
436 {
437     kDebug() << "// CLIP KILL PRODS ct: " << m_baseTrackProducers.count();
438     if (clearThumbCreator && 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::setValid()
461 {
462     m_placeHolder = false;
463 }
464
465 void DocClipBase::setProducer(Mlt::Producer *producer, bool reset)
466 {
467     if (producer == NULL || (m_placeHolder && !reset)) return;
468     if (m_thumbProd && (reset || !m_thumbProd->hasProducer())) m_thumbProd->setProducer(producer);
469     if (reset) {
470         // Clear all previous producers
471         kDebug() << "/+++++++++++++++   DELETE ALL PRODS " << producer->get("id");
472         deleteProducers(false);
473     }
474     QString id = producer->get("id");
475     if (id.contains('_')) {
476         // this is a subtrack producer, insert it at correct place
477         id = id.section('_', 1);
478         if (id.endsWith("audio")) {
479             int pos = id.section('_', 0, 0).toInt();
480             if (pos >= m_audioTrackProducers.count()) {
481                 while (m_audioTrackProducers.count() - 1 < pos) {
482                     m_audioTrackProducers.append(NULL);
483                 }
484             }
485             if (m_audioTrackProducers.at(pos) == NULL) m_audioTrackProducers[pos] = producer;
486             return;
487         } else if (id.endsWith("video")) {
488             m_videoOnlyProducer = producer;
489             return;
490         }
491         int pos = id.toInt();
492         if (pos >= m_baseTrackProducers.count()) {
493             while (m_baseTrackProducers.count() - 1 < pos) {
494                 m_baseTrackProducers.append(NULL);
495             }
496         }
497         if (m_baseTrackProducers.at(pos) == NULL) m_baseTrackProducers[pos] = producer;
498     } else {
499         if (m_baseTrackProducers.isEmpty()) m_baseTrackProducers.append(producer);
500         else if (m_baseTrackProducers.at(0) == NULL) m_baseTrackProducers[0] = producer;
501     }
502     //m_clipProducer = producer;
503     //m_clipProducer->set("transparency", m_properties.value("transparency").toInt());
504 }
505
506 Mlt::Producer *DocClipBase::audioProducer(int track)
507 {
508     if (m_audioTrackProducers.count() <= track) {
509         while (m_audioTrackProducers.count() - 1 < track) {
510             m_audioTrackProducers.append(NULL);
511         }
512     }
513     if (m_audioTrackProducers.at(track) == NULL) {
514         Mlt::Producer *base = producer();
515         m_audioTrackProducers[track] = new Mlt::Producer(*(base->profile()), base->get("resource"));
516         if (m_properties.contains("force_aspect_ratio")) m_audioTrackProducers.at(track)->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
517         if (m_properties.contains("force_fps")) m_audioTrackProducers.at(track)->set("force_fps", m_properties.value("force_fps").toDouble());
518         if (m_properties.contains("force_progressive")) m_audioTrackProducers.at(track)->set("force_progressive", m_properties.value("force_progressive").toInt());
519         if (m_properties.contains("threads")) m_audioTrackProducers.at(track)->set("threads", m_properties.value("threads").toInt());
520         m_audioTrackProducers.at(track)->set("video_index", -1);
521         if (m_properties.contains("audio_index")) m_audioTrackProducers.at(track)->set("audio_index", m_properties.value("audio_index").toInt());
522         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track) + "_audio").toUtf8().data());
523         m_audioTrackProducers.at(track)->set("id", tmp);
524         delete[] tmp;
525     }
526     return m_audioTrackProducers.at(track);
527 }
528
529 Mlt::Producer *DocClipBase::videoProducer()
530 {
531     if (m_videoOnlyProducer == NULL) {
532         int i;
533         for (i = 0; i < m_baseTrackProducers.count(); i++)
534             if (m_baseTrackProducers.at(i) != NULL) break;
535         if (i >= m_baseTrackProducers.count()) return NULL;
536         m_videoOnlyProducer = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
537         if (m_properties.contains("force_aspect_ratio")) m_videoOnlyProducer->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
538         if (m_properties.contains("force_fps")) m_videoOnlyProducer->set("force_fps", m_properties.value("force_fps").toDouble());
539         if (m_properties.contains("force_progressive")) m_videoOnlyProducer->set("force_progressive", m_properties.value("force_progressive").toInt());
540         if (m_properties.contains("threads")) m_videoOnlyProducer->set("threads", m_properties.value("threads").toInt());
541         m_videoOnlyProducer->set("audio_index", -1);
542         if (m_properties.contains("video_index")) m_videoOnlyProducer->set("video_index", m_properties.value("video_index").toInt());
543         char *tmp = (char *) qstrdup(QString(getId() + "_video").toUtf8().data());
544         m_videoOnlyProducer->set("id", tmp);
545         delete[] tmp;
546     }
547     return m_videoOnlyProducer;
548 }
549
550 Mlt::Producer *DocClipBase::producer(int track)
551 {
552     /*for (int i = 0; i < m_baseTrackProducers.count(); i++) {
553         if (m_baseTrackProducers.at(i)) kDebug() << "// PROD: " << i << ", ID: " << m_baseTrackProducers.at(i)->get("id");
554     }*/
555     if (track == -1 || (m_clipType != AUDIO && m_clipType != AV)) {
556         if (m_baseTrackProducers.count() == 0) return NULL;
557         for (int i = 0; i < m_baseTrackProducers.count(); i++) {
558             if (m_baseTrackProducers.at(i) != NULL)
559                 return m_baseTrackProducers.at(i);
560         }
561         return NULL;
562     }
563     if (track >= m_baseTrackProducers.count()) {
564         while (m_baseTrackProducers.count() - 1 < track) {
565             m_baseTrackProducers.append(NULL);
566         }
567     }
568     if (m_baseTrackProducers.at(track) == NULL) {
569         int i;
570         for (i = 0; i < m_baseTrackProducers.count(); i++)
571             if (m_baseTrackProducers.at(i) != NULL) break;
572
573         if (i >= m_baseTrackProducers.count()) return NULL;
574
575         if (KIO::NetAccess::exists(KUrl(m_baseTrackProducers.at(i)->get("resource")), KIO::NetAccess::SourceSide, 0))
576             m_baseTrackProducers[track] = new Mlt::Producer(*m_baseTrackProducers.at(i)->profile(), m_baseTrackProducers.at(i)->get("resource"));
577         else { // special case for placeholder clips
578             m_baseTrackProducers[track] = NULL;
579             return NULL;
580         }
581         if (m_properties.contains("force_aspect_ratio")) m_baseTrackProducers[track]->set("force_aspect_ratio", m_properties.value("force_aspect_ratio").toDouble());
582         if (m_properties.contains("force_fps")) m_baseTrackProducers[track]->set("force_fps", m_properties.value("force_fps").toDouble());
583         if (m_properties.contains("force_progressive")) m_baseTrackProducers[track]->set("force_progressive", m_properties.value("force_progressive").toInt());
584         if (m_properties.contains("threads")) m_baseTrackProducers[track]->set("threads", m_properties.value("threads").toInt());
585         if (m_properties.contains("video_index")) m_baseTrackProducers[track]->set("video_index", m_properties.value("video_index").toInt());
586         if (m_properties.contains("audio_index")) m_baseTrackProducers[track]->set("audio_index", m_properties.value("audio_index").toInt());
587         char *tmp = (char *) qstrdup(QString(getId() + '_' + QString::number(track)).toUtf8().data());
588         m_baseTrackProducers[track]->set("id", tmp);
589         delete[] tmp;
590         if (KdenliveSettings::dropbframes() && m_baseTrackProducers.at(i)->get("skip_loop_filter") && strcmp(m_baseTrackProducers.at(i)->get("skip_loop_filter"), "all") == 0) {
591             m_baseTrackProducers[track]->set("skip_loop_filter", "all");
592             m_baseTrackProducers[track]->set("skip_frame", "bidir");
593         }
594     }
595     return m_baseTrackProducers.at(track);
596 }
597
598 void DocClipBase::setProducerProperty(const char *name, int data)
599 {
600     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
601         if (m_baseTrackProducers.at(i) != NULL)
602             m_baseTrackProducers[i]->set(name, data);
603     }
604 }
605
606 void DocClipBase::setProducerProperty(const char *name, double data)
607 {
608     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
609         if (m_baseTrackProducers.at(i) != NULL)
610             m_baseTrackProducers[i]->set(name, data);
611     }
612 }
613
614 void DocClipBase::setProducerProperty(const char *name, const char *data)
615 {
616     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
617         if (m_baseTrackProducers.at(i) != NULL)
618             m_baseTrackProducers[i]->set(name, data);
619     }
620 }
621
622 void DocClipBase::resetProducerProperty(const char *name)
623 {
624     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
625         if (m_baseTrackProducers.at(i) != NULL)
626             m_baseTrackProducers[i]->set(name, (const char*) NULL);
627     }
628 }
629
630 const char *DocClipBase::producerProperty(const char *name) const
631 {
632     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
633         if (m_baseTrackProducers.at(i) != NULL) {
634             return m_baseTrackProducers.at(i)->get(name);
635         }
636     }
637     return NULL;
638 }
639
640
641 void DocClipBase::slotRefreshProducer()
642 {
643     if (m_baseTrackProducers.count() == 0) return;
644     kDebug() << "////////////   REFRESH CLIP !!!!!!!!!!!!!!!!";
645     if (m_clipType == SLIDESHOW) {
646         /*char *tmp = (char *) qstrdup(getProperty("resource").toUtf8().data());
647                Mlt::Producer producer(*(m_clipProducer->profile()), tmp);
648                delete[] tmp;
649         delete m_clipProducer;
650         m_clipProducer = new Mlt::Producer(producer.get_producer());
651         if (!getProperty("out").isEmpty()) m_clipProducer->set_in_and_out(getProperty("in").toInt(), getProperty("out").toInt());*/
652         setProducerProperty("ttl", getProperty("ttl").toInt());
653         //m_clipProducer->set("id", getProperty("id"));
654         if (!getProperty("animation").isEmpty()) {
655             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
656             int ct = 0;
657             Mlt::Filter *filter = clipService.filter(ct);
658             while (filter) {
659                 if (strcmp(filter->get("mlt_service"), "affine") == 0) {
660                     break;
661                 }
662                 else if (strcmp(filter->get("mlt_service"), "boxblur") == 0) {
663                     clipService.detach(*filter);
664                 } else ct++;
665                 filter = clipService.filter(ct);
666             }
667
668             if (!filter || strcmp(filter->get("mlt_service"), "affine")) {
669                 // filter does not exist, create it.
670                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "affine");
671                 if (filter && filter->is_valid()) {
672                     int cycle = getProperty("ttl").toInt();
673                     QString geometry = SlideshowClip::animationToGeometry(getProperty("animation"), cycle);
674                     if (!geometry.isEmpty()) {
675                         if (getProperty("animation").contains("low-pass")) {
676                             Mlt::Filter *blur = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "boxblur");
677                             if (blur && blur->is_valid())
678                                 clipService.attach(*blur);
679                         }
680                         filter->set("transition.geometry", geometry.toUtf8().data());
681                         filter->set("transition.cycle", cycle);
682                         clipService.attach(*filter);
683                     }
684                 }
685             }
686         } else {
687             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
688             int ct = 0;
689             Mlt::Filter *filter = clipService.filter(0);
690             while (filter) {
691                 if (strcmp(filter->get("mlt_service"), "affine") == 0 || strcmp(filter->get("mlt_service"), "boxblur") == 0) {
692                     clipService.detach(*filter);
693                 } else ct++;
694                 filter = clipService.filter(ct);
695             }
696         }
697         if (getProperty("fade") == "1") {
698             // we want a fade filter effect
699             kDebug() << "////////////   FADE WANTED";
700             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
701             int ct = 0;
702             Mlt::Filter *filter = clipService.filter(ct);
703             while (filter) {
704                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
705                     break;
706                 }
707                 ct++;
708                 filter = clipService.filter(ct);
709             }
710
711             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
712                 filter->set("cycle", getProperty("ttl").toInt());
713                 filter->set("duration", getProperty("luma_duration").toInt());
714                 QString resource = getProperty("luma_file");
715                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
716                 filter->set("luma.resource", tmp);
717                 delete[] tmp;
718                 if (!getProperty("softness").isEmpty()) {
719                     int soft = getProperty("softness").toInt();
720                     filter->set("luma.softness", (double) soft / 100.0);
721                 }
722             } else {
723                 // filter does not exist, create it...
724                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
725                 filter->set("cycle", getProperty("ttl").toInt());
726                 filter->set("duration", getProperty("luma_duration").toInt());
727                 QString resource = getProperty("luma_file");
728                 char *tmp = (char *) qstrdup(resource.toUtf8().data());
729                 filter->set("luma.resource", tmp);
730                 delete[] tmp;
731                 if (!getProperty("softness").isEmpty()) {
732                     int soft = getProperty("softness").toInt();
733                     filter->set("luma.softness", (double) soft / 100.0);
734                 }
735                 clipService.attach(*filter);
736             }
737         } else {
738             kDebug() << "////////////   FADE NOT WANTED!!!";
739             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
740             int ct = 0;
741             Mlt::Filter *filter = clipService.filter(0);
742             while (filter) {
743                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
744                     clipService.detach(*filter);
745                 } else ct++;
746                 filter = clipService.filter(ct);
747             }
748         }
749         if (getProperty("crop") == "1") {
750             // we want a center crop filter effect
751             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
752             int ct = 0;
753             Mlt::Filter *filter = clipService.filter(ct);
754             while (filter) {
755                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
756                     break;
757                 }
758                 ct++;
759                 filter = clipService.filter(ct);
760             }
761
762             if (!filter || strcmp(filter->get("mlt_service"), "crop")) {
763                 // filter does not exist, create it...
764                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "crop");
765                 filter->set("center", 1);
766                 clipService.attach(*filter);
767             }
768         } else {
769             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
770             int ct = 0;
771             Mlt::Filter *filter = clipService.filter(0);
772             while (filter) {
773                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
774                     clipService.detach(*filter);
775                 } else ct++;
776                 filter = clipService.filter(ct);
777             }
778         }
779     }
780 }
781
782 void DocClipBase::setProperties(QMap <QString, QString> properties)
783 {
784     // changing clip type is not allowed
785     properties.remove("type");
786     QMapIterator<QString, QString> i(properties);
787     bool refreshProducer = false;
788     QStringList keys;
789     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness";
790     while (i.hasNext()) {
791         i.next();
792         setProperty(i.key(), i.value());
793         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
794     }
795     if (refreshProducer) slotRefreshProducer();
796 }
797
798 void DocClipBase::setMetadata(QMap <QString, QString> properties)
799 {
800     QMapIterator<QString, QString> i(properties);
801     while (i.hasNext()) {
802         i.next();
803         if (i.value().isEmpty() && m_metadata.contains(i.key())) {
804             m_metadata.remove(i.key());
805         } else {
806             m_metadata.insert(i.key(), i.value());
807         }
808     }
809 }
810
811 QMap <QString, QString> DocClipBase::metadata() const
812 {
813     return m_metadata;
814 }
815
816 void DocClipBase::clearProperty(const QString &key)
817 {
818     m_properties.remove(key);
819 }
820
821 void DocClipBase::getFileHash(const QString url)
822 {
823     if (m_clipType == SLIDESHOW) return;
824     QFile file(url);
825     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
826         QByteArray fileData;
827         QByteArray fileHash;
828         //kDebug() << "SETTING HASH of" << value;
829         m_properties.insert("file_size", QString::number(file.size()));
830         /*
831                * 1 MB = 1 second per 450 files (or faster)
832                * 10 MB = 9 seconds per 450 files (or faster)
833                */
834         if (file.size() > 1000000*2) {
835             fileData = file.read(1000000);
836             if (file.seek(file.size() - 1000000))
837                 fileData.append(file.readAll());
838         } else
839             fileData = file.readAll();
840         file.close();
841         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
842         m_properties.insert("file_hash", QString(fileHash.toHex()));
843     }
844 }
845
846 bool DocClipBase::checkHash() const
847 {
848     KUrl url = fileURL();
849     if (!url.isEmpty() && getClipHash() != getHash(url.path())) return false;
850     return true;
851 }
852
853 QString DocClipBase::getClipHash() const
854 {
855     QString hash;
856     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
857     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
858     else if (m_clipType == TEXT) hash = QCryptographicHash::hash(QString("title" + getId() + m_properties.value("xmldata")).toUtf8().data(), QCryptographicHash::Md5).toHex();
859     else hash = m_properties.value("file_hash");
860     return hash;
861 }
862
863 void DocClipBase::setPlaceHolder(bool place)
864 {
865     m_placeHolder = place;
866 }
867
868 // static
869 QString DocClipBase::getHash(const QString &path)
870 {
871     QFile file(path);
872     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
873         QByteArray fileData;
874         QByteArray fileHash;
875         /*
876                * 1 MB = 1 second per 450 files (or faster)
877                * 10 MB = 9 seconds per 450 files (or faster)
878                */
879         if (file.size() > 1000000*2) {
880             fileData = file.read(1000000);
881             if (file.seek(file.size() - 1000000))
882                 fileData.append(file.readAll());
883         } else
884             fileData = file.readAll();
885         file.close();
886         return QCryptographicHash::hash(fileData, QCryptographicHash::Md5).toHex();
887     }
888     return QString();
889 }
890
891 void DocClipBase::refreshThumbUrl()
892 {
893     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
894 }
895
896 void DocClipBase::setProperty(const QString &key, const QString &value)
897 {
898     m_properties.insert(key, value);
899     if (key == "resource") {
900         getFileHash(value);
901         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
902     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
903     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
904     else if (key == "colour") {
905         char *tmp = (char *) qstrdup(value.toUtf8().data());
906         setProducerProperty("colour", tmp);
907         delete[] tmp;
908     } else if (key == "templatetext") {
909         char *tmp = (char *) qstrdup(value.toUtf8().data());
910         setProducerProperty("templatetext", tmp);
911         delete[] tmp;
912         setProducerProperty("force_reload", 1);
913     } else if (key == "xmldata") {
914         char *tmp = (char *) qstrdup(value.toUtf8().data());
915         setProducerProperty("xmldata", tmp);
916         delete[] tmp;
917         setProducerProperty("force_reload", 1);
918     } else if (key == "force_aspect_ratio") {
919         if (value.isEmpty()) {
920             m_properties.remove("force_aspect_ratio");
921             resetProducerProperty("force_aspect_ratio");
922         } else setProducerProperty("force_aspect_ratio", value.toDouble());
923     } else if (key == "force_fps") {
924         if (value.isEmpty()) {
925             m_properties.remove("force_fps");
926             resetProducerProperty("force_fps");
927         } else setProducerProperty("force_fps", value.toDouble());
928     } else if (key == "force_progressive") {
929         if (value.isEmpty()) {
930             m_properties.remove("force_progressive");
931             resetProducerProperty("force_progressive");
932         } else setProducerProperty("force_progressive", value.toInt());
933     } else if (key == "threads") {
934         if (value.isEmpty()) {
935             m_properties.remove("threads");
936             setProducerProperty("threads", 1);
937         } else setProducerProperty("threads", value.toInt());
938     } else if (key == "video_index") {
939         if (value.isEmpty()) {
940             m_properties.remove("video_index");
941             setProducerProperty("video_index", m_properties.value("default_video").toInt());
942         } else setProducerProperty("video_index", value.toInt());
943     } else if (key == "audio_index") {
944         if (value.isEmpty()) {
945             m_properties.remove("audio_index");
946             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
947         } else setProducerProperty("audio_index", value.toInt());
948     }
949 }
950
951 QMap <QString, QString> DocClipBase::properties() const
952 {
953     return m_properties;
954 }
955
956 bool DocClipBase::slotGetAudioThumbs()
957 {
958     if (m_thumbProd == NULL || isPlaceHolder()) return false;
959     if (!KdenliveSettings::audiothumbnails() || m_audioTimer == NULL) {
960         if (m_audioTimer != NULL) m_audioTimer->stop();
961         return false;
962     }
963     if (m_audioThumbCreated) {
964         m_audioTimer->stop();
965         return false;
966     }
967     m_audioTimer->start(1500);
968     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
969     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
970     return true;
971 }
972
973 bool DocClipBase::isPlaceHolder() const
974 {
975     return m_placeHolder;
976 }
977
978 void DocClipBase::addCutZone(int in, int out, QString desc)
979 {
980     CutZoneInfo info;
981     info.zone = QPoint(in, out);
982     info.description = desc;
983     for (int i = 0; i < m_cutZones.count(); i++)
984         if (m_cutZones.at(i).zone == info.zone) {
985             return;
986         }
987     m_cutZones.append(info);
988 }
989
990 bool DocClipBase::hasCutZone(QPoint p) const
991 {
992     for (int i = 0; i < m_cutZones.count(); i++)
993         if (m_cutZones.at(i).zone == p) return true;
994     return false;
995 }
996
997
998 void DocClipBase::removeCutZone(int in, int out)
999 {
1000     QPoint p(in, out);
1001     for (int i = 0; i < m_cutZones.count(); i++) {
1002         if (m_cutZones.at(i).zone == p) {
1003             m_cutZones.removeAt(i);
1004             i--;
1005         }
1006     }
1007 }
1008
1009 void DocClipBase::updateCutZone(int oldin, int oldout, int in, int out, QString desc)
1010 {
1011     QPoint old(oldin, oldout);
1012     for (int i = 0; i < m_cutZones.size(); ++i) {
1013         if (m_cutZones.at(i).zone == old) {
1014             CutZoneInfo info;
1015             info.zone = QPoint(in, out);
1016             info.description = desc;
1017             m_cutZones.replace(i, info);
1018             break;
1019         }
1020     }
1021 }
1022
1023 QList <CutZoneInfo> DocClipBase::cutZones() const
1024 {
1025     return m_cutZones;
1026 }
1027
1028 bool DocClipBase::hasVideoCodec(const QString &codec) const
1029 {
1030     Mlt::Producer *prod = NULL;
1031     if (m_baseTrackProducers.count() == 0) return false;
1032     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1033         if (m_baseTrackProducers.at(i) != NULL) {
1034             prod = m_baseTrackProducers.at(i);
1035             break;
1036         }
1037     }
1038
1039     if (!prod) return false;
1040     int default_video = prod->get_int("video_index");
1041     char property[200];
1042     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1043     return prod->get(property) == codec;
1044 }
1045
1046 bool DocClipBase::hasAudioCodec(const QString &codec) const
1047 {
1048     Mlt::Producer *prod = NULL;
1049     if (m_baseTrackProducers.count() == 0) return false;
1050     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1051         if (m_baseTrackProducers.at(i) != NULL) {
1052             prod = m_baseTrackProducers.at(i);
1053             break;
1054         }
1055     }
1056     if (!prod) return false;
1057     int default_video = prod->get_int("audio_index");
1058     char property[200];
1059     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1060     return prod->get(property) == codec;
1061 }
1062