Initial Stable Commit
[synfig.git] / synfig-core / trunk / src / modules / mod_libavcodec / main.cpp
1 /* === S I N F G =========================================================== */
2 /*!     \file main.cpp
3 **      \brief writeme
4 **
5 **      $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #define SINFG_NO_ANGLE
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include <sinfg/module.h>
34 #include <sinfg/layer.h>
35
36 //#include "mptr.h"
37 #include "trgt_av.h" 
38
39 #endif
40
41 /* === E N T R Y P O I N T ================================================= */
42
43 MODULE_DESC_BEGIN(mod_libavcodec)
44         MODULE_NAME("LibAVCodec Module (From FFMPEG)")
45         MODULE_DESCRIPTION("Provides import/export ability for AVI, MPG, ASF, and a variety of other formats.")
46         MODULE_AUTHOR("Adrian Bentley")
47         MODULE_VERSION("0.0")
48         MODULE_COPYRIGHT(SINFG_COPYRIGHT)
49 MODULE_DESC_END
50
51 MODULE_INVENTORY_BEGIN(mod_libavcodec)
52         BEGIN_TARGETS
53                 TARGET(Target_LibAVCodec)
54                 //TARGET_EXT(Target_LibAVCodec,"mpg")
55                 //TARGET_EXT(Target_LibAVCodec,"mpeg")
56                 //TARGET_EXT(Target_LibAVCodec,"mov")
57                 TARGET_EXT(Target_LibAVCodec,"asf")
58                 TARGET_EXT(Target_LibAVCodec,"rm")
59                 //TARGET_EXT(Target_LibAVCodec,"mpg")
60                 TARGET_EXT(Target_LibAVCodec,"wmv")
61                 TARGET_EXT(Target_LibAVCodec,"yuv")
62                 //TARGET_EXT(Target_LibAVCodec,"dv")
63         END_TARGETS
64         BEGIN_IMPORTERS
65 //              IMPORTER(bmp_mptr)
66         END_IMPORTERS
67 MODULE_INVENTORY_END