X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkthumb.cpp;h=3bf19e2841dc28758ee9cd995818923d2c203822;hb=17adadd166051add81f88643f9192172b367ead6;hp=0ab4eab29767d444b2765584b30d3d4364f79a58;hpb=6c4cbe3a608165fa3403f35cf6c9191aeab9e93f;p=kdenlive diff --git a/src/kthumb.cpp b/src/kthumb.cpp index 0ab4eab2..3bf19e28 100644 --- a/src/kthumb.cpp +++ b/src/kthumb.cpp @@ -39,8 +39,9 @@ #include #include #include +#include -KThumb::KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent) : +KThumb::KThumb(ClipManager *clipManager, const KUrl &url, const QString &id, const QString &hash, QObject * parent) : QObject(parent), m_url(url), m_thumbFile(), @@ -92,29 +93,29 @@ void KThumb::updateThumbUrl(const QString &hash) m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb"; } -void KThumb::updateClipUrl(KUrl url, const QString &hash) +void KThumb::updateClipUrl(const KUrl &url, const QString &hash) { m_url = url; m_thumbFile = m_clipManager->projectFolder() + "/thumbs/" + hash + ".thumb"; } //static -QPixmap KThumb::getImage(KUrl url, int width, int height) +QPixmap KThumb::getImage(const KUrl& url, int width, int height) { if (url.isEmpty()) return QPixmap(); return getImage(url, 0, width, height); } -void KThumb::extractImage(QList frames) +void KThumb::extractImage(const QList &frames) { if (!KdenliveSettings::videothumbnails() || m_producer == NULL) return; - m_clipManager->requestThumbs(m_id, frames); + m_clipManager->slotRequestThumbs(m_id, frames); } void KThumb::getThumb(int frame) { - const int theight = KdenliveSettings::trackheight(); + const int theight = Kdenlive::DefaultThumbHeight; const int swidth = (int)(theight * m_ratio + 0.5); const int dwidth = (int)(theight * m_dar + 0.5); QImage img = getProducerFrame(frame, swidth, dwidth, theight); @@ -133,14 +134,14 @@ QImage KThumb::extractImage(int frame, int width, int height) { if (m_producer == NULL) { QImage img(width, height, QImage::Format_ARGB32_Premultiplied); - img.fill(Qt::black); + img.fill(QColor(Qt::black).rgb()); return img; } return getProducerFrame(frame, (int) (height * m_ratio + 0.5), width, height); } //static -QPixmap KThumb::getImage(KUrl url, int frame, int width, int height) +QPixmap KThumb::getImage(const KUrl& url, int frame, int width, int height) { Mlt::Profile profile(KdenliveSettings::current_profile().toUtf8().constData()); QPixmap pix(width, height); @@ -168,6 +169,9 @@ QImage KThumb::getProducerFrame(int framepos, int frameWidth, int displayWidth, QMutexLocker lock(&m_mutex); m_producer->seek(framepos); Mlt::Frame *frame = m_producer->get_frame(); + /*frame->set("rescale.interp", "nearest"); + frame->set("deinterlace_method", "onefield"); + frame->set("top_field_first", -1 );*/ QImage p = getFrame(frame, frameWidth, displayWidth, height); delete frame; return p; @@ -192,7 +196,7 @@ QImage KThumb::getFrame(Mlt::Producer *producer, int framepos, int frameWidth, i frame->set("rescale.interp", "nearest"); frame->set("deinterlace_method", "onefield"); frame->set("top_field_first", -1 ); - QImage p = getFrame(frame, frameWidth, displayWidth, height); + const QImage p = getFrame(frame, frameWidth, displayWidth, height); delete frame; return p; } @@ -214,6 +218,10 @@ QImage KThumb::getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int if (ow % 2 == 1) ow++; QImage image(ow, oh, QImage::Format_ARGB32_Premultiplied); const uchar* imagedata = frame->get_image(format, ow, oh); + if (imagedata == NULL) { + p.fill(QColor(Qt::red).rgb()); + return p; + } memcpy(image.bits(), imagedata, ow * oh * 4);//.byteCount()); //const uchar* imagedata = frame->get_image(format, ow, oh); @@ -226,8 +234,14 @@ QImage KThumb::getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int } else { image = image.scaled(displayWidth, height, Qt::IgnoreAspectRatio).rgbSwapped(); } - p.fill(QColor(100, 100, 100, 70)); +#if QT_VERSION >= 0x040800 + p.fill(QColor(100, 100, 100, 70)); QPainter painter(&p); +#else + p.fill(Qt::transparent); + QPainter painter(&p); + painter.fillRect(p.rect(), QColor(100, 100, 100, 70)); +#endif painter.drawImage(p.rect(), image); painter.end(); } else @@ -236,7 +250,7 @@ QImage KThumb::getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int } //static -uint KThumb::imageVariance(QImage image ) +uint KThumb::imageVariance(const QImage &image ) { uint delta = 0; uint avg = 0; @@ -245,7 +259,7 @@ uint KThumb::imageVariance(QImage image ) QVarLengthArray pivot(STEPS); const uchar *bits=image.bits(); // First pass: get pivots and taking average - for( uint i=0; i= 0x040700 avg+=pivot.at(i); @@ -256,7 +270,7 @@ uint KThumb::imageVariance(QImage image ) if (STEPS) avg=avg/STEPS; // Second Step: calculate delta (average?) - for (uint i=0; i= 0x040700 int curdelta=abs(int(avg - pivot.at(i))); @@ -305,7 +319,7 @@ void KThumb::getThumbs(KUrl url, int startframe, int endframe, int width, int he if (url.isEmpty()) return; QPixmap image(width, height); Mlt::Producer m_producer(url.path().toUtf8().constData()); - image.fill(Qt::black); + image.fill(QColor(Qt::black).rgb()); if (m_producer.is_blank()) { emit thumbReady(startframe, image); @@ -349,7 +363,7 @@ void KThumb::slotCreateAudioThumbs() } #if KDE_IS_VERSION(4,5,0) -void KThumb::queryIntraThumbs(QList missingFrames) +void KThumb::queryIntraThumbs(const QList &missingFrames) { foreach (int i, missingFrames) { if (!m_intraFramesQueue.contains(i)) m_intraFramesQueue.append(i);