6624f4fe2bcb3afdd74bf9dbe6b646b990977286
[synfig.git] / synfig-core / trunk / src / modules / mod_ffmpeg / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_ffmpeg/main.cpp
3 **      \brief Template Header
4 **
5 **      \legal
6 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
7 **
8 **      This package is free software; you can redistribute it and/or
9 **      modify it under the terms of the GNU General Public License as
10 **      published by the Free Software Foundation; either version 2 of
11 **      the License, or (at your option) any later version.
12 **
13 **      This package is distributed in the hope that it will be useful,
14 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
15 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 **      General Public License for more details.
17 **      \endlegal
18 **
19 ** === N O T E S ===========================================================
20 **
21 ** ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #define SYNFIG_MODULE
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 "mptr_ffmpeg.h"
36 #include "trgt_ffmpeg.h"
37 #endif
38
39 /* === E N T R Y P O I N T ================================================= */
40
41 MODULE_DESC_BEGIN(mod_ffmpeg)
42         MODULE_NAME("FFMPEG Module")
43         MODULE_DESCRIPTION("Provides output targets for each format that FFMPEG supports")
44         MODULE_AUTHOR("Robert B. Quattlebaum Jr.")
45         MODULE_VERSION("1.0")
46         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
47 MODULE_DESC_END
48
49 MODULE_INVENTORY_BEGIN(mod_ffmpeg)
50         BEGIN_TARGETS
51                 TARGET(ffmpeg_trgt)
52                 TARGET_EXT(ffmpeg_trgt,"avi")
53                 TARGET_EXT(ffmpeg_trgt,"mpg")
54                 TARGET_EXT(ffmpeg_trgt,"rm")
55                 TARGET_EXT(ffmpeg_trgt,"asf")
56                 TARGET_EXT(ffmpeg_trgt,"swf")
57                 TARGET_EXT(ffmpeg_trgt,"yuv")
58                 TARGET_EXT(ffmpeg_trgt,"rgb")
59         END_TARGETS
60 //      BEGIN_IMPORTERS
61 //              IMPORTER_EXT(ffmpeg_mptr,"avi")
62 //              IMPORTER_EXT(ffmpeg_mptr,"mpg")
63 //              IMPORTER_EXT(ffmpeg_mptr,"mpeg")
64 //              IMPORTER_EXT(ffmpeg_mptr,"mov")
65 //              IMPORTER_EXT(ffmpeg_mptr,"rm")
66 //              IMPORTER_EXT(ffmpeg_mptr,"dv")
67 //      END_IMPORTERS
68 MODULE_INVENTORY_END