add MltProfile and update examples
[melted] / mlt++ / src / MltFactory.cpp
1 /**
2 * MltFactory.cpp - MLT Wrapper
3 * Copyright (C) 2004-2005 Charles Yates
4 * Copyright (C) 2008 Dan Dennedy <dan@dennedy.org>
5 * Author: Charles Yates <charles.yates@pandora.be>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22 #include "MltFactory.h"
23 #include "MltProducer.h"
24 #include "MltFilter.h"
25 #include "MltTransition.h"
26 #include "MltConsumer.h"
27 using namespace Mlt;
28
29 int Factory::init( char *arg )
30 {
31 return mlt_factory_init( arg );
32 }
33
34 Properties *Factory::event_object( )
35 {
36 return new Properties( mlt_factory_event_object( ) );
37 }
38
39 Producer *Factory::producer( Profile& profile, char *id, char *arg )
40 {
41 return new Producer( profile, id, arg );
42 }
43
44 Filter *Factory::filter( Profile& profile, char *id, char *arg )
45 {
46 return new Filter( profile, id, arg );
47 }
48
49 Transition *Factory::transition( Profile& profile, char *id, char *arg )
50 {
51 return new Transition( profile, id, arg );
52 }
53
54 Consumer *Factory::consumer( Profile& profile, char *id, char *arg )
55 {
56 return new Consumer( profile, id, arg );
57 }
58
59 #ifdef WIN32
60 char *Factory::getenv( const char *name )
61 {
62 return mlt_getenv( name );
63 }
64
65 int Factory::setenv( const char *name, const char *value )
66 {
67 return mlt_setenv( name, value );
68 }
69 #endif
70
71 void Factory::close( )
72 {
73 mlt_factory_close( );
74 }
75
76