diff options
Diffstat (limited to 'src/dvfile.h')
-rw-r--r-- | src/dvfile.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/dvfile.h b/src/dvfile.h index 3a4d600..cf78d1a 100644 --- a/src/dvfile.h +++ b/src/dvfile.h @@ -27,4 +27,25 @@ #include "config.h" #ifndef __MIAV_DVFILE_H__ #define __MIAV_DVFILE_H__ + +#include "frame_stream.h" + +#include <stdio.h> + +#include "info.h" + +#define TEST_MOVIE PIXMAPS"/maage.dv" + +class dvfile : public frame_stream { +public: + dvfile(Info* info); + ~dvfile(); + + unsigned char *readFrame(); + +private: + Info* info; + FILE* fp; +}; + #endif/*__MIAV_DVFILE_H__*/ |