]> git.sesse.net Git - mlt/blobdiff - src/modules/core/factory.c
Remove now unused FBOInput.
[mlt] / src / modules / core / factory.c
index 2396562591154c56c7431400a8a9f6ee39f210d1..7adb8fcc6385592035ae7afe0b166643aa787208 100644 (file)
@@ -32,6 +32,7 @@ extern mlt_filter filter_channelcopy_init( mlt_profile profile, mlt_service_type
 extern mlt_filter filter_crop_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_data_feed_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_data_show_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
+extern mlt_filter filter_fieldorder_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_gamma_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_greyscale_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_imageconvert_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
@@ -74,10 +75,11 @@ MLT_REPOSITORY
        MLT_REGISTER( filter_type, "audiowave", filter_audiowave_init );
        MLT_REGISTER( filter_type, "brightness", filter_brightness_init );
        MLT_REGISTER( filter_type, "channelcopy", filter_channelcopy_init );
-    MLT_REGISTER( filter_type, "channelswap", filter_channelcopy_init );
-    MLT_REGISTER( filter_type, "crop", filter_crop_init );
+       MLT_REGISTER( filter_type, "channelswap", filter_channelcopy_init );
+       MLT_REGISTER( filter_type, "crop", filter_crop_init );
        MLT_REGISTER( filter_type, "data_feed", filter_data_feed_init );
        MLT_REGISTER( filter_type, "data_show", filter_data_show_init );
+       MLT_REGISTER( filter_type, "fieldorder", filter_fieldorder_init );
        MLT_REGISTER( filter_type, "gamma", filter_gamma_init );
        MLT_REGISTER( filter_type, "greyscale", filter_greyscale_init );
        MLT_REGISTER( filter_type, "grayscale", filter_greyscale_init );
@@ -114,6 +116,7 @@ MLT_REPOSITORY
        MLT_REGISTER_METADATA( filter_type, "channelswap", metadata, "filter_channelcopy.yml" );
        MLT_REGISTER_METADATA( filter_type, "crop", metadata, "filter_crop.yml" );
        MLT_REGISTER_METADATA( filter_type, "data_show", metadata, "filter_data_show.yml" );
+       MLT_REGISTER_METADATA( filter_type, "fieldorder", metadata, "filter_fieldorder.yml" );
        MLT_REGISTER_METADATA( filter_type, "gamma", metadata, "filter_gamma.yml" );
        MLT_REGISTER_METADATA( filter_type, "greyscale", metadata, "filter_greyscale.yml" );
        MLT_REGISTER_METADATA( filter_type, "grayscale", metadata, "filter_greyscale.yml" );