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