Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_05 / synfig-core / src / modules / mod_ffmpeg / main.cpp
1 /*! ========================================================================
2 ** Synfig
3 ** bleh
4 ** $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
5 **
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 **
18 ** === N O T E S ===========================================================
19 **
20 ** ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #define SYNFIG_MODULE
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 <synfig/module.h>
34 #include "mptr_ffmpeg.h"
35 #include "trgt_ffmpeg.h"
36 #endif
37
38 /* === E N T R Y P O I N T ================================================= */
39
40 MODULE_DESC_BEGIN(mod_ffmpeg)
41         MODULE_NAME("FFMPEG Module")
42         MODULE_DESCRIPTION("Provides output targets for each format that FFMPEG supports")
43         MODULE_AUTHOR("Robert B. Quattlebaum Jr.")
44         MODULE_VERSION("1.0")
45         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
46 MODULE_DESC_END
47
48 MODULE_INVENTORY_BEGIN(mod_ffmpeg)
49         BEGIN_TARGETS
50                 TARGET(ffmpeg_trgt)
51                 TARGET_EXT(ffmpeg_trgt,"avi")
52                 TARGET_EXT(ffmpeg_trgt,"mpg")
53                 TARGET_EXT(ffmpeg_trgt,"rm")
54                 TARGET_EXT(ffmpeg_trgt,"asf")
55                 TARGET_EXT(ffmpeg_trgt,"swf")
56                 TARGET_EXT(ffmpeg_trgt,"yuv")
57                 TARGET_EXT(ffmpeg_trgt,"rgb")
58         END_TARGETS
59 //      BEGIN_IMPORTERS
60 //              IMPORTER_EXT(ffmpeg_mptr,"avi")
61 //              IMPORTER_EXT(ffmpeg_mptr,"mpg")
62 //              IMPORTER_EXT(ffmpeg_mptr,"mpeg")
63 //              IMPORTER_EXT(ffmpeg_mptr,"mov")
64 //              IMPORTER_EXT(ffmpeg_mptr,"rm")
65 //              IMPORTER_EXT(ffmpeg_mptr,"dv")
66 //      END_IMPORTERS
67 MODULE_INVENTORY_END