You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.0 KiB
62 lines
1.0 KiB
//
|
|
// C++ Interface: k9saveimage
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef K9SAVEIMAGE_H
|
|
#define K9SAVEIMAGE_H
|
|
|
|
#include "k9common.h"
|
|
#include <tqthread.h>
|
|
#include <tqobject.h>
|
|
#include <tqdatetime.h>
|
|
|
|
#include "k9fifo.h"
|
|
#include <tdetempfile.h>
|
|
#include <tqimage.h>
|
|
|
|
|
|
/**
|
|
@author Jean-Michel PETIT <k9copy@free.fr>
|
|
*/
|
|
typedef enum { FrameType_B=0x18,FrameType_I=0x08,FrameType_P=0x10,FrameType_D=0x20} eFrameType;
|
|
|
|
class kDecMPEG2;
|
|
|
|
class k9SaveImage : public TQObject,TQThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
k9SaveImage();
|
|
~k9SaveImage();
|
|
|
|
void play();
|
|
void stop();
|
|
void addData(uchar *_buffer, uint32_t _size);
|
|
protected:
|
|
void run();
|
|
public slots:
|
|
void drawImage(TQImage*);
|
|
|
|
private:
|
|
kDecMPEG2 *m_decoder;
|
|
k9fifo m_fifo;
|
|
bool m_stop;
|
|
TQTime m_timer;
|
|
uint m_cpt;
|
|
KTempFile *m_tempFile;
|
|
uchar *m_buffer;
|
|
uint32_t m_size;
|
|
TQMutex m_mutex;
|
|
TQImage m_image;
|
|
};
|
|
|
|
#endif
|