X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=inline;f=src%2Fkthumb.h;h=f831941ddf98771ed86b4fd745426f005c74bd6d;hb=0ad3e5e4cf6722cd53ed63e51608b2da2640b240;hp=f571bdbef14656dc57de19c798205aa23c29b8ba;hpb=30576fe47b20435915a9782e4e017b6f904e7414;p=kdenlive diff --git a/src/kthumb.h b/src/kthumb.h index f571bdbe..f831941d 100644 --- a/src/kthumb.h +++ b/src/kthumb.h @@ -23,6 +23,7 @@ #include #include #include +#include #include @@ -32,13 +33,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; @@ -50,11 +52,12 @@ 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); + void init(KUrl url, QString target, double frame, double frameLength, int frequency, int channels, int arrayWidth); bool isWorking(); bool stop_me; @@ -67,14 +70,14 @@ private: 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: @@ -98,24 +101,34 @@ 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 width, int height); private slots: void slotAudioThumbProgress(const int progress); void slotAudioThumbOver(); - + void slotCreateAudioThumbs(); private: - MyThread audioThumbProducer; + //MyThread m_audioThumbProducer; + QFuture m_audioThumbProducer; KUrl m_url; QString m_thumbFile; double m_dar; Mlt::Producer *m_producer; ClipManager *m_clipManager; QString m_id; - int m_mainFrame; + 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, QPixmap); + void thumbReady(int, QImage); void mainThumbReady(const QString &, QPixmap); void audioThumbReady(QMap >); };