]> git.sesse.net Git - mlt/blobdiff - src/modules/xml/factory.c
Complete reorganization and renaming to usable state.
[mlt] / src / modules / xml / factory.c
index 87853f897613d015be442311a2e1afceb8a6425c..9de62282679526d0fff42f2c66d737152b63c1ed 100644 (file)
 #include <string.h>
 #include <framework/mlt.h>
 
-extern mlt_consumer consumer_westley_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
-extern mlt_producer producer_westley_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
+extern mlt_consumer consumer_xml_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
+extern mlt_producer producer_xml_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 
 MLT_REPOSITORY
 {
-       MLT_REGISTER( consumer_type, "westley", consumer_westley_init );
-       MLT_REGISTER( producer_type, "westley", producer_westley_init );
-       MLT_REGISTER( producer_type, "westley-xml", producer_westley_init );
+       MLT_REGISTER( consumer_type, "xml", consumer_xml_init );
+       MLT_REGISTER( producer_type, "xml", producer_xml_init );
+       MLT_REGISTER( producer_type, "xml-string", producer_xml_init );
 }