]> git.sesse.net Git - kdenlive/blob - src/docclipbase.cpp
Add colorspace and luma range to advanced clip properties.
[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         m_audioTrackProducers.at(track)->set("id", QString(getId() + '_' + QString::number(track) + "_audio").toUtf8().data());
523         if (m_properties.contains("force_colorspace")) m_audioTrackProducers.at(track)->set("force_colorspace", m_properties.value("force_colorspace").toInt());
524         if (m_properties.contains("full_luma")) m_audioTrackProducers.at(track)->set("set.force_full_luma", m_properties.value("full_luma").toInt());
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         m_videoOnlyProducer->set("id", QString(getId() + "_video").toUtf8().data());
544         if (m_properties.contains("force_colorspace")) m_videoOnlyProducer->set("force_colorspace", m_properties.value("force_colorspace").toInt());
545         if (m_properties.contains("full_luma")) m_videoOnlyProducer->set("set.force_full_luma", m_properties.value("full_luma").toInt());
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         m_baseTrackProducers[track]->set("id", QString(getId() + '_' + QString::number(track)).toUtf8().data());
588         if (KdenliveSettings::dropbframes() && m_baseTrackProducers.at(i)->get("skip_loop_filter") && strcmp(m_baseTrackProducers.at(i)->get("skip_loop_filter"), "all") == 0) {
589             m_baseTrackProducers[track]->set("skip_loop_filter", "all");
590             m_baseTrackProducers[track]->set("skip_frame", "bidir");
591         }
592         if (m_properties.contains("force_colorspace")) m_baseTrackProducers[track]->set("force_colorspace", m_properties.value("force_colorspace").toInt());
593         if (m_properties.contains("full_luma")) m_baseTrackProducers[track]->set("set.force_full_luma", m_properties.value("full_luma").toInt());
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         /*Mlt::Producer producer(*(m_clipProducer->profile()), getProperty("resource").toUtf8().data());
647         delete m_clipProducer;
648         m_clipProducer = new Mlt::Producer(producer.get_producer());
649         if (!getProperty("out").isEmpty()) m_clipProducer->set_in_and_out(getProperty("in").toInt(), getProperty("out").toInt());*/
650         setProducerProperty("ttl", getProperty("ttl").toInt());
651         //m_clipProducer->set("id", getProperty("id"));
652         if (!getProperty("animation").isEmpty()) {
653             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
654             int ct = 0;
655             Mlt::Filter *filter = clipService.filter(ct);
656             while (filter) {
657                 if (strcmp(filter->get("mlt_service"), "affine") == 0) {
658                     break;
659                 } else if (strcmp(filter->get("mlt_service"), "boxblur") == 0) {
660                     clipService.detach(*filter);
661                 } else ct++;
662                 filter = clipService.filter(ct);
663             }
664
665             if (!filter || strcmp(filter->get("mlt_service"), "affine")) {
666                 // filter does not exist, create it.
667                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "affine");
668                 if (filter && filter->is_valid()) {
669                     int cycle = getProperty("ttl").toInt();
670                     QString geometry = SlideshowClip::animationToGeometry(getProperty("animation"), cycle);
671                     if (!geometry.isEmpty()) {
672                         if (getProperty("animation").contains("low-pass")) {
673                             Mlt::Filter *blur = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "boxblur");
674                             if (blur && blur->is_valid())
675                                 clipService.attach(*blur);
676                         }
677                         filter->set("transition.geometry", geometry.toUtf8().data());
678                         filter->set("transition.cycle", cycle);
679                         clipService.attach(*filter);
680                     }
681                 }
682             }
683         } else {
684             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
685             int ct = 0;
686             Mlt::Filter *filter = clipService.filter(0);
687             while (filter) {
688                 if (strcmp(filter->get("mlt_service"), "affine") == 0 || strcmp(filter->get("mlt_service"), "boxblur") == 0) {
689                     clipService.detach(*filter);
690                 } else ct++;
691                 filter = clipService.filter(ct);
692             }
693         }
694         if (getProperty("fade") == "1") {
695             // we want a fade filter effect
696             kDebug() << "////////////   FADE WANTED";
697             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
698             int ct = 0;
699             Mlt::Filter *filter = clipService.filter(ct);
700             while (filter) {
701                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
702                     break;
703                 }
704                 ct++;
705                 filter = clipService.filter(ct);
706             }
707
708             if (filter && strcmp(filter->get("mlt_service"), "luma") == 0) {
709                 filter->set("cycle", getProperty("ttl").toInt());
710                 filter->set("duration", getProperty("luma_duration").toInt());
711                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
712                 if (!getProperty("softness").isEmpty()) {
713                     int soft = getProperty("softness").toInt();
714                     filter->set("luma.softness", (double) soft / 100.0);
715                 }
716             } else {
717                 // filter does not exist, create it...
718                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "luma");
719                 filter->set("cycle", getProperty("ttl").toInt());
720                 filter->set("duration", getProperty("luma_duration").toInt());
721                 filter->set("luma.resource", getProperty("luma_file").toUtf8().data());
722                 if (!getProperty("softness").isEmpty()) {
723                     int soft = getProperty("softness").toInt();
724                     filter->set("luma.softness", (double) soft / 100.0);
725                 }
726                 clipService.attach(*filter);
727             }
728         } else {
729             kDebug() << "////////////   FADE NOT WANTED!!!";
730             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
731             int ct = 0;
732             Mlt::Filter *filter = clipService.filter(0);
733             while (filter) {
734                 if (strcmp(filter->get("mlt_service"), "luma") == 0) {
735                     clipService.detach(*filter);
736                 } else ct++;
737                 filter = clipService.filter(ct);
738             }
739         }
740         if (getProperty("crop") == "1") {
741             // we want a center crop filter effect
742             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
743             int ct = 0;
744             Mlt::Filter *filter = clipService.filter(ct);
745             while (filter) {
746                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
747                     break;
748                 }
749                 ct++;
750                 filter = clipService.filter(ct);
751             }
752
753             if (!filter || strcmp(filter->get("mlt_service"), "crop")) {
754                 // filter does not exist, create it...
755                 Mlt::Filter *filter = new Mlt::Filter(*(m_baseTrackProducers.at(0)->profile()), "crop");
756                 filter->set("center", 1);
757                 clipService.attach(*filter);
758             }
759         } else {
760             Mlt::Service clipService(m_baseTrackProducers.at(0)->get_service());
761             int ct = 0;
762             Mlt::Filter *filter = clipService.filter(0);
763             while (filter) {
764                 if (strcmp(filter->get("mlt_service"), "crop") == 0) {
765                     clipService.detach(*filter);
766                 } else ct++;
767                 filter = clipService.filter(ct);
768             }
769         }
770     }
771 }
772
773 void DocClipBase::setProperties(QMap <QString, QString> properties)
774 {
775     // changing clip type is not allowed
776     properties.remove("type");
777     QMapIterator<QString, QString> i(properties);
778     bool refreshProducer = false;
779     QStringList keys;
780     keys << "luma_duration" << "luma_file" << "fade" << "ttl" << "softness" << "crop" << "animation";
781     while (i.hasNext()) {
782         i.next();
783         setProperty(i.key(), i.value());
784         if (m_clipType == SLIDESHOW && keys.contains(i.key())) refreshProducer = true;
785     }
786     if (refreshProducer) slotRefreshProducer();
787 }
788
789 void DocClipBase::setMetadata(QMap <QString, QString> properties)
790 {
791     QMapIterator<QString, QString> i(properties);
792     while (i.hasNext()) {
793         i.next();
794         if (i.value().isEmpty() && m_metadata.contains(i.key())) {
795             m_metadata.remove(i.key());
796         } else {
797             m_metadata.insert(i.key(), i.value());
798         }
799     }
800 }
801
802 QMap <QString, QString> DocClipBase::metadata() const
803 {
804     return m_metadata;
805 }
806
807 void DocClipBase::clearProperty(const QString &key)
808 {
809     m_properties.remove(key);
810 }
811
812 void DocClipBase::getFileHash(const QString url)
813 {
814     if (m_clipType == SLIDESHOW) return;
815     QFile file(url);
816     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
817         QByteArray fileData;
818         QByteArray fileHash;
819         //kDebug() << "SETTING HASH of" << value;
820         m_properties.insert("file_size", QString::number(file.size()));
821         /*
822                * 1 MB = 1 second per 450 files (or faster)
823                * 10 MB = 9 seconds per 450 files (or faster)
824                */
825         if (file.size() > 1000000*2) {
826             fileData = file.read(1000000);
827             if (file.seek(file.size() - 1000000))
828                 fileData.append(file.readAll());
829         } else
830             fileData = file.readAll();
831         file.close();
832         fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
833         m_properties.insert("file_hash", QString(fileHash.toHex()));
834     }
835 }
836
837 bool DocClipBase::checkHash() const
838 {
839     KUrl url = fileURL();
840     if (!url.isEmpty() && getClipHash() != getHash(url.path())) return false;
841     return true;
842 }
843
844 QString DocClipBase::getClipHash() const
845 {
846     QString hash;
847     if (m_clipType == SLIDESHOW) hash = QCryptographicHash::hash(m_properties.value("resource").toAscii().data(), QCryptographicHash::Md5).toHex();
848     else if (m_clipType == COLOR) hash = QCryptographicHash::hash(m_properties.value("colour").toAscii().data(), QCryptographicHash::Md5).toHex();
849     else if (m_clipType == TEXT) hash = QCryptographicHash::hash(QString("title" + getId() + m_properties.value("xmldata")).toUtf8().data(), QCryptographicHash::Md5).toHex();
850     else hash = m_properties.value("file_hash");
851     return hash;
852 }
853
854 void DocClipBase::setPlaceHolder(bool place)
855 {
856     m_placeHolder = place;
857 }
858
859 // static
860 QString DocClipBase::getHash(const QString &path)
861 {
862     QFile file(path);
863     if (file.open(QIODevice::ReadOnly)) { // write size and hash only if resource points to a file
864         QByteArray fileData;
865         QByteArray fileHash;
866         /*
867                * 1 MB = 1 second per 450 files (or faster)
868                * 10 MB = 9 seconds per 450 files (or faster)
869                */
870         if (file.size() > 1000000*2) {
871             fileData = file.read(1000000);
872             if (file.seek(file.size() - 1000000))
873                 fileData.append(file.readAll());
874         } else
875             fileData = file.readAll();
876         file.close();
877         return QCryptographicHash::hash(fileData, QCryptographicHash::Md5).toHex();
878     }
879     return QString();
880 }
881
882 void DocClipBase::refreshThumbUrl()
883 {
884     if (m_thumbProd) m_thumbProd->updateThumbUrl(m_properties.value("file_hash"));
885 }
886
887 void DocClipBase::setProperty(const QString &key, const QString &value)
888 {
889     m_properties.insert(key, value);
890     if (key == "resource") {
891         getFileHash(value);
892         if (m_thumbProd) m_thumbProd->updateClipUrl(KUrl(value), m_properties.value("file_hash"));
893     } else if (key == "out") setDuration(GenTime(value.toInt(), KdenliveSettings::project_fps()));
894     //else if (key == "transparency") m_clipProducer->set("transparency", value.toInt());
895     else if (key == "colour") {
896         setProducerProperty("colour", value.toUtf8().data());
897     } else if (key == "templatetext") {
898         setProducerProperty("templatetext", value.toUtf8().data());
899         setProducerProperty("force_reload", 1);
900     } else if (key == "xmldata") {
901         setProducerProperty("xmldata", value.toUtf8().data());
902         setProducerProperty("force_reload", 1);
903     } else if (key == "force_aspect_ratio") {
904         if (value.isEmpty()) {
905             m_properties.remove("force_aspect_ratio");
906             resetProducerProperty("force_aspect_ratio");
907         } else setProducerProperty("force_aspect_ratio", value.toDouble());
908     } else if (key == "force_fps") {
909         if (value.isEmpty()) {
910             m_properties.remove("force_fps");
911             resetProducerProperty("force_fps");
912         } else setProducerProperty("force_fps", value.toDouble());
913     } else if (key == "force_progressive") {
914         if (value.isEmpty()) {
915             m_properties.remove("force_progressive");
916             resetProducerProperty("force_progressive");
917         } else setProducerProperty("force_progressive", value.toInt());
918     } else if (key == "threads") {
919         if (value.isEmpty()) {
920             m_properties.remove("threads");
921             setProducerProperty("threads", 1);
922         } else setProducerProperty("threads", value.toInt());
923     } else if (key == "video_index") {
924         if (value.isEmpty()) {
925             m_properties.remove("video_index");
926             setProducerProperty("video_index", m_properties.value("default_video").toInt());
927         } else setProducerProperty("video_index", value.toInt());
928     } else if (key == "audio_index") {
929         if (value.isEmpty()) {
930             m_properties.remove("audio_index");
931             setProducerProperty("audio_index", m_properties.value("default_audio").toInt());
932         } else setProducerProperty("audio_index", value.toInt());
933     } else if (key == "force_colorspace") {
934         if (value.isEmpty()) {
935             m_properties.remove("force_colorspace");
936             resetProducerProperty("force_colorspace");
937         } else setProducerProperty("force_colorspace", value.toInt());
938     } else if (key == "full_luma") {
939         if (value.isEmpty()) {
940             m_properties.remove("full_luma");
941             resetProducerProperty("set.force_full_luma");
942         } else setProducerProperty("set.force_full_luma", value.toInt());
943     }
944 }
945
946 QMap <QString, QString> DocClipBase::properties() const
947 {
948     return m_properties;
949 }
950
951 bool DocClipBase::slotGetAudioThumbs()
952 {
953     if (m_thumbProd == NULL || isPlaceHolder()) return false;
954     if (!KdenliveSettings::audiothumbnails() || m_audioTimer == NULL) {
955         if (m_audioTimer != NULL) m_audioTimer->stop();
956         return false;
957     }
958     if (m_audioThumbCreated) {
959         m_audioTimer->stop();
960         return false;
961     }
962     m_audioTimer->start(1500);
963     double lengthInFrames = duration().frames(KdenliveSettings::project_fps());
964     m_thumbProd->getAudioThumbs(2, 0, lengthInFrames /*must be number of frames*/, 20);
965     return true;
966 }
967
968 bool DocClipBase::isPlaceHolder() const
969 {
970     return m_placeHolder;
971 }
972
973 void DocClipBase::addCutZone(int in, int out, QString desc)
974 {
975     CutZoneInfo info;
976     info.zone = QPoint(in, out);
977     info.description = desc;
978     for (int i = 0; i < m_cutZones.count(); i++)
979         if (m_cutZones.at(i).zone == info.zone) {
980             return;
981         }
982     m_cutZones.append(info);
983 }
984
985 bool DocClipBase::hasCutZone(QPoint p) const
986 {
987     for (int i = 0; i < m_cutZones.count(); i++)
988         if (m_cutZones.at(i).zone == p) return true;
989     return false;
990 }
991
992
993 void DocClipBase::removeCutZone(int in, int out)
994 {
995     QPoint p(in, out);
996     for (int i = 0; i < m_cutZones.count(); i++) {
997         if (m_cutZones.at(i).zone == p) {
998             m_cutZones.removeAt(i);
999             i--;
1000         }
1001     }
1002 }
1003
1004 void DocClipBase::updateCutZone(int oldin, int oldout, int in, int out, QString desc)
1005 {
1006     QPoint old(oldin, oldout);
1007     for (int i = 0; i < m_cutZones.size(); ++i) {
1008         if (m_cutZones.at(i).zone == old) {
1009             CutZoneInfo info;
1010             info.zone = QPoint(in, out);
1011             info.description = desc;
1012             m_cutZones.replace(i, info);
1013             break;
1014         }
1015     }
1016 }
1017
1018 QList <CutZoneInfo> DocClipBase::cutZones() const
1019 {
1020     return m_cutZones;
1021 }
1022
1023 bool DocClipBase::hasVideoCodec(const QString &codec) const
1024 {
1025     Mlt::Producer *prod = NULL;
1026     if (m_baseTrackProducers.count() == 0) return false;
1027     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1028         if (m_baseTrackProducers.at(i) != NULL) {
1029             prod = m_baseTrackProducers.at(i);
1030             break;
1031         }
1032     }
1033
1034     if (!prod) return false;
1035     int default_video = prod->get_int("video_index");
1036     char property[200];
1037     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1038     return prod->get(property) == codec;
1039 }
1040
1041 bool DocClipBase::hasAudioCodec(const QString &codec) const
1042 {
1043     Mlt::Producer *prod = NULL;
1044     if (m_baseTrackProducers.count() == 0) return false;
1045     for (int i = 0; i < m_baseTrackProducers.count(); i++) {
1046         if (m_baseTrackProducers.at(i) != NULL) {
1047             prod = m_baseTrackProducers.at(i);
1048             break;
1049         }
1050     }
1051     if (!prod) return false;
1052     int default_video = prod->get_int("audio_index");
1053     char property[200];
1054     snprintf(property, sizeof(property), "meta.media.%d.codec.name", default_video);
1055     return prod->get(property) == codec;
1056 }
1057