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 "muxerMP4.h"
20 
21 #include "fourcc.h"
22 #include "mp4_muxer_desc.cpp"
23  bool mp4Configure(void);
24 
25 ADM_MUXER_BEGIN( "mp4",muxerMP4,
26                     1,0,0,
27                     "MP4",    // Internal name
28                     "MP4 muxer plugin (c) Mean 2009",
29                     "MP4 Muxer", // DIsplay name
30                     mp4Configure, // configure function
31                     mp4_muxer_param, // Template
32                     &muxerConfig,  // conf
33                     sizeof(mp4_muxer)
34                 );
35 
36