]> git.sesse.net Git - kdenlive/blob - src/kthumb.cpp
Fix thumbnails of transparent clips sometimes messed up
[kdenlive] / src / kthumb.cpp
1 /***************************************************************************
2                         krender.cpp  -  description
3                            -------------------
4   begin                : Fri Nov 22 2002
5   copyright            : (C) 2002 by Jason Wood
6   email                : jasonwood@blueyonder.co.uk
7   copyright            : (C) 2005 Lcio Fl�io Corr�
8   email                : lucio.correa@gmail.com
9   copyright            : (C) Marco Gittler
10   email                : g.marco@freenet.de
11
12 ***************************************************************************/
13
14 /***************************************************************************
15  *                                                                         *
16  *   This program is free software; you can redistribute it and/or modify  *
17  *   it under the terms of the GNU General Public License as published by  *
18  *   the Free Software Foundation; either version 2 of the License, or     *
19  *   (at your option) any later version.                                   *
20  *                                                                         *
21  ***************************************************************************/
22
23 #include "kthumb.h"
24 #include "clipmanager.h"
25 #include "renderer.h"
26 #include "kdenlivesettings.h"
27
28 #include <mlt++/Mlt.h>
29
30 #include <kio/netaccess.h>
31 #include <kdebug.h>
32 #include <klocale.h>
33 #include <kfileitem.h>
34 #include <kmessagebox.h>
35 #include <KStandardDirs>
36
37 #include <qxml.h>
38 #include <QImage>
39 #include <QApplication>
40 #include <QtConcurrentRun>
41 #include <QVarLengthArray>
42
43 KThumb::KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent) :
44     QObject(parent),
45     m_url(url),
46     m_thumbFile(),
47     m_dar(1),
48     m_ratio(1),
49     m_producer(NULL),
50     m_clipManager(clipManager),
51     m_id(id)
52 {
53     m_thumbFile = clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
54 }
55
56 KThumb::~KThumb()
57 {
58     if (m_producer) m_clipManager->stopThumbs(m_id);
59     m_producer = NULL;
60     m_intraFramesQueue.clear();
61     m_intra.waitForFinished();
62 }
63
64 void KThumb::setProducer(Mlt::Producer *producer)
65 {
66     if (m_producer) m_clipManager->stopThumbs(m_id);
67     m_intraFramesQueue.clear();
68     m_intra.waitForFinished();
69     QMutexLocker lock(&m_mutex);
70     m_producer = producer;
71     // FIXME: the profile() call leaks an object, but trying to free
72     // it leads to a double-free in Profile::~Profile()
73     if (producer) {
74         Mlt::Profile *profile = producer->profile();
75         m_dar = profile->dar();
76         m_ratio = (double) profile->width() / profile->height();
77     }
78 }
79
80 void KThumb::clearProducer()
81 {
82     if (m_producer) setProducer(NULL);
83 }
84
85 bool KThumb::hasProducer() const
86 {
87     return m_producer != NULL;
88 }
89
90 void KThumb::updateThumbUrl(const QString &hash)
91 {
92     m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
93 }
94
95 void KThumb::updateClipUrl(KUrl url, const QString &hash)
96 {
97     m_url = url;
98     m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
99 }
100
101 //static
102 QPixmap KThumb::getImage(KUrl url, int width, int height)
103 {
104     if (url.isEmpty()) return QPixmap();
105     return getImage(url, 0, width, height);
106 }
107
108 void KThumb::extractImage(QList <int>frames)
109 {
110     if (!KdenliveSettings::videothumbnails() || m_producer == NULL) return;
111     m_clipManager->requestThumbs(m_id, frames);
112 }
113
114
115 void KThumb::getThumb(int frame)
116 {
117     const int theight = KdenliveSettings::trackheight();
118     const int swidth = (int)(theight * m_ratio + 0.5);
119     const int dwidth = (int)(theight * m_dar + 0.5);
120     QImage img = getProducerFrame(frame, swidth, dwidth, theight);
121     emit thumbReady(frame, img);
122 }
123
124 void KThumb::getGenericThumb(int frame, int height, int type)
125 {
126     const int swidth = (int)(height * m_ratio + 0.5);
127     const int dwidth = (int)(height * m_dar + 0.5);
128     QImage img = getProducerFrame(frame, swidth, dwidth, height);
129     m_clipManager->projectTreeThumbReady(m_id, frame, img, type);
130 }
131
132 QImage KThumb::extractImage(int frame, int width, int height)
133 {
134     if (m_producer == NULL) {
135         QImage img(width, height, QImage::Format_ARGB32_Premultiplied);
136         img.fill(QColor(Qt::black).rgb());
137         return img;
138     }
139     return getProducerFrame(frame, (int) (height * m_ratio + 0.5), width, height);
140 }
141
142 //static
143 QPixmap KThumb::getImage(KUrl url, int frame, int width, int height)
144 {
145     Mlt::Profile profile(KdenliveSettings::current_profile().toUtf8().constData());
146     QPixmap pix(width, height);
147     if (url.isEmpty()) return pix;
148     Mlt::Producer *producer = new Mlt::Producer(profile, url.path().toUtf8().constData());
149     double swidth = (double) profile.width() / profile.height();
150     pix = QPixmap::fromImage(getFrame(producer, frame, (int) (height * swidth + 0.5), width, height));
151     delete producer;
152     return pix;
153 }
154
155
156 QImage KThumb::getProducerFrame(int framepos, int frameWidth, int displayWidth, int height)
157 {
158     if (m_producer == NULL || !m_producer->is_valid()) {
159         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
160         p.fill(QColor(Qt::red).rgb());
161         return p;
162     }
163     if (m_producer->is_blank()) {
164         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
165         p.fill(QColor(Qt::black).rgb());
166         return p;
167     }
168     QMutexLocker lock(&m_mutex);
169     m_producer->seek(framepos);
170     Mlt::Frame *frame = m_producer->get_frame();
171     /*frame->set("rescale.interp", "nearest");
172     frame->set("deinterlace_method", "onefield");
173     frame->set("top_field_first", -1 );*/
174     QImage p = getFrame(frame, frameWidth, displayWidth, height);
175     delete frame;
176     return p;
177 }
178
179 //static
180 QImage KThumb::getFrame(Mlt::Producer *producer, int framepos, int frameWidth, int displayWidth, int height)
181 {
182     if (producer == NULL || !producer->is_valid()) {
183         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
184         p.fill(QColor(Qt::red).rgb());
185         return p;
186     }
187     if (producer->is_blank()) {
188         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
189         p.fill(QColor(Qt::black).rgb());
190         return p;
191     }
192
193     producer->seek(framepos);
194     Mlt::Frame *frame = producer->get_frame();
195     frame->set("rescale.interp", "nearest");
196     frame->set("deinterlace_method", "onefield");
197     frame->set("top_field_first", -1 );
198     QImage p = getFrame(frame, frameWidth, displayWidth, height);
199     delete frame;
200     return p;
201 }
202
203
204 //static
205 QImage KThumb::getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int height)
206 {
207     QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
208     if (frame == NULL || !frame->is_valid()) {
209         p.fill(QColor(Qt::red).rgb());
210         return p;
211     }
212     
213     int ow = frameWidth;
214     int oh = height;
215     mlt_image_format format = mlt_image_rgb24a;
216     //frame->set("progressive", "1");
217     if (ow % 2 == 1) ow++;
218     QImage image(ow, oh, QImage::Format_ARGB32_Premultiplied);
219     const uchar* imagedata = frame->get_image(format, ow, oh);
220     memcpy(image.bits(), imagedata, ow * oh * 4);//.byteCount());
221     
222     //const uchar* imagedata = frame->get_image(format, ow, oh);
223     //QImage image(imagedata, ow, oh, QImage::Format_ARGB32_Premultiplied);
224     
225     if (!image.isNull()) {
226         if (ow > (2 * displayWidth)) {
227             // there was a scaling problem, do it manually
228             image = image.scaled(displayWidth, height).rgbSwapped();
229         } else {
230             image = image.scaled(displayWidth, height, Qt::IgnoreAspectRatio).rgbSwapped();
231         }
232 #if QT_VERSION >= 0x040800
233         p.fill(QColor(100, 100, 100, 70));
234         QPainter painter(&p);
235 #else
236         p.fill(Qt::transparent);
237         QPainter painter(&p);
238         painter.fillRect(p.rect(), QColor(100, 100, 100, 70));
239 #endif
240         painter.drawImage(p.rect(), image);
241         painter.end();
242     } else
243         p.fill(QColor(Qt::red).rgb());
244     return p;
245 }
246
247 //static
248 uint KThumb::imageVariance(QImage image )
249 {
250     uint delta = 0;
251     uint avg = 0;
252     uint bytes = image.numBytes();
253     uint STEPS = bytes/2;
254     QVarLengthArray<uchar> pivot(STEPS);
255     const uchar *bits=image.bits();
256     // First pass: get pivots and taking average
257     for( uint i=0; i<STEPS ; i++ ){
258         pivot[i] = bits[2 * i];
259 #if QT_VERSION >= 0x040700
260         avg+=pivot.at(i);
261 #else
262         avg+=pivot[i];
263 #endif
264     }
265     if (STEPS)
266         avg=avg/STEPS;
267     // Second Step: calculate delta (average?)
268     for (uint i=0; i<STEPS; i++)
269     {
270 #if QT_VERSION >= 0x040700
271         int curdelta=abs(int(avg - pivot.at(i)));
272 #else
273         int curdelta=abs(int(avg - pivot[i]));
274 #endif
275         delta+=curdelta;
276     }
277     if (STEPS)
278         return delta/STEPS;
279     else
280         return 0;
281 }
282
283 /*
284 void KThumb::getImage(KUrl url, int frame, int width, int height)
285 {
286     if (url.isEmpty()) return;
287     QPixmap image(width, height);
288     Mlt::Producer m_producer(url.path().toUtf8().constData());
289     image.fill(Qt::black);
290
291     if (m_producer.is_blank()) {
292  emit thumbReady(frame, image);
293  return;
294     }
295     Mlt::Filter m_convert("avcolour_space");
296     m_convert.set("forced", mlt_image_rgb24a);
297     m_producer.attach(m_convert);
298     m_producer.seek(frame);
299     Mlt::Frame * m_frame = m_producer.get_frame();
300     mlt_image_format format = mlt_image_rgb24a;
301     width = width - 2;
302     height = height - 2;
303     if (m_frame && m_frame->is_valid()) {
304      uint8_t *thumb = m_frame->get_image(format, width, height);
305      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
306      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width + 2, height + 2);
307     }
308     if (m_frame) delete m_frame;
309     emit thumbReady(frame, image);
310 }
311
312 void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int height)
313 {
314     if (url.isEmpty()) return;
315     QPixmap image(width, height);
316     Mlt::Producer m_producer(url.path().toUtf8().constData());
317     image.fill(QColor(Qt::black).rgb());
318
319     if (m_producer.is_blank()) {
320  emit thumbReady(startframe, image);
321  emit thumbReady(endframe, image);
322  return;
323     }
324     Mlt::Filter m_convert("avcolour_space");
325     m_convert.set("forced", mlt_image_rgb24a);
326     m_producer.attach(m_convert);
327     m_producer.seek(startframe);
328     Mlt::Frame * m_frame = m_producer.get_frame();
329     mlt_image_format format = mlt_image_rgb24a;
330     width = width - 2;
331     height = height - 2;
332
333     if (m_frame && m_frame->is_valid()) {
334      uint8_t *thumb = m_frame->get_image(format, width, height);
335      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
336      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
337     }
338     if (m_frame) delete m_frame;
339     emit thumbReady(startframe, image);
340
341     image.fill(Qt::black);
342     m_producer.seek(endframe);
343     m_frame = m_producer.get_frame();
344
345     if (m_frame && m_frame->is_valid()) {
346      uint8_t *thumb = m_frame->get_image(format, width, height);
347      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
348      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
349     }
350     if (m_frame) delete m_frame;
351     emit thumbReady(endframe, image);
352 }
353 */
354
355 void KThumb::slotCreateAudioThumbs()
356 {
357     m_clipManager->askForAudioThumb(m_id);
358 }
359
360 #if KDE_IS_VERSION(4,5,0)
361 void KThumb::queryIntraThumbs(QList <int> missingFrames)
362 {
363     foreach (int i, missingFrames) {
364         if (!m_intraFramesQueue.contains(i)) m_intraFramesQueue.append(i);
365     }
366     qSort(m_intraFramesQueue);
367     if (!m_intra.isRunning()) {
368         m_intra = QtConcurrent::run(this, &KThumb::slotGetIntraThumbs);
369     }
370 }
371
372 void KThumb::slotGetIntraThumbs()
373 {
374     const int theight = KdenliveSettings::trackheight();
375     const int frameWidth = (int)(theight * m_ratio + 0.5);
376     const int displayWidth = (int)(theight * m_dar + 0.5);
377     QString path = m_url.path() + '_';
378     bool addedThumbs = false;
379
380     while (!m_intraFramesQueue.isEmpty()) {
381         int pos = m_intraFramesQueue.takeFirst();
382         if (!m_clipManager->pixmapCache->contains(path + QString::number(pos))) {
383             if (m_clipManager->pixmapCache->insertImage(path + QString::number(pos), getProducerFrame(pos, frameWidth, displayWidth, theight))) {
384                 addedThumbs = true;
385             }
386             else kDebug()<<"// INSERT FAILD FOR: "<<pos;
387         }
388         m_intraFramesQueue.removeAll(pos);
389     }
390     if (addedThumbs) emit thumbsCached();
391 }
392
393 QImage KThumb::findCachedThumb(const QString &path)
394 {
395     QImage img;
396     m_clipManager->pixmapCache->findImage(path, &img);
397     return img;
398 }
399 #endif
400
401 #include "kthumb.moc"
402