893c6d28d3caeb8db4120b9ba06ea5800d7fff41
[melted] / src / modules / oldfilm / 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 "filter_oldfilm.h"
23 #include "filter_grain.h"
24 #include "filter_dust.h"
25 #include "filter_lines.h"
26
27 void *mlt_create_producer( char *id, void *arg )
28 {
29 return NULL;
30 }
31
32 void *mlt_create_filter( char *id, void *arg )
33 {
34 if ( !strcmp( id, "oldfilm" ) )
35 return filter_oldfilm_init( arg );
36 if ( !strcmp( id, "dust" ) )
37 return filter_dust_init( arg );
38 if ( !strcmp( id, "lines" ) )
39 return filter_lines_init( arg );
40 if ( !strcmp( id, "grain" ) )
41 return filter_grain_init( arg );
42
43 return NULL;
44 }
45
46 void *mlt_create_transition( char *id, void *arg )
47 {
48 return NULL;
49 }
50
51 void *mlt_create_consumer( char *id, void *arg )
52 {
53 return NULL;
54 }