X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fgtk2%2Ffactory.c;h=34d62e263b4c030bc93852cfe526c990006add50;hb=1971a6aa9301e7c841b7dda42eab6fff7d69763c;hp=fc3a7fa95bfb45c399e6c118c655f41c00b9893c;hpb=661165812e3410fe2f6f49d7af882b36a0efcf82;p=melted diff --git a/src/modules/gtk2/factory.c b/src/modules/gtk2/factory.c index fc3a7fa..34d62e2 100644 --- a/src/modules/gtk2/factory.c +++ b/src/modules/gtk2/factory.c @@ -3,44 +3,80 @@ * 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 library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. * - * This program is distributed in the hope that it will be useful, + * This library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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. + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "config.h" #include +#include +#include -#include "producer_pixbuf.h" +#ifdef USE_PIXBUF +extern mlt_producer producer_pixbuf_init( char *filename ); +extern mlt_filter filter_rescale_init( mlt_profile profile, char *arg ); +#endif -void *mlt_create_producer( char *id, void *arg ) -{ - if ( !strcmp( id, "pixbuf" ) ) - return producer_pixbuf_init( arg ); - return NULL; -} +#ifdef USE_GTK2 +extern mlt_consumer consumer_gtk2_preview_init( mlt_profile profile, void *widget ); +#endif + +#ifdef USE_PANGO +extern mlt_producer producer_pango_init( const char *filename ); +#endif -void *mlt_create_filter( char *id, void *arg ) +static void initialise( ) { - return NULL; + static int init = 0; + if ( init == 0 ) + { + init = 1; + g_type_init( ); + } } -void *mlt_create_transition( char *id, void *arg ) +void *create_service( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { + initialise( ); + +#ifdef USE_PIXBUF + if ( !strcmp( id, "pixbuf" ) ) + return producer_pixbuf_init( arg ); +#endif + +#ifdef USE_PANGO + if ( !strcmp( id, "pango" ) ) + return producer_pango_init( arg ); +#endif + +#ifdef USE_PIXBUF + if ( !strcmp( id, "gtkrescale" ) ) + return filter_rescale_init( profile, arg ); +#endif + +#ifdef USE_GTK2 + if ( !strcmp( id, "gtk2_preview" ) ) + return consumer_gtk2_preview_init( profile, arg ); +#endif + return NULL; } -void *mlt_create_consumer( char *id, void *arg ) +MLT_REPOSITORY { - return NULL; + MLT_REGISTER( consumer_type, "gtk2_preview", create_service ); + MLT_REGISTER( filter_type, "gtkrescale", create_service ); + MLT_REGISTER( producer_type, "pango", create_service ); + MLT_REGISTER( producer_type, "pixbuf", create_service ); } -