X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fsdl%2Ffactory.c;fp=src%2Fmodules%2Fsdl%2Ffactory.c;h=6ec79c003083a3d158cf165759b9882457c0b032;hb=d33f444d4ef4c7bc4074d07a49eca0ab7d108394;hp=1a081a25029e15746a7382991172d7431b84bd01;hpb=5dfa26cd3010e4e236acd82ad9ecfdd8238e707e;p=melted diff --git a/src/modules/sdl/factory.c b/src/modules/sdl/factory.c index 1a081a2..6ec79c0 100644 --- a/src/modules/sdl/factory.c +++ b/src/modules/sdl/factory.c @@ -19,40 +19,43 @@ */ #include +#include -#include "consumer_sdl.h" +extern mlt_consumer consumer_sdl_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); +extern mlt_consumer consumer_sdl_still_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); +extern mlt_consumer consumer_sdl_preview_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); #ifdef WITH_SDL_IMAGE -#include "producer_sdl_image.h" +extern mlt_producer producer_sdl_image_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); #endif -void *mlt_create_producer( char *id, void *arg ) +void *mlt_create_producer( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { #ifdef WITH_SDL_IMAGE if ( !strcmp( id, "sdl_image" ) ) - return producer_sdl_image_init( arg ); + return producer_sdl_image_init( profile, type, id, arg ); #endif return NULL; } -void *mlt_create_filter( char *id, void *arg ) +void *mlt_create_filter( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { return NULL; } -void *mlt_create_transition( char *id, void *arg ) +void *mlt_create_transition( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { return NULL; } -void *mlt_create_consumer( char *id, void *arg ) +void *mlt_create_consumer( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { if ( !strcmp( id, "sdl" ) ) - return consumer_sdl_init( arg ); + return consumer_sdl_init( profile, type, id, arg ); if ( !strcmp( id, "sdl_still" ) ) - return consumer_sdl_still_init( arg ); + return consumer_sdl_still_init( profile, type, id, arg ); if ( !strcmp( id, "sdl_preview" ) ) - return consumer_sdl_preview_init( arg ); + return consumer_sdl_preview_init( profile, type, id, arg ); return NULL; }