X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkthumb.h;h=598cda56e92e0752da4450894d68404123fee1e2;hb=11a4d09164d3e0d7dcbe5891cb5ccc8c50c89e17;hp=a3b73b013b6aa2ad13fc73025de9626179aa7c8f;hpb=d7e36a99467373e2a33cec7c693e91c8c3371c88;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index a3b73b01..598cda56 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -1,5 +1,5 @@ /*************************************************************************** - krender.h - description + kthumb.h - description ------------------- begin : Fri Nov 22 2002 copyright : (C) 2002 by Jason Wood @@ -18,74 +18,94 @@ #ifndef KTHUMB_H #define KTHUMB_H -#include -#include -#include -#include +#include +#include +#include +#include -#include +#include + +#include /**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 { - class Miracle; - class Consumer; - class Producer; - class Frame; +namespace Mlt +{ +class Miracle; +class Consumer; +class Producer; +class Frame; +class Profile; }; +class ClipManager; - /* class MyThread : public QThread { - - public: - virtual void run(); - void init(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; - }; +class KThumb: public QObject +{ +Q_OBJECT public: -*/ -class KThumb:public QObject { - Q_OBJECT public: - - KThumb(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 clearProducer(); + void updateThumbUrl(const QString &hash); public slots: - void extractImage( int frame, int frame2, 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(KUrl url, int channel, double frame, double frameLength, int arrayWidth); -*/ + void extractImage(int frame, int frame2); + 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); + /* 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 QImage getFrame(Mlt::Producer *producer, int framepos, int width, 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 slotAudioThumbOver(); + void slotCreateAudioThumbs(); + private: -// MyThread thumbProducer; - KUrl m_url; - QString m_thumbFile; + QFuture m_audioThumbProducer; + KUrl m_url; + QString m_thumbFile; + double m_dar; + Mlt::Producer *m_producer; + ClipManager *m_clipManager; + QString m_id; + QList m_requestedThumbs; + QFuture m_future; + QFile m_audioThumbFile; + bool m_stopAudioThumbs; + double m_frame; + double m_frameLength; + int m_frequency; + int m_channels; + int m_arrayWidth; + void doGetThumbs(); signals: - void thumbReady(int frame, QPixmap pm); - void audioThumbReady(QMap >); + void thumbReady(int, QImage); + void mainThumbReady(const QString &, QPixmap); + void audioThumbReady(QMap >); }; #endif