]> git.sesse.net Git - mlt/blob - mlt++/src/MltFactory.cpp
Merge ../mlt++
[mlt] / 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 #include "MltRepository.h"
28 using namespace Mlt;
29
30 Repository *Factory::init( const char *directory )
31 {
32         return new Repository( mlt_factory_init( directory ) );
33 }
34
35 Properties *Factory::event_object( )
36 {
37         return new Properties( mlt_factory_event_object( ) );
38 }
39
40 Producer *Factory::producer( Profile& profile, char *id, char *arg )
41 {
42         return new Producer( profile, id, arg );
43 }
44
45 Filter *Factory::filter( Profile& profile, char *id, char *arg )
46 {
47         return new Filter( profile, id, arg );
48 }
49
50 Transition *Factory::transition( Profile& profile, char *id, char *arg )
51 {
52         return new Transition( profile, id, arg );
53 }
54
55 Consumer *Factory::consumer( Profile& profile, char *id, char *arg )
56 {
57         return new Consumer( profile, id, arg );
58 }
59
60 #ifdef WIN32
61 char *Factory::getenv( const char *name )
62 {
63         return mlt_getenv( name );
64 }
65
66 int Factory::setenv( const char *name, const char *value )
67 {
68         return mlt_setenv( name, value );
69 }
70 #endif
71
72 void Factory::close( )
73 {
74         mlt_factory_close( );
75 }
76
77