X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkthumb.h;h=142bff41c693970eb6afc086ef0a66febc2db89b;hb=bf1017234649f13060c2eea16488b58c8cdec8a7;hp=0c312205781be30072792b8c9e5595de62d900b0;hpb=516f782159e77d9af02409ba7cb5300607397445;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index 0c312205..142bff41 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -20,10 +20,11 @@ #include #include -#include #include +#include #include +#include #include @@ -31,13 +32,14 @@ /**KRender encapsulates the client side of the interface to a renderer. From Kdenlive's point of view, you treat the KRender object as the renderer, and simply use it as if it was local. Calls are asyncrhonous - -you send a call out, and then recieve the return value through the +you send a call out, and then receive the return value through the relevant signal that get's emitted once the call completes. *@author Jason Wood */ -namespace Mlt { +namespace Mlt +{ class Miracle; class Consumer; class Producer; @@ -47,62 +49,71 @@ class Profile; class ClipManager; -class MyThread : public QThread { +typedef QMap > audioByteArray; -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; -}; - - -class KThumb: public QObject { +class KThumb: public QObject +{ Q_OBJECT public: - KThumb(ClipManager *clipManager, KUrl url, 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); + bool hasProducer() const; + void clearProducer(); + void updateThumbUrl(const QString &hash); + 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); +#endif + void getThumb(int frame); public slots: - void extractImage(int frame, int frame2); - void updateClipUrl(KUrl url); + 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); +// 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 QPixmap getFrame(Mlt::Producer producer, int framepos, int width, int height); - -protected: - virtual void customEvent(QEvent * event); + 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: +#if KDE_IS_VERSION(4,5,0) + /** @brief Fetch all requested frames. */ + void slotGetIntraThumbs(); +#endif private: - MyThread thumbProducer; KUrl m_url; QString m_thumbFile; - Mlt::Profile *m_profile; + double m_dar; + double m_ratio; Mlt::Producer *m_producer; ClipManager *m_clipManager; + QString m_id; + /** @brief Controls the intra frames thumbnails process (cached thumbnails). */ + QFuture m_intra; + /** @brief List of frame numbers from which we want to extract thumbnails. */ + QList m_intraFramesQueue; + QMutex m_mutex; + QImage getProducerFrame(int framepos, int frameWidth, int displayWidth, int height); signals: - void thumbReady(int frame, QPixmap pm); - void audioThumbReady(QMap >); + void thumbReady(int, QImage); + void mainThumbReady(const QString &, QPixmap); + void audioThumbReady(const audioByteArray&); + /** @brief We have finished caching all requested thumbs. */ + void thumbsCached(); }; #endif