X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fsox%2Ffactory.c;fp=src%2Fmodules%2Fsox%2Ffactory.c;h=02793c9d91b12ab990eba784afb9fce2a104612d;hb=d229cc4caa1e8d06e66ca05aba414455279ae54f;hp=0000000000000000000000000000000000000000;hpb=a01e3ec7b3e81ac9fe66a594f9ad5e1fa94e2e30;p=melted diff --git a/src/modules/sox/factory.c b/src/modules/sox/factory.c new file mode 100644 index 0000000..02793c9 --- /dev/null +++ b/src/modules/sox/factory.c @@ -0,0 +1,45 @@ +/* + * factory.c -- the factory method interfaces + * Copyright (C) 2003-2004 Ushodaya Enterprises Limited + * Author: Charles Yates + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include + +#include "filter_sox.h" + +void *mlt_create_producer( char *id, void *arg ) +{ + return NULL; +} + +void *mlt_create_filter( char *id, void *arg ) +{ + if ( !strcmp( id, "sox" ) ) + return filter_sox_init( arg ); + return NULL; +} + +void *mlt_create_transition( char *id, void *arg ) +{ + return NULL; +} + +void *mlt_create_consumer( char *id, void *arg ) +{ + return NULL; +}