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