00001 /* === S Y N F I G ========================================================= */ 00021 /* ========================================================================= */ 00022 00023 /* === S T A R T =========================================================== */ 00024 00025 #ifndef __SYNFIG_MPTR_H 00026 #define __SYNFIG_MPTR_H 00027 00028 /* === H E A D E R S ======================================================= */ 00029 00030 #include <synfig/importer.h> 00031 #include <synfig/string.h> 00032 #include <synfig/time.h> 00033 #include <cstdio> 00034 00035 /* === M A C R O S ========================================================= */ 00036 00037 /* === T Y P E D E F S ===================================================== */ 00038 00039 /* === C L A S S E S & S T R U C T S ======================================= */ 00040 00041 class Importer_LibAVCodec : public synfig::Importer 00042 { 00043 SYNFIG_IMPORTER_MODULE_EXT 00044 00045 private: 00046 synfig::String filename; 00047 00048 public: 00049 Importer_LibAVCodec(const char *filename); 00050 ~Importer_LibAVCodec(); 00051 00052 virtual bool get_frame(synfig::Surface &surface,synfig::Time time, synfig::ProgressCallback *callback); 00053 }; 00054 00055 /* === E N D =============================================================== */ 00056 00057 #endif