X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkthumb.h;h=142bff41c693970eb6afc086ef0a66febc2db89b;hb=e313e070ad28e260d87eca66c4817a0ec9eba0a1;hp=f90051d7b43a8ea81ac91397fa7c325f41c38b70;hpb=a830589d50452bf5ba05da1273c57bcfa33985e9;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index f90051d7..142bff41 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -56,21 +56,21 @@ class KThumb: public QObject Q_OBJECT public: - KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent = 0, const char *name = 0); + KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent = 0); ~KThumb(); void setProducer(Mlt::Producer *producer); - void askForAudioThumbs(const QString &id); bool hasProducer() const; void clearProducer(); void updateThumbUrl(const QString &hash); - void extractImage(int frame, int frame2); - QPixmap extractImage(int frame, int width, int height); + void extractImage(QList frames); + QImage extractImage(int frame, int width, int height); #if KDE_IS_VERSION(4,5,0) /** @brief Request thumbnails for the frame range. */ void queryIntraThumbs(QList missingFrames); /** @brief Query cached thumbnail. */ - QImage findCachedThumb(const QString path); + QImage findCachedThumb(const QString &path); #endif + void getThumb(int frame); public slots: void updateClipUrl(KUrl url, const QString &hash); @@ -78,9 +78,7 @@ public slots: // static QPixmap getImage(QDomElement xml, int frame, int width, int height); /* void getImage(KUrl url, int frame, int width, int height); void getThumbs(KUrl url, int startframe, int endframe, int width, int height);*/ - void stopAudioThumbs(); - void removeAudioThumb(); - void getAudioThumbs(int channel, double frame, double frameLength, int arrayWidth); + void slotCreateAudioThumbs(); static QPixmap getImage(KUrl url, int frame, int width, int height); static QImage getFrame(Mlt::Producer *producer, int framepos, int frameWidth, int displayWidth, int height); static QImage getFrame(Mlt::Frame *frame, int frameWidth, int displayWidth, int height); @@ -90,15 +88,12 @@ public slots: static uint imageVariance(QImage image); private slots: - void slotAudioThumbOver(); - void slotCreateAudioThumbs(); #if KDE_IS_VERSION(4,5,0) /** @brief Fetch all requested frames. */ void slotGetIntraThumbs(); #endif private: - QFuture m_audioThumbProducer; KUrl m_url; QString m_thumbFile; double m_dar; @@ -106,23 +101,11 @@ private: Mlt::Producer *m_producer; ClipManager *m_clipManager; QString m_id; - QList m_requestedThumbs; - /** @brief Controls the thumbnails process. */ - QFuture m_future; /** @brief Controls the intra frames thumbnails process (cached thumbnails). */ QFuture m_intra; - QFile m_audioThumbFile; - bool m_stopAudioThumbs; - double m_frame; - double m_frameLength; - int m_frequency; - int m_channels; - int m_arrayWidth; /** @brief List of frame numbers from which we want to extract thumbnails. */ QList m_intraFramesQueue; QMutex m_mutex; - QMutex m_listMutex; - void doGetThumbs(); QImage getProducerFrame(int framepos, int frameWidth, int displayWidth, int height); signals: