X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fkthumb.h;h=f90051d7b43a8ea81ac91397fa7c325f41c38b70;hb=a54db1d1e6a90edadbbb58d46870937130c692e7;hp=53600f6836629bc360ba058387bb71e6a64de44e;hpb=cd85961a9520f2f3c909e889dacd8de539468b89;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index 53600f68..f90051d7 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -20,11 +20,11 @@ #include #include -#include -#include #include +#include #include +#include #include @@ -38,7 +38,8 @@ relevant signal that get's emitted once the call completes. */ -namespace Mlt { +namespace Mlt +{ class Miracle; class Consumer; class Producer; @@ -48,33 +49,10 @@ class Profile; class ClipManager; +typedef QMap > audioByteArray; - -class MyThread : public QThread { - Q_OBJECT -public: - virtual void run(); - void init(QObject *parent, KUrl url, QString target, double frame, double frameLength, int frequency, int channels, int arrayWidth); - bool isWorking(); - bool stop_me; - -private: - QFile f; - KUrl m_url; - double m_frame; - double m_frameLength; - int m_frequency; - int m_channels; - int m_arrayWidth; - bool m_isWorking; - QObject *m_parent; - -signals: - void audioThumbProgress(const int); - void audioThumbOver(); -}; - -class KThumb: public QObject { +class KThumb: public QObject +{ Q_OBJECT public: @@ -85,10 +63,16 @@ Q_OBJECT public: bool hasProducer() const; void clearProducer(); void updateThumbUrl(const QString &hash); - -public slots: void extractImage(int frame, int frame2); QPixmap 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); +#endif + +public slots: void updateClipUrl(KUrl url, const QString &hash); static QPixmap getImage(KUrl url, int width, int height); // static QPixmap getImage(QDomElement xml, int frame, int width, int height); @@ -98,26 +82,55 @@ public slots: void removeAudioThumb(); void getAudioThumbs(int channel, double frame, double frameLength, int arrayWidth); static QPixmap getImage(KUrl url, int frame, int width, int height); - static QPixmap getFrame(Mlt::Producer *producer, int framepos, 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); + /** @brief Calculates image variance, useful to know if a thumbnail is interesting. + * @return an integer between 0 and 100. 0 means no variance, eg. black image while bigger values mean contrasted image + * */ + static uint imageVariance(QImage image); private slots: - void slotAudioThumbProgress(const int progress); void slotAudioThumbOver(); + void slotCreateAudioThumbs(); +#if KDE_IS_VERSION(4,5,0) + /** @brief Fetch all requested frames. */ + void slotGetIntraThumbs(); +#endif private: - MyThread audioThumbProducer; + QFuture m_audioThumbProducer; KUrl m_url; QString m_thumbFile; double m_dar; + double m_ratio; Mlt::Producer *m_producer; ClipManager *m_clipManager; QString m_id; - int m_mainFrame; + 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: - void thumbReady(int, QPixmap); + void thumbReady(int, QImage); void mainThumbReady(const QString &, QPixmap); - void audioThumbReady(QMap >); + void audioThumbReady(const audioByteArray&); + /** @brief We have finished caching all requested thumbs. */ + void thumbsCached(); }; #endif