X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=thumbnailer%2Fwestleypreview.h;h=678d2a24353380460e2edf589cf17d884f629417;hb=29ceabd2afc227e0fb8b586c567eeaf7921b542e;hp=76209c595da98943c035e0800db118842fc80c35;hpb=21fa2f24bb1096be8e8cb4f969198b3e2bc0e913;p=kdenlive diff --git a/thumbnailer/westleypreview.h b/thumbnailer/westleypreview.h index 76209c59..678d2a24 100644 --- a/thumbnailer/westleypreview.h +++ b/thumbnailer/westleypreview.h @@ -20,48 +20,28 @@ ***************************************************************************/ -#ifndef _westleypreview_H_ -#define _westleypreview_H_ +#ifndef WESTLEYPREVIEW_H +#define WESTLEYPREVIEW_H -#include - -#include #include -#include - -class QProcess; -class KTempDir; -class KRandomSequence; +#include +#include +#include - -class WestleyPreview : public QObject, public ThumbCreator { +class MltPreview : public QObject, public ThumbCreator +{ Q_OBJECT public: - WestleyPreview(); - virtual ~WestleyPreview(); + MltPreview(); + virtual ~MltPreview(); virtual bool create(const QString &path, int width, int height, QImage &img); virtual Flags flags() const; protected: - QPixmap getFrame(const QString &path); - static uint imageVariance(QImage image); - -private: - QPixmap m_pixmap; - QProcess *m_inigoprocess; - QStringList customargs; - KRandomSequence *m_rand; - QString playerBin; - bool startAndWaitProcess(const QStringList &args); - enum frameflags { framerandom = 0x1, framestart = 0x2, frameend = 0x4 }; - struct { - int towidth; - int toheight; - int fps; - int seconds; - } fileinfo; + static uint imageVariance(const QImage &image); + QImage getFrame(Mlt::Producer* producer, int framepos, int width, int height); }; #endif