1 /***************************************************************************
2     copyright            : (C) 2007 by mean
3     email                : fixounet@free.fr
4 
5       See lavformat/flv[dec/env].c for detail
6  ***************************************************************************/
7 
8 /***************************************************************************
9  *                                                                         *
10  *   This program is free software; you can redistribute it and/or modify  *
11  *   it under the terms of the GNU General Public License as published by  *
12  *   the Free Software Foundation; either version 2 of the License, or     *
13  *   (at your option) any later version.                                   *
14  *                                                                         *
15  ***************************************************************************/
16 
17 #include "ADM_default.h"
18 #include "ADM_muxerInternal.h"
19 #include "muxerWebm.h"
20 #include "webm_muxer_desc.cpp"
21 #include "fourcc.h"
22  bool WebmConfigure(void);
23 
24 ADM_MUXER_BEGIN( "webm",muxerWebm,
25                     1,0,0,
26                     "Webm",    // Internal name
27                     "Webm muxer plugin (c) Mean 2009",
28                     "Webm Muxer", // DIsplay name
29                     WebmConfigure,
30                     Webm_muxer_param, //template
31                     &WebmMuxerConfig, //config
32                     sizeof(Webm_muxer)
33                 );
34 
35