]> git.sesse.net Git - mlt/blob - src/mlt++/MltFactory.cpp
Fix doc error for mlt_playlist_is_blank().
[mlt] / src / mlt++ / 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 library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library 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 GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, 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 void Factory::close( )
61 {
62         mlt_factory_close( );
63 }
64
65