X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkthumb.h;h=f31da85a74435ec549b1ed331ce6a00609803de1;hb=95d462a785814fdffdd8b56e6acaacadfea650d0;hp=8214625bbb2e54d4ebab3d922f3e7484833422f6;hpb=201f0e8a9ff002326bc1e3d66fc287edaf7807b0;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index 8214625b..f31da85a 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -40,11 +40,8 @@ relevant signal that get's emitted once the call completes. namespace Mlt { -class Miracle; -class Consumer; class Producer; class Frame; -class Profile; }; class ClipManager; @@ -53,35 +50,36 @@ typedef QMap > audioByteArray; class KThumb: public QObject { -Q_OBJECT public: + Q_OBJECT +public: - - KThumb(ClipManager *clipManager, KUrl url, const QString &id, const QString &hash, QObject * parent = 0, const char *name = 0); + explicit KThumb(ClipManager *clipManager, const 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); + void getGenericThumb(int frame, int height, int type); public slots: void updateClipUrl(KUrl url, const QString &hash); - static QPixmap getImage(KUrl url, int width, int height); + void slotCreateAudioThumbs(); + +public: + static QPixmap getImage(const KUrl &url, 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); - static QPixmap getImage(KUrl url, int frame, int width, int height); + static QPixmap getImage(const 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); /** @brief Calculates image variance, useful to know if a thumbnail is interesting. @@ -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,22 +101,12 @@ 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; - void doGetThumbs(); + QImage getProducerFrame(int framepos, int frameWidth, int displayWidth, int height); signals: void thumbReady(int, QImage);