Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / synfig-core / src / modules / mod_libavcodec / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_libavcodec/main.cpp
3 **      \brief writeme
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include <synfig/module.h>
33 #include <synfig/layer.h>
34
35 //#include "mptr.h"
36 #include "trgt_av.h"
37
38 #endif
39
40 /* === E N T R Y P O I N T ================================================= */
41
42 MODULE_DESC_BEGIN(mod_libavcodec)
43         MODULE_NAME("LibAVCodec Module (From FFMPEG)")
44         MODULE_DESCRIPTION("Provides import/export ability for AVI, MPG, ASF, and a variety of other formats.")
45         MODULE_AUTHOR("Adrian Bentley")
46         MODULE_VERSION("0.0")
47         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
48 MODULE_DESC_END
49
50 MODULE_INVENTORY_BEGIN(mod_libavcodec)
51         BEGIN_TARGETS
52                 TARGET(Target_LibAVCodec)
53                 //TARGET_EXT(Target_LibAVCodec,"mpg")
54                 //TARGET_EXT(Target_LibAVCodec,"mpeg")
55                 //TARGET_EXT(Target_LibAVCodec,"mov")
56                 TARGET_EXT(Target_LibAVCodec,"asf")
57                 TARGET_EXT(Target_LibAVCodec,"rm")
58                 //TARGET_EXT(Target_LibAVCodec,"mpg")
59                 TARGET_EXT(Target_LibAVCodec,"wmv")
60                 TARGET_EXT(Target_LibAVCodec,"yuv")
61                 //TARGET_EXT(Target_LibAVCodec,"dv")
62         END_TARGETS
63         BEGIN_IMPORTERS
64 //              IMPORTER(bmp_mptr)
65         END_IMPORTERS
66 MODULE_INVENTORY_END