X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fkthumb.h;h=892f4d6c7b34bab08cf0a45b8b8a73029c9ebbd1;hb=c5720a8894dd5a0dbd06f3330299dc669454fa06;hp=43fa366d410a2a536987c0a12eded92168e94790;hpb=cbc676239e7e73c1193146a4cf98fac35903f070;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index 43fa366d..892f4d6c 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -18,12 +18,13 @@ #ifndef KTHUMB_H #define KTHUMB_H -#include -#include -#include -#include +#include +#include +#include +#include +#include -#include +#include #include @@ -47,8 +48,10 @@ class Profile; class ClipManager; -class MyThread : public QThread { + +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); @@ -65,41 +68,54 @@ private: int m_arrayWidth; bool m_isWorking; QObject *m_parent; -}; +signals: + void audioThumbProgress(const int); + void audioThumbOver(); +}; 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, const char *name = 0); ~KThumb(); + void setProducer(Mlt::Producer *producer); + void askForAudioThumbs(const QString &id); + bool hasProducer() const; + void updateThumbUrl(const QString &hash); public slots: void extractImage(int frame, int frame2); - void updateClipUrl(KUrl url); + QPixmap extractImage(int frame, int width, int height); + 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); static QPixmap getImage(KUrl url, int frame, int width, int height); - static QPixmap getFrame(Mlt::Producer* producer, int frame, int width, int height); + static QPixmap getFrame(Mlt::Producer *producer, int framepos, int width, int height); -protected: - virtual void customEvent(QEvent * event); +private slots: + void slotAudioThumbProgress(const int progress); + void slotAudioThumbOver(); private: - MyThread thumbProducer; + MyThread audioThumbProducer; KUrl m_url; QString m_thumbFile; - Mlt::Profile *m_profile; + double m_dar; + Mlt::Producer *m_producer; ClipManager *m_clipManager; + QString m_id; + int m_mainFrame; signals: - void thumbReady(int frame, QPixmap pm); + void thumbReady(int, QPixmap); + void mainThumbReady(const QString &, QPixmap); void audioThumbReady(QMap >); };