Initial Stable Commit
[synfig.git] / synfig-core / trunk / src / modules / mod_ffmpeg / main.cpp
1 /*! ========================================================================
2 ** Sinfg
3 ** bleh
4 ** $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
5 **
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 **
8 ** This software and associated documentation
9 ** are CONFIDENTIAL and PROPRIETARY property of
10 ** the above-mentioned copyright holder.
11 **
12 ** You may not copy, print, publish, or in any
13 ** other way distribute this software without
14 ** a prior written agreement with
15 ** the copyright holder.
16 **
17 ** === N O T E S ===========================================================
18 **
19 ** ========================================================================= */
20
21 /* === H E A D E R S ======================================================= */
22
23 #define SINFG_MODULE
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 <sinfg/module.h>
33 #include "mptr_ffmpeg.h"
34 #include "trgt_ffmpeg.h"
35 #endif
36
37 /* === E N T R Y P O I N T ================================================= */
38
39 MODULE_DESC_BEGIN(mod_ffmpeg)
40         MODULE_NAME("FFMPEG Module")
41         MODULE_DESCRIPTION("Provides output targets for each format that FFMPEG supports")
42         MODULE_AUTHOR("Robert B. Quattlebaum Jr.")
43         MODULE_VERSION("1.0")
44         MODULE_COPYRIGHT(SINFG_COPYRIGHT)
45 MODULE_DESC_END
46
47 MODULE_INVENTORY_BEGIN(mod_ffmpeg)
48         BEGIN_TARGETS
49                 TARGET(ffmpeg_trgt)
50                 TARGET_EXT(ffmpeg_trgt,"avi")
51                 TARGET_EXT(ffmpeg_trgt,"mpg")
52                 TARGET_EXT(ffmpeg_trgt,"rm")
53                 TARGET_EXT(ffmpeg_trgt,"asf")
54                 TARGET_EXT(ffmpeg_trgt,"swf")
55                 TARGET_EXT(ffmpeg_trgt,"yuv")
56                 TARGET_EXT(ffmpeg_trgt,"rgb")
57         END_TARGETS
58 //      BEGIN_IMPORTERS
59 //              IMPORTER_EXT(ffmpeg_mptr,"avi")
60 //              IMPORTER_EXT(ffmpeg_mptr,"mpg")
61 //              IMPORTER_EXT(ffmpeg_mptr,"mpeg")
62 //              IMPORTER_EXT(ffmpeg_mptr,"mov")
63 //              IMPORTER_EXT(ffmpeg_mptr,"rm")
64 //              IMPORTER_EXT(ffmpeg_mptr,"dv")
65 //      END_IMPORTERS
66 MODULE_INVENTORY_END