]> git.sesse.net Git - mlt/blob - src/modules/kdenlive/factory.c
1d83b20f4abcfcea7700db134e49230640af113b
[mlt] / src / modules / kdenlive / factory.c
1 /*
2  * factory.c -- the factory method interfaces
3  * Copyright (C) 2007 Jean-Baptiste Mardelle
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <string.h>
21
22 #include "producer_framebuffer.h"
23 #include "filter_boxblur.h"
24 #include "filter_wave.h"
25
26 void *mlt_create_producer( char *id, void *arg )
27 {
28         if ( !strcmp( id, "framebuffer" ) )
29                 return producer_framebuffer_init( arg );
30         return NULL;
31 }
32
33 void *mlt_create_filter( char *id, void *arg )
34 {
35         if ( !strcmp( id, "boxblur" ) )
36                 return filter_boxblur_init( arg );
37         if ( !strcmp( id, "wave" ) )
38                 return filter_wave_init( arg );
39         return NULL;
40 }
41
42 void *mlt_create_transition( char *id, void *arg )
43 {
44         return NULL;
45 }
46
47 void *mlt_create_consumer( char *id, void *arg )
48 {
49         return NULL;
50 }