X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmodules%2Fgtk2%2Ffactory.c;h=7016602b5deb9e81305e281b9ad8f77b88b419ea;hb=6f8293d53fc21742d9d43f94f0e590e1bfcb8ee0;hp=82ed3d4235e6866b8f996ff91a4bbe30ddecf667;hpb=8cf0f77981284b7549c811b67283eb73d0c520d6;p=mlt diff --git a/src/modules/gtk2/factory.c b/src/modules/gtk2/factory.c index 82ed3d42..7016602b 100644 --- a/src/modules/gtk2/factory.c +++ b/src/modules/gtk2/factory.c @@ -3,52 +3,91 @@ * 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 -#include -#include "producer_pixbuf.h" -#include "producer_pango.h" -#include "filter_rescale.h" +#include +#include -void *mlt_create_producer( char *id, void *arg ) +#ifdef USE_PIXBUF +extern mlt_producer producer_pixbuf_init( char *filename ); +extern mlt_filter filter_rescale_init( mlt_profile profile, char *arg ); +#endif + +#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 + +static void initialise( ) { - g_type_init( ); + static int init = 0; + if ( init == 0 ) + { + init = 1; + g_type_init( ); + } +} + +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 ); - else if ( !strcmp( id, "pango" ) ) +#endif + +#ifdef USE_PANGO + if ( !strcmp( id, "pango" ) ) return producer_pango_init( arg ); - return NULL; -} +#endif -void *mlt_create_filter( char *id, void *arg ) -{ - g_type_init( ); +#ifdef USE_PIXBUF if ( !strcmp( id, "gtkrescale" ) ) - return filter_rescale_init( arg ); + 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_transition( char *id, void *arg ) +static mlt_properties metadata( mlt_service_type type, const char *id, void *data ) { - return NULL; + char file[ PATH_MAX ]; + snprintf( file, PATH_MAX, "%s/gtk2/%s", mlt_environment( "MLT_DATA" ), (char*) data ); + return mlt_properties_parse_yaml( file ); } -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 ); + MLT_REGISTER_METADATA( consumer_type, "gtk2_preview", metadata, "consumer_gtk2_preview.yml" ); + MLT_REGISTER_METADATA( filter_type, "gtkrescale", metadata, "filter_rescale.yml" ); + MLT_REGISTER_METADATA( producer_type, "pango", metadata, "producer_pango.yml" ); + MLT_REGISTER_METADATA( producer_type, "pixbuf", metadata, "producer_pixbuf.yml" ); +}