X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fgtk2%2Ffactory.c;h=38e1692cc49bc6f079234edabc4f0f47e8c7cada;hb=16c5c516008b9debec7765e34f4756f8063dee7e;hp=fc3a7fa95bfb45c399e6c118c655f41c00b9893c;hpb=661165812e3410fe2f6f49d7af882b36a0efcf82;p=melted diff --git a/src/modules/gtk2/factory.c b/src/modules/gtk2/factory.c index fc3a7fa..38e1692 100644 --- a/src/modules/gtk2/factory.c +++ b/src/modules/gtk2/factory.c @@ -21,11 +21,14 @@ #include #include "producer_pixbuf.h" +#include "producer_pango.h" void *mlt_create_producer( char *id, void *arg ) { if ( !strcmp( id, "pixbuf" ) ) return producer_pixbuf_init( arg ); + else if ( !strcmp( id, "pango" ) ) + return producer_pango_init( arg ); return NULL; }