]> git.sesse.net Git - kdenlive/blob - src/kthumb.cpp
Fetch timeline thumbnails in a different thread to improve workflow
[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
42 void MyThread::init(KUrl url, QString target, double frame, double frameLength, int frequency, int channels, int arrayWidth)
43 {
44     stop_me = false;
45     m_isWorking = false;
46     f.setFileName(target);
47     m_url = url;
48     m_frame = frame;
49     m_frameLength = frameLength;
50     m_frequency = frequency;
51     m_channels = channels;
52     m_arrayWidth = arrayWidth;
53 }
54
55 bool MyThread::isWorking()
56 {
57     return m_isWorking;
58 }
59
60 void MyThread::run()
61 {
62     if (!f.open(QIODevice::WriteOnly)) {
63         kDebug() << "++++++++  ERROR WRITING TO FILE: " << f.fileName() << endl;
64         kDebug() << "++++++++  DISABLING AUDIO THUMBS" << endl;
65         KdenliveSettings::setAudiothumbnails(false);
66         return;
67     }
68     m_isWorking = true;
69     Mlt::Profile prof((char*) KdenliveSettings::current_profile().toUtf8().data());
70     Mlt::Producer m_producer(prof, m_url.path().toUtf8().data());
71
72
73     if (KdenliveSettings::normaliseaudiothumbs()) {
74         Mlt::Filter m_convert(prof, "volume");
75         m_convert.set("gain", "normalise");
76         m_producer.attach(m_convert);
77     }
78
79     int last_val = 0;
80     int val = 0;
81     kDebug() << "for " << m_frame << " " << m_frameLength << " " << m_producer.is_valid();
82     for (int z = (int) m_frame; z < (int)(m_frame + m_frameLength) && m_producer.is_valid(); z++) {
83         if (stop_me) break;
84         val = (int)((z - m_frame) / (m_frame + m_frameLength) * 100.0);
85         if (last_val != val && val > 1) {
86             emit audioThumbProgress(val);
87             last_val = val;
88         }
89         m_producer.seek(z);
90         Mlt::Frame *mlt_frame = m_producer.get_frame();
91         if (mlt_frame && mlt_frame->is_valid()) {
92             double m_framesPerSecond = mlt_producer_get_fps(m_producer.get_producer());
93             int m_samples = mlt_sample_calculator(m_framesPerSecond, m_frequency, mlt_frame_get_position(mlt_frame->get_frame()));
94             mlt_audio_format m_audioFormat = mlt_audio_pcm;
95             qint16* m_pcm = static_cast<qint16*>(mlt_frame->get_audio(m_audioFormat, m_frequency, m_channels, m_samples));
96
97             for (int c = 0; c < m_channels; c++) {
98                 QByteArray m_array;
99                 m_array.resize(m_arrayWidth);
100                 for (int i = 0; i < m_array.size(); i++) {
101                     m_array[i] = ((*(m_pcm + c + i * m_samples / m_array.size())) >> 9) + 127 / 2 ;
102                 }
103                 f.write(m_array);
104
105             }
106         } else {
107             f.write(QByteArray(m_arrayWidth, '\x00'));
108         }
109         delete mlt_frame;
110     }
111     //kDebug() << "done";
112     f.close();
113     m_isWorking = false;
114     if (stop_me) {
115         f.remove();
116     } else emit audioThumbOver();
117 }
118
119
120 KThumb::KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent, const char */*name*/) :
121         QObject(parent),
122         m_audioThumbProducer(),
123         m_url(url),
124         m_thumbFile(),
125         m_dar(1),
126         m_producer(NULL),
127         m_clipManager(clipManager),
128         m_id(id)
129 {
130     m_thumbFile = clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
131     connect(&m_audioThumbProducer, SIGNAL(audioThumbProgress(const int)), this, SLOT(slotAudioThumbProgress(const int)));
132     connect(&m_audioThumbProducer, SIGNAL(audioThumbOver()), this, SLOT(slotAudioThumbOver()));
133 }
134
135 KThumb::~KThumb()
136 {
137     m_requestedThumbs.clear();
138     if (m_audioThumbProducer.isRunning()) {
139         m_audioThumbProducer.stop_me = true;
140         m_audioThumbProducer.wait();
141         slotAudioThumbOver();
142     }
143     m_future.waitForFinished();
144 }
145
146 void KThumb::setProducer(Mlt::Producer *producer)
147 {
148     m_producer = producer;
149     // FIXME: the profile() call leaks an object, but trying to free
150     // it leads to a double-free in Profile::~Profile()
151     m_dar = producer->profile()->dar();
152 }
153
154 void KThumb::clearProducer()
155 {
156     m_producer = NULL;
157 }
158
159 bool KThumb::hasProducer() const
160 {
161     return m_producer != NULL;
162 }
163
164 void KThumb::updateThumbUrl(const QString &hash)
165 {
166     m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
167 }
168
169 void KThumb::updateClipUrl(KUrl url, const QString &hash)
170 {
171     m_url = url;
172     if (m_producer) {
173         char *tmp = Render::decodedString(url.path());
174         m_producer->set("resource", tmp);
175         delete[] tmp;
176     }
177     m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb";
178 }
179
180 //static
181 QPixmap KThumb::getImage(KUrl url, int width, int height)
182 {
183     if (url.isEmpty()) return QPixmap();
184     return getImage(url, 0, width, height);
185 }
186
187 void KThumb::extractImage(int frame, int frame2)
188 {
189     if (!KdenliveSettings::videothumbnails() || m_producer == NULL) return;
190     if (frame != -1 && !m_requestedThumbs.contains(frame)) m_requestedThumbs.append(frame);
191     if (frame2 != -1 && !m_requestedThumbs.contains(frame2)) m_requestedThumbs.append(frame2);
192     if (!m_future.isRunning()) m_future = QtConcurrent::run(this, &KThumb::doGetThumbs);
193 }
194
195 void KThumb::doGetThumbs()
196 {
197     const int twidth = (int)(KdenliveSettings::trackheight() * m_dar);
198     const int theight = KdenliveSettings::trackheight();
199
200     while (!m_requestedThumbs.isEmpty()) {
201         int frame = m_requestedThumbs.takeFirst();
202         if (frame != -1) {
203             QImage img = getFrame(m_producer, frame, twidth, theight);
204             emit thumbReady(frame, img);
205         }
206     }
207 }
208
209 QPixmap KThumb::extractImage(int frame, int width, int height)
210 {
211     return QPixmap::fromImage(getFrame(m_producer, frame, width, height));
212 }
213
214 //static
215 QPixmap KThumb::getImage(KUrl url, int frame, int width, int height)
216 {
217     char *tmp = Render::decodedString(KdenliveSettings::current_profile());
218     Mlt::Profile profile(tmp);
219     delete[] tmp;
220     QPixmap pix(width, height);
221     if (url.isEmpty()) return pix;
222
223     tmp = Render::decodedString(url.path());
224     //"<mlt><playlist><producer resource=\"" + url.path() + "\" /></playlist></mlt>");
225     //Mlt::Producer producer(profile, "xml-string", tmp);
226     Mlt::Producer *producer = new Mlt::Producer(profile, tmp);
227     delete[] tmp;
228
229     pix = QPixmap::fromImage(getFrame(producer, frame, width, height));
230     delete producer;
231     return pix;
232 }
233
234
235 //static
236 QImage KThumb::getFrame(Mlt::Producer *producer, int framepos, int width, int height)
237 {
238     QImage p(width, height, QImage::Format_ARGB32);
239     if (producer == NULL) {
240         p.fill(Qt::red);
241         return p;
242     }
243
244     if (producer->is_blank()) {
245         p.fill(Qt::black);
246         return p;
247     }
248
249     producer->seek(framepos);
250     Mlt::Frame *frame = producer->get_frame();
251     if (!frame) {
252         kDebug() << "///// BROKEN FRAME";
253         p.fill(Qt::red);
254         return p;
255     }
256
257     /*Mlt::Producer parentProd(producer->parent());
258     Mlt::Service service(parentProd.get_service());
259     mlt_service_lock(service.get_service());*/
260
261     mlt_image_format format = mlt_image_rgb24a;
262     uint8_t *data = frame->get_image(format, width, height, 0);
263     QImage image((uchar *)data, width, height, QImage::Format_ARGB32);
264     //mlt_service_unlock(service.get_service());
265
266     if (!image.isNull()) {
267         p = image.rgbSwapped();
268     } else
269         p.fill(Qt::red);
270
271     delete frame;
272     return p;
273 }
274 /*
275 void KThumb::getImage(KUrl url, int frame, int width, int height)
276 {
277     if (url.isEmpty()) return;
278     QPixmap image(width, height);
279     char *tmp = KRender::decodedString(url.path());
280     Mlt::Producer m_producer(tmp);
281     delete tmp;
282     image.fill(Qt::black);
283
284     if (m_producer.is_blank()) {
285  emit thumbReady(frame, image);
286  return;
287     }
288     Mlt::Filter m_convert("avcolour_space");
289     m_convert.set("forced", mlt_image_rgb24a);
290     m_producer.attach(m_convert);
291     m_producer.seek(frame);
292     Mlt::Frame * m_frame = m_producer.get_frame();
293     mlt_image_format format = mlt_image_rgb24a;
294     width = width - 2;
295     height = height - 2;
296     if (m_frame && m_frame->is_valid()) {
297      uint8_t *thumb = m_frame->get_image(format, width, height);
298      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
299      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width + 2, height + 2);
300     }
301     if (m_frame) delete m_frame;
302     emit thumbReady(frame, image);
303 }
304
305 void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int height)
306 {
307     if (url.isEmpty()) return;
308     QPixmap image(width, height);
309     char *tmp = KRender::decodedString(url.path());
310     Mlt::Producer m_producer(tmp);
311     delete tmp;
312     image.fill(Qt::black);
313
314     if (m_producer.is_blank()) {
315  emit thumbReady(startframe, image);
316  emit thumbReady(endframe, image);
317  return;
318     }
319     Mlt::Filter m_convert("avcolour_space");
320     m_convert.set("forced", mlt_image_rgb24a);
321     m_producer.attach(m_convert);
322     m_producer.seek(startframe);
323     Mlt::Frame * m_frame = m_producer.get_frame();
324     mlt_image_format format = mlt_image_rgb24a;
325     width = width - 2;
326     height = height - 2;
327
328     if (m_frame && m_frame->is_valid()) {
329      uint8_t *thumb = m_frame->get_image(format, width, height);
330      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
331      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
332     }
333     if (m_frame) delete m_frame;
334     emit thumbReady(startframe, image);
335
336     image.fill(Qt::black);
337     m_producer.seek(endframe);
338     m_frame = m_producer.get_frame();
339
340     if (m_frame && m_frame->is_valid()) {
341      uint8_t *thumb = m_frame->get_image(format, width, height);
342      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
343      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
344     }
345     if (m_frame) delete m_frame;
346     emit thumbReady(endframe, image);
347 }
348 */
349 void KThumb::stopAudioThumbs()
350 {
351     if (m_audioThumbProducer.isRunning()) {
352         m_audioThumbProducer.stop_me = true;
353         slotAudioThumbOver();
354     }
355 }
356
357 void KThumb::removeAudioThumb()
358 {
359     if (m_thumbFile.isEmpty()) return;
360     stopAudioThumbs();
361     QFile f(m_thumbFile);
362     f.remove();
363 }
364
365 void KThumb::getAudioThumbs(int channel, double frame, double frameLength, int arrayWidth)
366 {
367     if (channel == 0) {
368         slotAudioThumbOver();
369         return;
370     }
371     if ((m_audioThumbProducer.isRunning() && m_audioThumbProducer.isWorking())) {
372         return;
373     }
374
375     QMap <int, QMap <int, QByteArray> > storeIn;
376     //FIXME: Hardcoded!!!
377     int m_frequency = 48000;
378     int m_channels = channel;
379
380     QFile f(m_thumbFile);
381     if (f.open(QIODevice::ReadOnly)) {
382         QByteArray channelarray = f.readAll();
383         f.close();
384         if (channelarray.size() != arrayWidth*(frame + frameLength)*m_channels) {
385             kDebug() << "--- BROKEN THUMB FOR: " << m_url.fileName() << " ---------------------- " << endl;
386             f.remove();
387             slotAudioThumbOver();
388             return;
389         }
390         kDebug() << "reading audio thumbs from file";
391         for (int z = (int) frame; z < (int)(frame + frameLength); z++) {
392             for (int c = 0; c < m_channels; c++) {
393                 QByteArray m_array(arrayWidth, '\x00');
394                 for (int i = 0; i < arrayWidth; i++)
395                     m_array[i] = channelarray[z*arrayWidth*m_channels + c*arrayWidth + i];
396                 storeIn[z][c] = m_array;
397             }
398         }
399         emit audioThumbReady(storeIn);
400         slotAudioThumbOver();
401     } else {
402         if (m_audioThumbProducer.isRunning()) return;
403         m_audioThumbProducer.init(m_url, m_thumbFile, frame, frameLength, m_frequency, m_channels, arrayWidth);
404         m_audioThumbProducer.start(QThread::LowestPriority);
405         kDebug() << "STARTING GENERATE THMB FOR: " << m_url << " ................................";
406     }
407 }
408
409 void KThumb::slotAudioThumbProgress(const int progress)
410 {
411     m_clipManager->setThumbsProgress(i18n("Creating thumbnail for %1", m_url.fileName()), progress);
412 }
413
414 void KThumb::slotAudioThumbOver()
415 {
416     m_clipManager->setThumbsProgress(i18n("Creating thumbnail for %1", m_url.fileName()), -1);
417     m_clipManager->endAudioThumbsGeneration(m_id);
418 }
419
420 void KThumb::askForAudioThumbs(const QString &id)
421 {
422     m_clipManager->askForAudioThumb(id);
423 }
424
425
426 #include "kthumb.moc"
427