X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2Ffactory.c;h=9157ce18e5cb337466b0ee3dd79608fd2054027a;hb=22be595e8fbe06332714ee47e1fc1f4b6a718c45;hp=5590764549458842d20b0d72a11a61189097429f;hpb=16b6d374cf80004b192aae74a55b0452c7ee809d;p=melted diff --git a/src/modules/core/factory.c b/src/modules/core/factory.c index 5590764..9157ce1 100644 --- a/src/modules/core/factory.c +++ b/src/modules/core/factory.c @@ -38,6 +38,7 @@ extern mlt_filter filter_resize_init( mlt_profile profile, mlt_service_type type extern mlt_filter filter_transition_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); extern mlt_filter filter_watermark_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); extern mlt_producer producer_colour_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); +extern mlt_producer producer_consumer_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); extern mlt_producer producer_noise_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); extern mlt_producer producer_ppm_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ); #include "transition_composite.h" @@ -66,6 +67,7 @@ MLT_REPOSITORY MLT_REGISTER( filter_type, "watermark", filter_watermark_init ); MLT_REGISTER( producer_type, "color", producer_colour_init ); MLT_REGISTER( producer_type, "colour", producer_colour_init ); + MLT_REGISTER( producer_type, "consumer", producer_consumer_init ); MLT_REGISTER( producer_type, "noise", producer_noise_init ); MLT_REGISTER( producer_type, "ppm", producer_ppm_init ); MLT_REGISTER( transition_type, "composite", transition_composite_init );