Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / stable / 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 #define SYNFIG_NO_ANGLE
26
27 #ifdef USING_PCH
28 #       include "pch.h"
29 #else
30 #ifdef HAVE_CONFIG_H
31 #       include <config.h>
32 #endif
33
34 #include <synfig/module.h>
35 #include <synfig/layer.h>
36
37 //#include "mptr.h"
38 #include "trgt_av.h"
39
40 #endif
41
42 /* === E N T R Y P O I N T ================================================= */
43
44 MODULE_DESC_BEGIN(mod_libavcodec)
45         MODULE_NAME("LibAVCodec Module (From FFMPEG)")
46         MODULE_DESCRIPTION("Provides import/export ability for AVI, MPG, ASF, and a variety of other formats.")
47         MODULE_AUTHOR("Adrian Bentley")
48         MODULE_VERSION("0.0")
49         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
50 MODULE_DESC_END
51
52 MODULE_INVENTORY_BEGIN(mod_libavcodec)
53         BEGIN_TARGETS
54                 TARGET(Target_LibAVCodec)
55                 //TARGET_EXT(Target_LibAVCodec,"mpg")
56                 //TARGET_EXT(Target_LibAVCodec,"mpeg")
57                 //TARGET_EXT(Target_LibAVCodec,"mov")
58                 TARGET_EXT(Target_LibAVCodec,"asf")
59                 TARGET_EXT(Target_LibAVCodec,"rm")
60                 //TARGET_EXT(Target_LibAVCodec,"mpg")
61                 TARGET_EXT(Target_LibAVCodec,"wmv")
62                 TARGET_EXT(Target_LibAVCodec,"yuv")
63                 //TARGET_EXT(Target_LibAVCodec,"dv")
64         END_TARGETS
65         BEGIN_IMPORTERS
66 //              IMPORTER(bmp_mptr)
67         END_IMPORTERS
68 MODULE_INVENTORY_END