]> git.sesse.net Git - kdenlive/blob - src/kthumb.cpp
Cleanup thumbnails (prefer QImage over QPixmap)
[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, const char */*name*/) :
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_intraFramesQueue.clear();
60     m_intra.waitForFinished();
61 }
62
63 void KThumb::setProducer(Mlt::Producer *producer)
64 {
65     if (m_producer) m_clipManager->stopThumbs(m_id);
66     m_intraFramesQueue.clear();
67     m_intra.waitForFinished();
68     m_mutex.lock();
69     m_producer = producer;
70     // FIXME: the profile() call leaks an object, but trying to free
71     // it leads to a double-free in Profile::~Profile()
72     if (producer) {
73         Mlt::Profile *profile = producer->profile();
74         m_dar = profile->dar();
75         m_ratio = (double) profile->width() / profile->height();
76     }
77     m_mutex.unlock();
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
121     QImage img = getProducerFrame(frame, swidth, dwidth, theight);
122     emit thumbReady(frame, img);
123 }
124
125 QImage KThumb::extractImage(int frame, int width, int height)
126 {
127     if (m_producer == NULL) {
128         QImage img(width, height, QImage::Format_ARGB32_Premultiplied);
129         img.fill(Qt::black);
130         return img;
131     }
132     return getProducerFrame(frame, (int) (height * m_ratio + 0.5), width, height);
133 }
134
135 //static
136 QPixmap KThumb::getImage(KUrl url, int frame, int width, int height)
137 {
138     Mlt::Profile profile(KdenliveSettings::current_profile().toUtf8().constData());
139     QPixmap pix(width, height);
140     if (url.isEmpty()) return pix;
141
142     //"<mlt><playlist><producer resource=\"" + url.path() + "\" /></playlist></mlt>");
143     //Mlt::Producer producer(profile, "xml-string", tmp);
144     Mlt::Producer *producer = new Mlt::Producer(profile, url.path().toUtf8().constData());
145     double swidth = (double) profile.width() / profile.height();
146     pix = QPixmap::fromImage(getFrame(producer, frame, (int) (height * swidth + 0.5), width, height));
147     delete producer;
148     return pix;
149 }
150
151
152 QImage KThumb::getProducerFrame(int framepos, int frameWidth, int displayWidth, int height)
153 {
154     if (m_producer == NULL || !m_producer->is_valid()) {
155         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
156         p.fill(QColor(Qt::red).rgb());
157         return p;
158     }
159     if (m_producer->is_blank()) {
160         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
161         p.fill(QColor(Qt::black).rgb());
162         return p;
163     }
164     m_mutex.lock();
165     m_producer->seek(framepos);
166     Mlt::Frame *frame = m_producer->get_frame();
167     QImage p = getFrame(frame, frameWidth, displayWidth, height);
168     delete frame;
169     m_mutex.unlock();
170     return p;
171 }
172
173 //static
174 QImage KThumb::getFrame(Mlt::Producer *producer, int framepos, int frameWidth, int displayWidth, int height)
175 {
176     if (producer == NULL || !producer->is_valid()) {
177         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
178         p.fill(QColor(Qt::red).rgb());
179         return p;
180     }
181     if (producer->is_blank()) {
182         QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
183         p.fill(QColor(Qt::black).rgb());
184         return p;
185     }
186
187     producer->seek(framepos);
188     Mlt::Frame *frame = producer->get_frame();
189     QImage p = getFrame(frame, frameWidth, displayWidth, height);
190     delete frame;
191     return p;
192 }
193
194
195 //static
196 QImage KThumb::getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int height)
197 {
198     QImage p(displayWidth, height, QImage::Format_ARGB32_Premultiplied);
199     if (frame == NULL || !frame->is_valid()) {
200         p.fill(QColor(Qt::red).rgb());
201         return p;
202     }
203
204     int ow = frameWidth;
205     int oh = height;
206     mlt_image_format format = mlt_image_rgb24a;
207
208     const uchar* imagedata = frame->get_image(format, ow, oh);
209     QImage image(ow, oh, QImage::Format_ARGB32_Premultiplied);
210     memcpy(image.bits(), imagedata, ow * oh * 4);//.byteCount());
211     
212     //const uchar* imagedata = frame->get_image(format, ow, oh);
213     //QImage image(imagedata, ow, oh, QImage::Format_ARGB32_Premultiplied);
214     
215     if (!image.isNull()) {
216         if (ow > (2 * displayWidth)) {
217             // there was a scaling problem, do it manually
218             image = image.scaled(displayWidth, height).rgbSwapped();
219         } else {
220             image = image.scaled(displayWidth, height, Qt::IgnoreAspectRatio).rgbSwapped();
221         }
222         p.fill(QColor(Qt::black).rgb());
223         QPainter painter(&p);
224         painter.drawImage(p.rect(), image);
225         painter.end();
226     } else
227         p.fill(QColor(Qt::red).rgb());
228     return p;
229 }
230
231 //static
232 uint KThumb::imageVariance(QImage image )
233 {
234     uint delta = 0;
235     uint avg = 0;
236     uint bytes = image.numBytes();
237     uint STEPS = bytes/2;
238     QVarLengthArray<uchar> pivot(STEPS);
239     const uchar *bits=image.bits();
240     // First pass: get pivots and taking average
241     for( uint i=0; i<STEPS ; i++ ){
242         pivot[i] = bits[2 * i];
243 #if QT_VERSION >= 0x040700
244         avg+=pivot.at(i);
245 #else
246         avg+=pivot[i];
247 #endif
248     }
249     avg=avg/STEPS;
250     // Second Step: calculate delta (average?)
251     for (uint i=0; i<STEPS; i++)
252     {
253 #if QT_VERSION >= 0x040700
254         int curdelta=abs(int(avg - pivot.at(i)));
255 #else
256         int curdelta=abs(int(avg - pivot[i]));
257 #endif
258         delta+=curdelta;
259     }
260     return delta/STEPS;
261 }
262
263 /*
264 void KThumb::getImage(KUrl url, int frame, int width, int height)
265 {
266     if (url.isEmpty()) return;
267     QPixmap image(width, height);
268     Mlt::Producer m_producer(url.path().toUtf8().constData());
269     image.fill(Qt::black);
270
271     if (m_producer.is_blank()) {
272  emit thumbReady(frame, image);
273  return;
274     }
275     Mlt::Filter m_convert("avcolour_space");
276     m_convert.set("forced", mlt_image_rgb24a);
277     m_producer.attach(m_convert);
278     m_producer.seek(frame);
279     Mlt::Frame * m_frame = m_producer.get_frame();
280     mlt_image_format format = mlt_image_rgb24a;
281     width = width - 2;
282     height = height - 2;
283     if (m_frame && m_frame->is_valid()) {
284      uint8_t *thumb = m_frame->get_image(format, width, height);
285      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
286      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width + 2, height + 2);
287     }
288     if (m_frame) delete m_frame;
289     emit thumbReady(frame, image);
290 }
291
292 void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int height)
293 {
294     if (url.isEmpty()) return;
295     QPixmap image(width, height);
296     Mlt::Producer m_producer(url.path().toUtf8().constData());
297     image.fill(Qt::black);
298
299     if (m_producer.is_blank()) {
300  emit thumbReady(startframe, image);
301  emit thumbReady(endframe, image);
302  return;
303     }
304     Mlt::Filter m_convert("avcolour_space");
305     m_convert.set("forced", mlt_image_rgb24a);
306     m_producer.attach(m_convert);
307     m_producer.seek(startframe);
308     Mlt::Frame * m_frame = m_producer.get_frame();
309     mlt_image_format format = mlt_image_rgb24a;
310     width = width - 2;
311     height = height - 2;
312
313     if (m_frame && m_frame->is_valid()) {
314      uint8_t *thumb = m_frame->get_image(format, width, height);
315      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
316      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
317     }
318     if (m_frame) delete m_frame;
319     emit thumbReady(startframe, image);
320
321     image.fill(Qt::black);
322     m_producer.seek(endframe);
323     m_frame = m_producer.get_frame();
324
325     if (m_frame && m_frame->is_valid()) {
326      uint8_t *thumb = m_frame->get_image(format, width, height);
327      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
328      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
329     }
330     if (m_frame) delete m_frame;
331     emit thumbReady(endframe, image);
332 }
333 */
334
335 void KThumb::slotCreateAudioThumbs()
336 {
337     m_clipManager->askForAudioThumb(m_id);
338 }
339
340 #if KDE_IS_VERSION(4,5,0)
341 void KThumb::queryIntraThumbs(QList <int> missingFrames)
342 {
343     foreach (int i, missingFrames) {
344         if (!m_intraFramesQueue.contains(i)) m_intraFramesQueue.append(i);
345     }
346     qSort(m_intraFramesQueue);
347     if (!m_intra.isRunning()) {
348         m_intra = QtConcurrent::run(this, &KThumb::slotGetIntraThumbs);
349     }
350 }
351
352 void KThumb::slotGetIntraThumbs()
353 {
354     const int theight = KdenliveSettings::trackheight();
355     const int frameWidth = (int)(theight * m_ratio + 0.5);
356     const int displayWidth = (int)(theight * m_dar + 0.5);
357     QString path = m_url.path() + "_";
358     bool addedThumbs = false;
359
360     while (!m_intraFramesQueue.isEmpty()) {
361         int pos = m_intraFramesQueue.takeFirst();
362         if (!m_clipManager->pixmapCache->contains(path + QString::number(pos))) {
363             if (m_clipManager->pixmapCache->insertImage(path + QString::number(pos), getProducerFrame(pos, frameWidth, displayWidth, theight))) {
364                 addedThumbs = true;
365             }
366             else kDebug()<<"// INSERT FAILD FOR: "<<pos;
367         }
368         m_intraFramesQueue.removeAll(pos);
369     }
370     if (addedThumbs) emit thumbsCached();
371 }
372
373 QImage KThumb::findCachedThumb(const QString &path)
374 {
375     QImage img;
376     m_clipManager->pixmapCache->findImage(path, &img);
377     return img;
378 }
379 #endif
380
381 #include "kthumb.moc"
382