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