Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / synfig-core / src / modules / mod_ffmpeg / trgt_ffmpeg.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file trgt_ffmpeg.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2010 Diego Barrios Romero
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 **
22 ** === N O T E S ===========================================================
23 **
24 ** ========================================================================= */
25
26 /* === S T A R T =========================================================== */
27
28 #ifndef __SYNFIG_TRGT_FFMPEG_H
29 #define __SYNFIG_TRGT_FFMPEG_H
30
31 /* === H E A D E R S ======================================================= */
32
33 #include <synfig/target_scanline.h>
34 #include <synfig/string.h>
35 #include <synfig/targetparam.h>
36 #include <sys/types.h>
37 #include <cstdio>
38
39 /* === M A C R O S ========================================================= */
40
41 /* === T Y P E D E F S ===================================================== */
42
43 /* === C L A S S E S & S T R U C T S ======================================= */
44
45 class TargetParam;
46
47 class ffmpeg_trgt : public synfig::Target_Scanline
48 {
49         SYNFIG_TARGET_MODULE_EXT
50 private:
51         pid_t pid;
52         int imagecount;
53         bool multi_image;
54         FILE *file;
55         synfig::String filename;
56         unsigned char *buffer;
57         synfig::Color *color_buffer;
58         std::string video_codec;
59         int bitrate;
60 public:
61         ffmpeg_trgt(const char *filename,
62                                 const synfig::TargetParam& params);
63
64         virtual bool set_rend_desc(synfig::RendDesc *desc);
65         virtual bool init();
66         virtual bool start_frame(synfig::ProgressCallback *cb);
67         virtual void end_frame();
68
69         virtual ~ffmpeg_trgt();
70
71         virtual synfig::Color * start_scanline(int scanline);
72         virtual bool end_scanline();
73 };
74
75 /* === E N D =============================================================== */
76
77 #endif