blob: e1ecd0f9b5bc3a7ac174a81de094f9494f244778 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
//
// C++ Interface: k9avidecode
//
// Description:
//
//
// Author: Jean-Michel PETIT <[email protected]>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9AVIDECODE_H
#define K9AVIDECODE_H
#include "k9common.h"
#include <tqobject.h>
extern "C" {
#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libavutil/avutil.h>
#include <libavutil/time.h>
#include <libavutil/imgutils.h>
#include <libavutil/mathematics.h>
#include <libswscale/swscale.h>
};
#include <tqimage.h>
/**
@author Jean-Michel PETIT <[email protected]>
*/
class k9AviDecode : public TQObject
{
Q_OBJECT
public:
k9AviDecode(TQObject *parent = 0, const char *name = 0);
~k9AviDecode();
bool open(const TQString & _fileName);
void readFrame(double _seconds);
void seek(double _seconds);
void close();
double getDuration() const;
bool opened() const;
TQString getFileName() const;
TQString getError() const;
private:
AVFormatContext *m_FormatCtx;
AVCodecContext *m_CodecCtx;
AVCodec *m_Codec;
AVFrame *m_Frame,*m_FrameRGB;
uint8_t *m_buffer;
int m_videoStream;
bool m_opened;
double m_duration;
TQString m_fileName;
TQString m_error;
void SaveFrame(AVFrame *pFrame, int width, int height);
signals:
void drawFrame(TQImage*);
};
#endif
|