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