Commit 24463d00 authored by Antoine Cellerier's avatar Antoine Cellerier

Add a FIXME and fix a capability declaration.

parent 21574c3a
......@@ -45,13 +45,13 @@ vlc_module_begin();
/* crop/padd submodule */
add_submodule();
set_capability( "crop padd", 10 );
set_capability( "crop padd", 10 ); /* FIXME / Remove */
set_callbacks( OpenCropPadd, CloseFilter );
set_description( N_("FFmpeg crop padd filter") );
/* chroma conversion submodule */
add_submodule();
set_capability( "chroma", 50 );
set_capability( "video filter2", 50 );
set_callbacks( OpenChroma, CloseChroma );
set_description( N_("FFmpeg chroma conversion") );
vlc_module_end();
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment