synfig-core  1.0.3
mptr_jpeg.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
25 /* === S T A R T =========================================================== */
26 
27 #ifndef __SYNFIG_MPTR_JPEG_H
28 #define __SYNFIG_MPTR_JPEG_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #define NOMINMAX
33 #include <synfig/importer.h>
34 #include <synfig/string.h>
35 #include <synfig/surface.h>
36 _ETL_BEGIN_CDECLS
37 #include <jpeglib.h>
38 _ETL_END_CDECLS
39 #include <setjmp.h>
40 
41 /* === M A C R O S ========================================================= */
42 
43 /* === T Y P E D E F S ===================================================== */
44 
45 /* === C L A S S E S & S T R U C T S ======================================= */
46 
48 {
50 private:
51  synfig::Surface surface_buffer;
52 
53  struct jpeg_decompress_struct cinfo;
54 
55  static void my_error_exit (j_common_ptr cinfo);
56 
57 public:
59  ~jpeg_mptr();
60 
61  virtual bool get_frame(synfig::Surface &surface, const synfig::RendDesc &renddesc, synfig::Time time, synfig::ProgressCallback *callback);
62 };
63 
64 /* === E N D =============================================================== */
65 
66 #endif