]> git.sesse.net Git - kdenlive/blob - src/kthumb.cpp
d1da86307bd3cad4b07656a92a1612aae0769af2
[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 <kio/netaccess.h>
24 #include <kdebug.h>
25 #include <klocale.h>
26 #include <kdenlivesettings.h>
27 #include <kfileitem.h>
28 #include <kmessagebox.h>
29 #include <KStandardDirs>
30
31 #include <mlt++/Mlt.h>
32
33 #include <qxml.h>
34 #include <qimage.h>
35
36 #include <QThread>
37 #include <QApplication>
38 #include <QCryptographicHash>
39
40 #include "clipmanager.h"
41 #include "renderer.h"
42 #include "kthumb.h"
43 #include "kdenlivesettings.h"
44 #include "events.h"
45
46 void MyThread::init(QObject *parent, KUrl url, QString target, double frame, double frameLength, int frequency, int channels, int arrayWidth) {
47     stop_me = false;
48     m_parent = parent;
49     m_isWorking = false;
50     f.setFileName(target);
51     m_url = url;
52     m_frame = frame;
53     m_frameLength = frameLength;
54     m_frequency = frequency;
55     m_channels = channels;
56     m_arrayWidth = arrayWidth;
57 }
58
59 bool MyThread::isWorking() {
60     return m_isWorking;
61 }
62
63 void MyThread::run() {
64
65     if (!f.open(QIODevice::WriteOnly)) {
66         kDebug() << "++++++++  ERROR WRITING TO FILE: " << f.fileName() << endl;
67         kDebug() << "++++++++  DISABLING AUDIO THUMBS" << endl;
68         KdenliveSettings::setAudiothumbnails(false);
69         return;
70     }
71     m_isWorking = true;
72     Mlt::Profile prof((char*) KdenliveSettings::current_profile().toUtf8().data());
73     Mlt::Producer m_producer(prof, m_url.path().toUtf8().data());
74
75
76     if (KdenliveSettings::normaliseaudiothumbs()) {
77         Mlt::Filter m_convert(prof, "volume");
78         m_convert.set("gain", "normalise");
79         m_producer.attach(m_convert);
80     }
81
82     //QApplication::postEvent(m_parent, new ProgressEvent(-1, (QEvent::Type)10005));
83
84     int last_val = 0;
85     int val = 0;
86     kDebug() << "for " << m_frame << " " << m_frameLength << " " << m_producer.is_valid();
87     for (int z = (int) m_frame;z < (int)(m_frame + m_frameLength) && m_producer.is_valid();z++) {
88         if (stop_me) break;
89         val = (int)((z - m_frame) / (m_frame + m_frameLength) * 100.0);
90         if (last_val != val & val > 1) {
91             QApplication::postEvent(m_parent, new ProgressEvent(val, (QEvent::Type)10005));
92
93             last_val = val;
94         }
95         m_producer.seek(z);
96         Mlt::Frame *mlt_frame = m_producer.get_frame();
97         if (mlt_frame && mlt_frame->is_valid()) {
98             double m_framesPerSecond = mlt_producer_get_fps(m_producer.get_producer());   //mlt_frame->get_double( "fps" );
99             int m_samples = mlt_sample_calculator(m_framesPerSecond, m_frequency, mlt_frame_get_position(mlt_frame->get_frame()));
100             mlt_audio_format m_audioFormat = mlt_audio_pcm;
101
102             int16_t* m_pcm = mlt_frame->get_audio(m_audioFormat, m_frequency, m_channels, m_samples);
103
104             for (int c = 0;c < m_channels;c++) {
105                 QByteArray m_array;
106                 m_array.resize(m_arrayWidth);
107                 for (uint i = 0; i < m_array.size(); i++) {
108                     m_array[i] = ((*(m_pcm + c + i * m_samples / m_array.size())) >> 9) + 127 / 2 ;
109                 }
110                 f.write(m_array);
111
112             }
113         } else {
114             f.write(QByteArray(m_arrayWidth, '\x00'));
115         }
116         if (mlt_frame)
117             delete mlt_frame;
118     }
119     kDebug() << "done";
120     f.close();
121     m_isWorking = false;
122     if (stop_me) {
123         f.remove();
124     }
125     QApplication::postEvent(m_parent, new ProgressEvent(-1, (QEvent::Type)10005));
126
127 }
128
129
130 #define _S(a)           (a)>255 ? 255 : (a)<0 ? 0 : (a)
131 #define _R(y,u,v) (0x2568*(y)                          + 0x3343*(u)) /0x2000
132 #define _G(y,u,v) (0x2568*(y) - 0x0c92*(v) - 0x1a1e*(u)) /0x2000
133 #define _B(y,u,v) (0x2568*(y) + 0x40cf*(v))                                          /0x2000
134
135 KThumb::KThumb(ClipManager *clipManager, KUrl url, QObject * parent, const char *name): QObject(parent), m_clipManager(clipManager), m_url(url) {
136
137     m_profile = new Mlt::Profile((char*) KdenliveSettings::current_profile().data());
138     QCryptographicHash context(QCryptographicHash::Sha1);
139     context.addData((KFileItem(m_url, "text/plain", S_IFREG).timeString() + m_url.fileName()).toAscii().data());
140     m_thumbFile = KGlobal::dirs()->saveLocation("tmp" , "kdenlive") + context.result().toHex() + ".thumb";
141     kDebug() << "thumbfile=" << m_thumbFile;
142 }
143
144 KThumb::~KThumb() {
145     if (m_profile) delete m_profile;
146     if (thumbProducer.isRunning()) thumbProducer.exit();
147 }
148
149 void KThumb::updateClipUrl(KUrl url) {
150     m_url = url;
151 }
152
153 //static
154 QPixmap KThumb::getImage(KUrl url, int width, int height) {
155     if (url.isEmpty()) return QPixmap();
156     return getImage(url, 0, width, height);
157 }
158
159 void KThumb::extractImage(int frame, int frame2) {
160     if (m_url.isEmpty()) return;
161     char *tmp = Render::decodedString("<westley><playlist><producer resource=\"" + m_url.path() + "\" /></playlist></westley>");
162     Mlt::Producer producer(*m_profile, "westley-xml", tmp);
163     delete[] tmp;
164
165     int twidth = (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio());
166     if (producer.is_blank()) {
167         QPixmap pix(twidth, KdenliveSettings::trackheight());
168         pix.fill(Qt::black);
169         emit thumbReady(frame, pix);
170         return;
171     }
172     if (frame != -1) {
173         QPixmap pix = getFrame(&producer, frame, twidth, KdenliveSettings::trackheight());
174         emit thumbReady(frame, pix);
175     }
176     if (frame2 != -1) {
177         QPixmap pix = getFrame(&producer, frame2, twidth , KdenliveSettings::trackheight());
178         emit thumbReady(frame2, pix);
179     }
180
181 }
182
183 //static
184 QPixmap KThumb::getImage(KUrl url, int frame, int width, int height) {
185     Mlt::Profile profile((char*) KdenliveSettings::current_profile().data());
186     QPixmap pix(width, height);
187     if (url.isEmpty()) return pix;
188
189     char *tmp = Render::decodedString("<westley><playlist><producer resource=\"" + url.path() + "\" /></playlist></westley>");
190     Mlt::Producer producer(profile, "westley-xml", tmp);
191     delete[] tmp;
192
193
194     if (producer.is_blank()) {
195
196         pix.fill(Qt::black);
197         return pix;
198     }
199     return getFrame(&producer, frame, width, height);
200 }
201
202 //static
203 QPixmap KThumb::getImage(QDomElement xml, int frame, int width, int height) {
204     Mlt::Profile profile((char*) KdenliveSettings::current_profile().data());
205     QPixmap pix(width, height);
206     QDomDocument doc;
207     QDomElement westley = doc.createElement("westley");
208     QDomElement play = doc.createElement("playlist");
209     doc.appendChild(westley);
210     westley.appendChild(play);
211     play.appendChild(doc.importNode(xml, true));
212     char *tmp = Render::decodedString(doc.toString());
213     Mlt::Producer producer(profile, "westley-xml", tmp);
214     delete[] tmp;
215
216     if (producer.is_blank()) {
217         pix.fill(Qt::black);
218         return pix;
219     }
220     return getFrame(&producer, frame, width, height);
221 }
222
223 //static
224 QPixmap KThumb::getFrame(Mlt::Producer* producer, int framepos, int width, int height) {
225     if (framepos > 0)
226         producer->seek(framepos);
227     Mlt::Frame *frame = producer->get_frame();
228
229     mlt_image_format format = mlt_image_yuv422;
230     uint8_t* data;
231     int frame_width = 0;
232     int frame_height = 0;
233         //frame->set("rescale.interp", "nearest");
234         frame->set("normalised_height", height);
235         frame->set("normalised_width", width);
236     mlt_frame_get_image(frame->get_frame(), &data, &format, &frame_width, &frame_height, 0);
237     QPixmap pix(width, height);
238     uint8_t *new_image = (uint8_t *)mlt_pool_alloc(frame_width * (frame_height + 1) * 4);
239     mlt_convert_yuv422_to_rgb24a((uint8_t *)data, new_image, frame_width * frame_height);
240     QImage image((uchar *)new_image, frame_width, frame_height, QImage::Format_ARGB32);
241
242     if (!image.isNull()) {
243         //QImage scale = image.scaled(width, height, Qt::KeepAspectRatio, Qt::SmoothTransformation).rgbSwapped();
244                 image = image.rgbSwapped();
245         pix = pix.fromImage(image);
246     } else pix.fill(Qt::black);
247         mlt_pool_release(new_image);
248     if (frame) delete frame;
249     return pix;
250 }
251 /*
252 void KThumb::getImage(KUrl url, int frame, int width, int height)
253 {
254     if (url.isEmpty()) return;
255     QPixmap image(width, height);
256     char *tmp = KRender::decodedString(url.path());
257     Mlt::Producer m_producer(tmp);
258     delete tmp;
259     image.fill(Qt::black);
260
261     if (m_producer.is_blank()) {
262  emit thumbReady(frame, image);
263  return;
264     }
265     Mlt::Filter m_convert("avcolour_space");
266     m_convert.set("forced", mlt_image_rgb24a);
267     m_producer.attach(m_convert);
268     m_producer.seek(frame);
269     Mlt::Frame * m_frame = m_producer.get_frame();
270     mlt_image_format format = mlt_image_rgb24a;
271     width = width - 2;
272     height = height - 2;
273     if (m_frame && m_frame->is_valid()) {
274      uint8_t *thumb = m_frame->get_image(format, width, height);
275      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
276      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width + 2, height + 2);
277     }
278     if (m_frame) delete m_frame;
279     emit thumbReady(frame, image);
280 }
281
282 void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int height)
283 {
284     if (url.isEmpty()) return;
285     QPixmap image(width, height);
286     char *tmp = KRender::decodedString(url.path());
287     Mlt::Producer m_producer(tmp);
288     delete tmp;
289     image.fill(Qt::black);
290
291     if (m_producer.is_blank()) {
292  emit thumbReady(startframe, image);
293  emit thumbReady(endframe, image);
294  return;
295     }
296     Mlt::Filter m_convert("avcolour_space");
297     m_convert.set("forced", mlt_image_rgb24a);
298     m_producer.attach(m_convert);
299     m_producer.seek(startframe);
300     Mlt::Frame * m_frame = m_producer.get_frame();
301     mlt_image_format format = mlt_image_rgb24a;
302     width = width - 2;
303     height = height - 2;
304
305     if (m_frame && m_frame->is_valid()) {
306      uint8_t *thumb = m_frame->get_image(format, width, height);
307      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
308      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
309     }
310     if (m_frame) delete m_frame;
311     emit thumbReady(startframe, image);
312
313     image.fill(Qt::black);
314     m_producer.seek(endframe);
315     m_frame = m_producer.get_frame();
316
317     if (m_frame && m_frame->is_valid()) {
318      uint8_t *thumb = m_frame->get_image(format, width, height);
319      QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
320      if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
321     }
322     if (m_frame) delete m_frame;
323     emit thumbReady(endframe, image);
324 }
325 */
326 void KThumb::stopAudioThumbs() {
327     if (thumbProducer.isRunning()) thumbProducer.stop_me = true;
328 }
329
330
331 void KThumb::removeAudioThumb() {
332     if (m_thumbFile.isEmpty()) return;
333     stopAudioThumbs();
334     QFile f(m_thumbFile);
335     f.remove();
336 }
337
338 void KThumb::getAudioThumbs(int channel, double frame, double frameLength, int arrayWidth) {
339
340     if ((thumbProducer.isRunning() && thumbProducer.isWorking()) || channel == 0) {
341         return;
342     }
343
344     QMap <int, QMap <int, QByteArray> > storeIn;
345     //FIXME: Hardcoded!!!
346     int m_frequency = 48000;
347     int m_channels = channel;
348
349     QFile f(m_thumbFile);
350     if (f.open(QIODevice::ReadOnly)) {
351         QByteArray channelarray = f.readAll();
352         f.close();
353         if (channelarray.size() != arrayWidth*(frame + frameLength)*m_channels) {
354             kDebug() << "--- BROKEN THUMB FOR: " << m_url.fileName() << " ---------------------- " << endl;
355             f.remove();
356             return;
357         }
358         kDebug() << "reading audio thumbs from file";
359         for (int z = (int) frame;z < (int)(frame + frameLength);z++) {
360             for (int c = 0;c < m_channels;c++) {
361                 QByteArray m_array(arrayWidth, '\x00');
362                 for (int i = 0; i < arrayWidth; i++)
363                     m_array[i] = channelarray[z*arrayWidth*m_channels + c*arrayWidth + i];
364                 storeIn[z][c] = m_array;
365             }
366         }
367         emit audioThumbReady(storeIn);
368     } else {
369         if (thumbProducer.isRunning()) return;
370         thumbProducer.init(this, m_url, m_thumbFile, frame, frameLength, m_frequency, m_channels, arrayWidth);
371         thumbProducer.start(QThread::LowestPriority);
372         kDebug() << "STARTING GENERATE THMB FOR: " << m_url << " ................................";
373     }
374 }
375
376 void KThumb::customEvent(QEvent * event) {
377     if (event->type() == 10005) {
378         ProgressEvent* p = (ProgressEvent*) event;
379         m_clipManager->setThumbsProgress(m_url.path(), p->value());
380     }
381 }
382
383
384
385 #include "kthumb.moc"
386