]> git.sesse.net Git - kdenlive/blob - src/kthumb.cpp
5e40db6ef58f0e8c6f2782c95b3081f7363a8117
[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("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 }
146
147 KThumb::~KThumb()
148 {
149     if (m_profile) delete m_profile;
150     if (thumbProducer.isRunning ()) thumbProducer.exit();
151 }
152
153
154 //static
155 QPixmap KThumb::getImage(KUrl url, int width, int height)
156 {
157     if (url.isEmpty()) return QPixmap();
158     QPixmap pix(width, height);
159   kDebug()<<"+++++++++++  GET THMB IMG FOR: "<<url;
160     char *tmp = Render::decodedString(url.path());
161     Mlt::Profile prof((char*) KdenliveSettings::current_profile().data());
162     Mlt::Producer m_producer(prof, tmp);
163     delete tmp;
164
165     if (m_producer.is_blank()) {
166         pix.fill(Qt::black);
167         return pix;
168     }
169     Mlt::Frame * m_frame;
170     mlt_image_format format = mlt_image_rgb24a;
171     Mlt::Filter m_convert(prof, "avcolour_space");
172     m_convert.set("forced", mlt_image_rgb24a);
173     m_producer.attach(m_convert);
174     //m_producer.seek(frame);
175     m_frame = m_producer.get_frame();
176     if (m_frame && m_frame->is_valid()) {
177       uint8_t *thumb = m_frame->get_image(format, width, height);
178       QImage image(thumb, width, height, QImage::Format_ARGB32);
179       if (!image.isNull()) {
180         pix = pix.fromImage(image);
181       }
182       else pix.fill(Qt::black);
183     }
184     if (m_frame) delete m_frame;
185     return pix;
186 }
187
188 void KThumb::extractImage(int frame, int frame2)
189 {
190     if (m_url.isEmpty()) return;
191     QPixmap pix(m_width, m_height);
192     char *tmp = Render::decodedString(m_url.path());
193     Mlt::Producer m_producer(*m_profile, tmp);
194     delete tmp;
195
196     if (m_producer.is_blank()) {
197         pix.fill(Qt::black);
198         emit thumbReady(frame, pix);
199         return;
200     }
201     Mlt::Frame * m_frame;
202     mlt_image_format format = mlt_image_rgb24a;
203     Mlt::Filter m_convert(*m_profile, "avcolour_space");
204     m_convert.set("forced", mlt_image_rgb24a);
205     m_producer.attach(m_convert);
206     if (frame != -1) {
207       m_producer.seek(frame);
208       m_frame = m_producer.get_frame();
209       if (m_frame && m_frame->is_valid()) {
210         uint8_t *thumb = m_frame->get_image(format, m_width, m_height);
211         QImage image(thumb, m_width, m_height, QImage::Format_ARGB32);
212         if (!image.isNull()) {
213           pix = pix.fromImage(image);
214         }
215         else pix.fill(Qt::black);
216       }
217       if (m_frame) delete m_frame;
218       emit thumbReady(frame, pix);
219     }
220     if (frame2 == -1) return;
221     m_producer.seek(frame2);
222     m_frame = m_producer.get_frame();
223     if (m_frame && m_frame->is_valid()) {
224       uint8_t *thumb = m_frame->get_image(format, m_width, m_height);
225       QImage image(thumb, m_width, m_height, QImage::Format_ARGB32);
226       if (!image.isNull()) {
227         pix = pix.fromImage(image);
228       }
229       else pix.fill(Qt::black);
230     }
231     if (m_frame) delete m_frame;
232     emit thumbReady(frame2, pix);
233
234 }
235 /*
236 void KThumb::getImage(KUrl url, int frame, int width, int height)
237 {
238     if (url.isEmpty()) return;
239     QPixmap image(width, height);
240     char *tmp = KRender::decodedString(url.path());
241     Mlt::Producer m_producer(tmp);
242     delete tmp;
243     image.fill(Qt::black);
244
245     if (m_producer.is_blank()) {
246         emit thumbReady(frame, image);
247         return;
248     }
249     Mlt::Filter m_convert("avcolour_space");
250     m_convert.set("forced", mlt_image_rgb24a);
251     m_producer.attach(m_convert);
252     m_producer.seek(frame);
253     Mlt::Frame * m_frame = m_producer.get_frame();
254     mlt_image_format format = mlt_image_rgb24a;
255     width = width - 2;
256     height = height - 2;
257     if (m_frame && m_frame->is_valid()) {
258         uint8_t *thumb = m_frame->get_image(format, width, height);
259         QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
260         if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width + 2, height + 2);
261     }
262     if (m_frame) delete m_frame;
263     emit thumbReady(frame, image);
264 }
265
266 void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int height)
267 {
268     if (url.isEmpty()) return;
269     QPixmap image(width, height);
270     char *tmp = KRender::decodedString(url.path());
271     Mlt::Producer m_producer(tmp);
272     delete tmp;
273     image.fill(Qt::black);
274
275     if (m_producer.is_blank()) {
276         emit thumbReady(startframe, image);
277         emit thumbReady(endframe, image);
278         return;
279     }
280     Mlt::Filter m_convert("avcolour_space");
281     m_convert.set("forced", mlt_image_rgb24a);
282     m_producer.attach(m_convert);
283     m_producer.seek(startframe);
284     Mlt::Frame * m_frame = m_producer.get_frame();
285     mlt_image_format format = mlt_image_rgb24a;
286     width = width - 2;
287     height = height - 2;
288
289     if (m_frame && m_frame->is_valid()) {
290         uint8_t *thumb = m_frame->get_image(format, width, height);
291         QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
292         if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
293     }
294     if (m_frame) delete m_frame;
295     emit thumbReady(startframe, image);
296
297     image.fill(Qt::black);
298     m_producer.seek(endframe);
299     m_frame = m_producer.get_frame();
300
301     if (m_frame && m_frame->is_valid()) {
302         uint8_t *thumb = m_frame->get_image(format, width, height);
303         QImage tmpimage(thumb, width, height, 32, NULL, 0, QImage::IgnoreEndian);
304         if (!tmpimage.isNull()) bitBlt(&image, 1, 1, &tmpimage, 0, 0, width - 2, height - 2);
305     }
306     if (m_frame) delete m_frame;
307     emit thumbReady(endframe, image);
308 }
309 */
310 void KThumb::stopAudioThumbs()
311 {
312         if (thumbProducer.isRunning ()) thumbProducer.stop_me = true;
313 }
314
315
316 void KThumb::removeAudioThumb()
317 {
318         if (m_thumbFile.isEmpty()) return;
319         stopAudioThumbs();
320         QFile f(m_thumbFile);
321         f.remove();
322 }
323
324 void KThumb::getAudioThumbs(int channel, double frame, double frameLength, int arrayWidth){
325         
326         if ((thumbProducer.isRunning () && thumbProducer.isWorking()) || channel == 0) {
327             return;
328         }
329         
330         QMap <int, QMap <int, QByteArray> > storeIn;
331        //FIXME: Hardcoded!!! 
332         int m_frequency = 48000;
333         int m_channels = channel;
334         
335         QFile f(m_thumbFile);
336         if (f.open( QIODevice::ReadOnly )) {
337                 QByteArray channelarray = f.readAll();
338                 f.close();
339                 if (channelarray.size() != arrayWidth*(frame+frameLength)*m_channels) {
340                         kDebug()<<"--- BROKEN THUMB FOR: "<<m_url.fileName()<<" ---------------------- "<<endl;
341                         f.remove();
342                         return;
343                 }
344                 kDebug() << "reading audio thumbs from file";
345                 for (int z=(int) frame;z<(int) (frame+frameLength);z++) {
346                         for (int c=0;c< m_channels;c++){
347                                 QByteArray m_array(arrayWidth,'\x00');
348                                 for (int i = 0; i < arrayWidth; i++)
349                                         m_array[i] = channelarray[z*arrayWidth*m_channels + c*arrayWidth + i];
350                                 storeIn[z][c] = m_array;
351                         }
352                 }
353                 emit audioThumbReady(storeIn);
354         }
355         else {
356                 if (thumbProducer.isRunning()) return;
357                 thumbProducer.init(m_url, m_thumbFile, frame, frameLength, m_frequency, m_channels, arrayWidth);
358                 thumbProducer.start(QThread::LowestPriority );
359         }
360 }
361
362
363