synfig-core  1.0.3
trgt_dv.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_TRGT_DV_H
28 #define __SYNFIG_TRGT_DV_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #include <synfig/target_scanline.h>
33 #include <synfig/string.h>
34 #include <synfig/targetparam.h>
35 #include <sys/types.h>
36 #include <cstdio>
37 
38 /* === M A C R O S ========================================================= */
39 
40 /* === T Y P E D E F S ===================================================== */
41 
42 /* === C L A S S E S & S T R U C T S ======================================= */
43 
44 
46 {
48 private:
49  pid_t pid;
50  int imagecount;
51  bool wide_aspect;
52  FILE *file;
53  synfig::String filename;
54  unsigned char *buffer;
55  synfig::Color *color_buffer;
56 public:
57  dv_trgt(const char *filename, const synfig::TargetParam& /* params */);
58  virtual ~dv_trgt();
59 
60 
61  virtual bool set_rend_desc(synfig::RendDesc *desc);
62  virtual bool init(synfig::ProgressCallback *cb);
63  virtual bool start_frame(synfig::ProgressCallback *cb);
64  virtual void end_frame();
65 
66  virtual synfig::Color * start_scanline(int scanline);
67  virtual bool end_scanline();
68 };
69 
70 /* === E N D =============================================================== */
71 
72 #endif